Re: [twsocket] Pop-up downloads

2005-09-22 Thread Francois Piette
You have to analyse the pages you receive to see axactly which request(s) to send. You may also use a sniffer to capture a complete browser session and see exactly which requets are sent, which relocation occurs, which cookies are exchanged. Can you suggest such a sniffer? There are

Re: [twsocket] Connecting and sending in a thread

2005-09-22 Thread Jacco Bezemer
Helo Francois and Wilfried, Thanks for your tips. I managed to get it working in a single thread. I think I need to do this in a thread because the send operation takes a long time. This due to the fact that retrieving the data, formatting it into XML and sending it eventually is in a loop and

Re: [twsocket] HttpCli StatusCode = 0 causes problems

2005-09-22 Thread Albert Wiersch
Hello, I am having a problem using THttpCli and redirected links. It appears similar to this issue I am replying to, probably the same issue. It seems OnRequestDone is being called twice when I try to get a link that is redirected. Has this been addressed/fixed? Thank you! -- Albert Wiersch AI

Re: [twsocket] HttpCli StatusCode = 0 causes problems

2005-09-22 Thread Francois Piette
The best is that you try the latest version, both the latest released version and the beta version Maurizio has done (both available from ICS page at my website). -- [EMAIL PROTECTED] Author of ICS (Internet Component Suite, freeware) Author of MidWare (Multi-tier framework, freeware)

Re: [twsocket] Connecting and sending in a thread

2005-09-22 Thread Francois Piette
I think I need to do this in a thread because the send operation takes a long time. Sending is fully asynchronous, no need for thread there. This due to the fact that retrieving the data, formatting it into XML and sending it eventually is in a loop and is not event driven. Retrieving

Re: [twsocket] Using WSocket to get ip of domain

2005-09-22 Thread Nick
Arno, I know waiting in a loop is not the best way, but how else can I do it? I have a list of 4 domains that I want to get the ip address for.. -- Message: 3 Date: Wed, 21 Sep 2005 15:56:42 +0200 From: Arno Garrels [EMAIL PROTECTED] Subject: Re: [twsocket]

[twsocket] gphttpproxy trouble

2005-09-22 Thread Sebastien MAHIEUX
Hello, I have downloaded few days ago, the gphttpproxy 2.0 with the demo included. The program works with Internet Explorer 6.0. However, when i launch a search in google and right click on a find result, I have a HTTP 404 Not Found. If I try a left click on the same result, there is no problem.

Re: [twsocket] Connecting and sending in a thread

2005-09-22 Thread Dan
- Original Message - From: Jacco Bezemer [EMAIL PROTECTED] To: ICS support mailing twsocket@elists.org Sent: Thursday, September 22, 2005 10:30 AM Subject: Re: [twsocket] Connecting and sending in a thread Helo Francois and Wilfried, Thanks for your tips. I managed to get it working

Re: [twsocket] Pop-up downloads

2005-09-22 Thread Dan
- Original Message - From: Tom Bolick [EMAIL PROTECTED] To: ICS support mailing twsocket@elists.org Sent: Wednesday, September 21, 2005 10:00 PM Subject: Re: [twsocket] Pop-up downloads Can you suggest such a sniffer? I recommend Analyzer, I think theres a link to it from the

Re: [twsocket] HttpCli StatusCode = 0 causes problems

2005-09-22 Thread Maurizio Lotauro
On 22-Sep-05 14:12:39 Francois Piette wrote: The best is that you try the latest version, both the latest released version and the beta version Maurizio has done (both available from ICS page at my website). I doubt that the beta solve this problem because the changes are in a different part of

Re: [twsocket] Using WSocket to get ip of domain

2005-09-22 Thread Arno Garrels
Nick wrote: Arno, I know waiting in a loop is not the best way, but how else can I do it? I have a list of 4 domains that I want to get the ip address for.. procedure TForm1.Button1Click(Sender: TObject); begin MyHostList.Add('mail.gmx.de'); MyHostList.Add('pop.gmx.de');