Re: [twsocket] THttpCli exception errors

2008-03-28 Thread retnyg
i am also suffering from those exceptions, especially in pop3prot and smtpprot. i wrapped several try except blocks around every possible call but it still crashes (the except block gets never called). could you provide an example code how such errors could be handled ? regards, retnyg >&g

Re: [twsocket] Newbie Question: How to use the HTTPCli component toconnect to USPS

2008-02-18 Thread retnyg
S> URLDownloadToFile must be something found in a greater version than Delphi S> 5.1 uses UrlMon; or define to use the function from urlmon.dll yourself: HRESULT URLDownloadToFile( LPUNKNOWN pCaller, LPCTSTR szURL, LPCTSTR szFileName, DWORD dwReserved, LPBINDSTATUSCALLBAC

Re: [twsocket] Newbie Question: How to use the HTTPCli component to connect to USPS

2008-02-18 Thread retnyg
Guten Tag SoftTech, am Montag, 18. Februar 2008 um 15:55 schrieben Sie: S> Return-Path: <[EMAIL PROTECTED]> S> X-Flags: 1001 S> Delivered-To: GMX delivery to [EMAIL PROTECTED] S> Received: (qmail invoked by alias); 18 Feb 2008 14:56:02 - S> Received: from enterprise.codeboffins.com (EHLO S> e

Re: [twsocket] pop3 component not ready - Bug in TPop3Cli

2008-01-17 Thread retnyg
AG> It helps alot to post a short message when you either think AG> the problem is resolved or not. Thanks. it didnt fix the issue, got a pop3 not ready exception today. AG> -- AG> Arno Garrels [TeamICS] AG> http://www.overbyte.be/eng/overbyte/teamics.html >> >> i also hope that the bug ge

Re: [twsocket] smtp component not connected/ready

2008-01-07 Thread retnyg
assigned(FOnMailSent) then FOnMailSent(FMailId); // end; end; end; end; still i get the error "smtp component not connected", even if i check explicitly for it. any ideas ? tia, retnyg AG> [EMAIL PROTECTED] wrote: >> hi there, >> >> is there also such a k

Re: [twsocket] aspx page ICS Auto Fill, Post, and Read Answer

2008-01-04 Thread retnyg
is there a specific reason you want to use ics for that ? imho its much simpler to do stuff like this with selenium. you can remote control your browser via a perl script, ie.: my $sel = Test::WWW::Selenium->new( host => "localhost", port => ,

Re: [twsocket] ICS hidden window cannot be created error #8--what isthis?

2008-01-02 Thread retnyg
there may be also another problem: afaik windows xp 32bit has only 64K handle numbers for windows available. this problem also occurs if you have a lot of apps open, ie. 2 browsers with a lot of tabs, and the "the bat" email client which uses a lot of handles, also some instances of winrar and expl

Re: [twsocket] Strange e-mail problems Server 2003

2008-01-02 Thread retnyg
did you try telnetting manually to the smtp server, or use another client ? maybe some antivirus stuff involved ? AG> Dod wrote: >> Hello Arno, >> >> I see in the log that there is 5 seconds delay between DATA and the >> 10054 error. This may be interesting. AG> No, the delay is 2 minutes and 5

[twsocket] smtp component not connected/ready

2007-12-21 Thread retnyg
thNone then Helo else Ehlo; end; tia, retnyg -- To unsubscribe or change your settings for TWSocket mailing list please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket Visit our website at http://www.overbyte.be

Re: [twsocket] pop3 component not ready - Bug in TPop3Cli

2007-12-12 Thread retnyg
thanks arno and dz-jay, i hope that'll fix it. i also hope that the bug gets eliminated in the next release by FPIETTE. i don't really like using custom-patched components. -- To unsubscribe or change your settings for TWSocket mailing list please goto http://lists.elists.org/cgi-bin/mailman/lis

Re: [twsocket] pop3 component not ready

2007-12-12 Thread retnyg
procedure TMailAlert.CheckNewMail; begin with FPop do if not Connected then begin Fbusy := true; ClearErrorMessage; Connect; end; end; as you see, the pop component is not connected when i do the connect cmd. that's the strange thing, the connection is closed but the com

Re: [twsocket] pop3 component not ready

2007-12-12 Thread retnyg
whats the proper command to close the connection gracefully ? AG> [EMAIL PROTECTED] wrote: >> procedure TMailAlert.Pop3ClientRequestDone; >> begin >> if (FPop.connected) and (CheckError) then begin >> FPop.quit; >> exit; >> end; >> >> ... >> >> what could be the cause that the compon

[twsocket] pop3 component not ready

2007-12-11 Thread retnyg
not ready after the error ? TIA, retnyg ps. pop3prot.pas Version: 2.27 -- To unsubscribe or change your settings for TWSocket mailing list please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket Visit our website at http://www.overbyte.be

Re: [twsocket] [request] smtpprot: make X-Mailer a property

2007-02-04 Thread retnyg
and not part of ICS. That's FP> what OOP is all about. i see. though deriving a custom class becomes difficult if stuff is hardcoded in the base component. could you imagine a component like IdHttp with a hardcoded useragent ? best regards, retnyg -- To unsubscribe or change your set

Re: [twsocket] [request] smtpprot: make X-Mailer a property

2007-02-04 Thread retnyg
ine of course. rgn> best regards, retnyg AG>> [EMAIL PROTECTED] wrote: >>> pls make it a property, so we dont have to mess around in ICS source >>> on every new release. AG>> There's an event OnHeaderLine. No need to add a new property. AG>> procedure

Re: [twsocket] [request] smtpprot: make X-Mailer a property

2007-02-04 Thread retnyg
good to know but thats not the clean way. and needs some additional cpu cycles on every headerline of course. best regards, retnyg AG> [EMAIL PROTECTED] wrote: >> pls make it a property, so we dont have to mess around in ICS source >> on every new release. AG> There's an

[twsocket] [request] smtpprot: make X-Mailer a property

2007-02-04 Thread retnyg
pls make it a property, so we dont have to mess around in ICS source on every new release. best regards, retnyg -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org/mailman/listinfo/twsocket Visit our website at http://www.overbyte.be

Re: [twsocket] httpServer auth problem

2007-01-31 Thread retnyg
found it, required this line in the OnGet event if Flags = hg401 then Exit; rgn> hi, i am trying to write a wrapper class for httpserv. rgn> unfortunately i have problems implementing the digest auth. rgn> function THttpConnection.AuthDigestGetParams always returns false here: rgn> t

[twsocket] httpServer auth problem

2007-01-31 Thread retnyg
hi, i am trying to write a wrapper class for httpserv. unfortunately i have problems implementing the digest auth. function THttpConnection.AuthDigestGetParams always returns false here: t1 := EncodeTime(1, 0, 0, 0); t2 := Now; try LastTime := RFC822ToDateTime(Trim(Base64Decod

Re: [twsocket] Exception on compiling "SocketSpy" with newest ICS v5/6

2006-10-28 Thread retnyg
Thanks Wilfried, it seemed to be a problem of my local delphi installation. tested on a VM, it worked well. btw, do you know why this executable is so tiny, without using plain winapi or kol? Regards, retnyg WM> Hello retnyg, WM> Here it is. WM> --- WM> Rgds, Wilfried [TeamI

Re: [twsocket] Exception on compiling "SocketSpy" with newest ICS v5/6

2006-10-27 Thread retnyg
Hello Wilfried, i used the most recent version 5 and 6 from the website. Is it possible that you do a right-click on the main form, select "Text-DFM" then save it and attach the whole project to a mail ? maybe i did something wrong in the BannerTo(o)Busy-Case. TIA, retnyg WM> Hell

Re: [twsocket] Exception on compiling "SocketSpy" with newest ICS v5/6

2006-10-26 Thread retnyg
Hello Wilfried, thank you, i need the source to be working because i need a tunneling app with easy to change target ip adress. btw, inside the app source code is no reference to WSocketServer.LastError, It seems to happen inside the core Socket code. WM> Hello retnyg, WM> Maybe SocketSp

[twsocket] Exception on compiling "SocketSpy" with newest ICS v5/6

2006-10-25 Thread retnyg
rden1. that means that WSocketServer.LastError is a read-only property. this seems to be a bug in the ICS Source code. do you know how i can get that program to run ? thanks in advance, Retnyg -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elist