[twsocket] Need help on remote debugging of ICS-based server

2007-04-06 Thread Fastream Technologies
Hello, I have a customer in Russia with a dedicated/fast internet connection. Their web site gets 400 concurrent users at any time. Now, he constantly complains about a crash situation which madexcept cannot capture. As you can guess, I am unable to reproduce the problem here. My plan is to

Re: [twsocket] Need help on remote debugging of ICS-based server

2007-04-06 Thread Francois Piette
Remote debugging is what you need. But I think it is gone out of BDS2006 (Not sure). It is back in Delphi 2007. But since most of your code is C++, you'll have to wait until Cogswell is out (Before the summer as far as I know). Without remote debugger, I don't know how you can avoir copying the

Re: [twsocket] Need help on remote debugging of ICS-based server

2007-04-06 Thread Fastream Technologies
Hello, At this page: http://shop.borland.com/dr/v2/ec_Main.Entry17c?SID=39696SP=10023CID=0PID=772683PN=1V1=772683CUR=840DSP=PGRP=0ABCODE=CACHE_ID=0 Enterprise Edition For the professional C or C++ developer who demands reliable, high-performance applications, this is the IDE you've been

Re: [twsocket] Threading question

2007-04-06 Thread DZ-Jay
On Apr 5, 2007, at 10:23, Éric Fleming Bonilha wrote: Another thing, now FSocket is being destroyed on my class destructor, should I destroy it on the end of the execute method, after leaving the message loop? You should destroy FSocket at the end of the Execute method. dZ. --

Re: [twsocket] httpcli v6 bad request

2007-04-06 Thread DZ-Jay
On Apr 5, 2007, at 13:38, Frans van Daalen wrote: The first postasync generate 302 from the server. As follow is set the httpcli will also do a get for the relocation. What do you mean that it will do a Get for the relocation? A 302 relocation response just means that you have to request

Re: [twsocket] Need help on remote debugging of ICS-based server

2007-04-06 Thread Francois Piette
OK, looks like Remote Debugging is in BDS2006. Sorry. Usually it is installed from the CD. The main install splash screen has an item for it. There is a readme somewhere explaining how to install and configure. I used remote debugging long time ago. It works nice (speed depends on the network

Re: [twsocket] Listen exception

2007-04-06 Thread Engi
I talked too quickly. I still have errors 10022 from time to time. Here is my code: It is correct ? void __fastcall TThreadWORK::Execute() { try { WSocketServerWORK = new TWSocketServer(NULL); WSocketServerWORK-Proto = tcp;

[twsocket] Port vs LocalPort

2007-04-06 Thread Engi
Hi, What is different between Port and LocalPort property ? Same for Addr and LocalAddr ? TIA, Engi -- 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] Port vs LocalPort

2007-04-06 Thread Francois PIETTE
What is different between Port and LocalPort property ? A socket has two ends: a local end and a remote end. When you connect to a server, you specify the remote port and the OS select the local port for you (You can also force a given local port). Same for Addr and LocalAddr ? Same for