[twsocket] THttpCli - what a'?

2006-03-05 Thread Ja
Hi. I've noticed something weird in THttpCli... When I call abort, it runs OnRequestDone procedure, but... errcode = 0 and statuscode = 200! Why is that? Shouldn't it report somehow that it was aborted? Ann -- To unsubscribe or change your settings for TWSocket mailing list please goto

Re: [twsocket] THttpCli - what a'?

2006-03-05 Thread Francois PIETTE
I've noticed something weird in THttpCli... When I call abort, it runs OnRequestDone procedure, but... errcode = 0 and statuscode = 200! Why is that? Shouldn't it report somehow that it was aborted? When you abort, you know you are doing it :-) Abort is just an abort: the shortest way out.

Re: [twsocket] TWSocketServer halts when freed

2006-03-05 Thread Wilfried Mestdagh
Hello Jack, I wonder if you can think of anything that I can hack around just to see if it'll fix the problem? I should try some workarounds following to see: - First try to destroy the component same way in a temporary button click. If that's work then I assume it has something to do with

[twsocket] ICS V5 Beta. Now include HTTP server authentication

2006-03-05 Thread Francois PIETTE
I uploaded a new ICS V5 beta. It include authentication support built into the HTTP server component. The new version include code written by Fastream for Digest authentication. I fixed and expanded Fastream code. Also added code for basic authentication. The new code is compiled in using a

Re: [twsocket] ICS V5 Beta. Now include HTTP server authentication

2006-03-05 Thread Fastream Technologies
Hello, I cannot see the web page updated for the download. I think you should update the date of the download link. Regards, SZ - Original Message - From: Francois PIETTE [EMAIL PROTECTED] To: twsocket@elists.org Sent: Sunday, March 05, 2006 5:56 PM Subject: [twsocket] ICS V5 Beta.

Re: [twsocket] ICS V5 Beta. Now include HTTP server authentication

2006-03-05 Thread Francois PIETTE
I cannot see the web page updated for the download. I think you should update the date of the download link. You probably have a proxy in the way because the website is updated ! -- [EMAIL PROTECTED] http://www.overbyte.be -- To unsubscribe or change your settings for TWSocket mailing list

Re: [twsocket] ICS V5 Beta. Now include HTTP server authentication

2006-03-05 Thread Fastream Technologies
ok, downloaded and installed. I now see the same error I saw in v6!: static const Shortint IOC_UNIX = 0x0; static const int IOC_WS2 = 0x800; static const int IOC_PROTOCOL = 0x1000; static const int IOC_VENDOR = 0x1800; Decleration terminated unexpectantly!!! I see this problem not in

[twsocket] HttpCli.Abort

2006-03-05 Thread Paul
Can you call HttpCli.Abort and immediately start a new request wihout problems ? Paul -- 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] ICS V5 Beta. Now include HTTP server authentication

2006-03-05 Thread Francois PIETTE
ok, downloaded and installed. What was the problem ? I now see the same error I saw in v6!: static const Shortint IOC_UNIX = 0x0; static const int IOC_WS2 = 0x800; static const int IOC_PROTOCOL = 0x1000; static const int IOC_VENDOR = 0x1800; Decleration terminated

Re: [twsocket] HttpCli.Abort

2006-03-05 Thread Wilfried Mestdagh
Hello Paul, No you start new request in OnRequestDone checkin the HttpState must be Ready. --- Rgds, Wilfried [TeamICS] http://www.overbyte.be/eng/overbyte/teamics.html http://www.mestdagh.biz Sunday, March 5, 2006, 18:31, Paul wrote: Can you call HttpCli.Abort and immediately start a new

Re: [twsocket] ICS V5 Beta. Now include HTTP server authentication

2006-03-05 Thread Fastream Technologies
Hello, The problem persists after the following steps: - Moved Program files\ICS to backup, - Created program files\ICS - Downloaded and unzipped to there from Mar 05 ICS beta link successfully - Compiled and installed ICSBCB60.bpk successfully. - Opened a existing project with FTP/HTTP server

Re: [twsocket] HttpCli.Abort

2006-03-05 Thread Francois PIETTE
Can you call HttpCli.Abort and immediately start a new request wihout problems ? It is better to be out of any of the component event to abort. If you need to abort from a condition detected in an event, use PostMessage to defer the abort until out of the event. You can start a new request

[twsocket] Mail header

2006-03-05 Thread WP
Hello What I have to add to mail header, to add definition of language charset? I want to add that email (html formatted) is using CharSet- iso-8859-2 In component I have charset property as: iso-8859-2. But I need to add this line to header, in HtmlSmtpClientProcessHeader procedure. I need