Re: [twsocket] THttpCli bug -- reported earlier on another server, repeating behavior again

2009-05-11 Thread Arno Garrels
Fastream Technologies wrote: > In my case, I get data from first head being pending in second > head/GET. I know it is weird/rare case yet this customer was annoyed > and he led us to panic even more... >From memory, V7 got a fix/change related that wasn't backported to V6. Give me a breath I migh

Re: [twsocket] THttpServer under ICSv7 and BCB2007

2009-05-11 Thread Fastream Technologies
Hi, Thanks! but these avs are at random places each time different place! So it is from memory fragmentation. When I run in release config, works smoothly. Regards, SZ On 5/11/09, Matt Minnis wrote: > If you are getting AV's use something like EurekaLog to trap and report them > with a call st

Re: [twsocket] THttpCli bug -- reported earlier on another server, repeating behavior again

2009-05-11 Thread Fastream Technologies
In my case, I get data from first head being pending in second head/GET. I know it is weird/rare case yet this customer was annoyed and he led us to panic even more... On 5/11/09, Arno Garrels wrote: > Fastream Technologies wrote: > > Arno, > > > > Yesterday I sent you a wrong url! This new url i

Re: [twsocket] THttpServer under ICSv7 and BCB2007

2009-05-11 Thread Matt Minnis
If you are getting AV's use something like EurekaLog to trap and report them with a call stack. https://www.eurekalog.com/index.php I use this all the time, saves tons of time tracking these things down. Worth every penny/euro. Matt -Original Message- From: twsocket-boun...@elists.org [

Re: [twsocket] THttpCli bug -- reported earlier on another server, repeating behavior again

2009-05-11 Thread Arno Garrels
Fastream Technologies wrote: > Arno, > > Yesterday I sent you a wrong url! This new url is the direct IIS 5.1 > url which returns body in HEAD response and it confuses thttpcli. It does not, just tested with V7 Httptst demo. Multiple GET/HEAD requests w/o any problem! -- Arno Garrels -- To u

Re: [twsocket] THttpServer under ICSv7 and BCB2007

2009-05-11 Thread Fastream Technologies
Hi, On 5/11/09, Arno Garrels wrote: > Fastream Technologies wrote: > > The problem is I must run my C++ project with release config as > > otherwise it gives av due to memory fragmentation (HEAVY duty!). > > If you want to debug, debug information have to be included, that's > true. But those AVs

Re: [twsocket] THttpCli bug -- reported earlier on another server, repeating behavior again

2009-05-11 Thread Fastream Technologies
Arno, Yesterday I sent you a wrong url! This new url is the direct IIS 5.1 url which returns body in HEAD response and it confuses thttpcli. Regards, SZ On 5/11/09, Arno Garrels wrote: > > Fastream Technologies wrote: > > Here is the problem routine: > > Sorry I do not see a problem, since it

Re: [twsocket] THttpServer under ICSv7 and BCB2007

2009-05-11 Thread Arno Garrels
Fastream Technologies wrote: > The problem is I must run my C++ project with release config as > otherwise it gives av due to memory fragmentation (HEAVY duty!). If you want to debug, debug information have to be included, that's true. But those AVs are IMO a hint that something went rather wrong

Re: [twsocket] THttpCli bug -- reported earlier on another server, repeating behavior again

2009-05-11 Thread Arno Garrels
Fastream Technologies wrote: > Here is the problem routine: Sorry I do not see a problem, since it is the server (or proxy) not responding. That's what my packet log showed yesterday. -- Arno Garrels -- To unsubscribe or change your settings for TWSocket mailing list please goto http://lists

Re: [twsocket] THttpCli bug -- reported earlier on another server, repeating behavior again

2009-05-11 Thread Fastream Technologies
Hello, Ok the server is indeed IIS 5.1 and the direct url is: http://69.28.242.152:7979/otherroots/www.suckersluck.com/scripts which returns body with the HEAD command. ICS client handles this in a somewhat bad way--it seem to work with GUI but when you programmatically send GET after HEAD, it g

Re: [twsocket] THttpServer under ICSv7 and BCB2007

2009-05-11 Thread Fastream Technologies
The problem is I must run my C++ project with release config as otherwise it gives av due to memory fragmentation (HEAVY duty!). Regards, SZ On 5/11/09, Arno Garrels wrote: > > Fastream Technologies wrote: > > Also FYI: I have defined in both gui app and package > > > NOFORMS;USE_SSL;NO_ADVANC

Re: [twsocket] THttpServer under ICSv7 and BCB2007

2009-05-11 Thread Arno Garrels
Fastream Technologies wrote: > Also FYI: I have defined in both gui app and package > NOFORMS;USE_SSL;NO_ADVANCED_USE_OF_HTTP_CLIENT;SECURITY_WIN32;NO_DEBUG_LOG > . > > The Delphi guys may say why don't you step into the code and debug but > BCB2007 does not let me step into Delphi code in C++ pr

[twsocket] VMS "bidirectional" RAW protocol ans TWSocketServer

2009-05-11 Thread Stratus
Hi all I'm using TWSocketServer to listen to the 9100 port and retrieve some RAW printings from various mainframes. It works flawlessly , sometimes a little slow, but still ok. I've tried to connect to a VMS, using their proprietary program called DCPS. It states that the server must be bidirec

Re: [twsocket] THttpServer under ICSv7 and BCB2007

2009-05-11 Thread Arno Garrels
Fastream Technologies wrote: > Hello, > > I fixed this by removing the v6 libs from project file using Notepad. So not a bug in ICS. Please note that the THttpServer got an internal timer which iterates thru the list of clients every 5 seconds to detect timeouts. This may be important to know i

Re: [twsocket] THttpServer under ICSv7 and BCB2007

2009-05-11 Thread Fastream Technologies
Hello, I fixed this by removing the v6 libs from project file using Notepad. Regards, SZ On 5/11/09, Fastream Technologies wrote: > > Also FYI: I have defined in both gui app and package > NOFORMS;USE_SSL;NO_ADVANCED_USE_OF_HTTP_CLIENT;SECURITY_WIN32;NO_DEBUG_LOG . > > The Delphi guys may sa

Re: [twsocket] THttpServer under ICSv7 and BCB2007

2009-05-11 Thread Fastream Technologies
Also FYI: I have defined in both gui app and package NOFORMS;USE_SSL;NO_ADVANCED_USE_OF_HTTP_CLIENT;SECURITY_WIN32;NO_DEBUG_LOG . The Delphi guys may say why don't you step into the code and debug but BCB2007 does not let me step into Delphi code in C++ projects. Regards, Gorkem Ates On 5/11/0

[twsocket] THttpServer under ICSv7 and BCB2007

2009-05-11 Thread Fastream Technologies
Hello, I have an upgraded code from v6. The below line: adminHTTPServer = new THttpServer(NULL); causes AV (write of address 0014). Any idea what might have I done wrong? This is a GUI app but for debugging the service so do not want to use Forms::Application. Best Regards, SZ -- To unsubs

Re: [twsocket] vFAQ - SMTPCli - Component not ready

2009-05-11 Thread Arno Garrels
Ole Braad-Sørensen wrote: > When using above code I get the famous error "Component not ready" > and the mail-server log show: You do not check for ErrCode = 0 in OnRequestDone. Put a break point before or at the switch statement and single-step thru the code. That will show you what's wrong. --

Re: [twsocket] BCB2006 package of ICSv7 snapshot missing some files

2009-05-11 Thread Mohit Sindhwani
Thanks Arno! Arno Garrels wrote: > Thanks, > > C++ Builder V6 Packages updated and warning removed, > in both SVN repository as well as nightly built ZIP. > > -- > Arno Garrels > -- To unsubscribe or change your settings for TWSocket mailing list please goto http://lists.elists.org/cgi-bin/ma

Re: [twsocket] BCB2006 package of ICSv7 snapshot missing some files

2009-05-11 Thread Arno Garrels
Thanks, C++ Builder V6 Packages updated and warning removed, in both SVN repository as well as nightly built ZIP. -- Arno Garrels Mohit Sindhwani wrote: > Just to add to this, the CRC unit is there in the distribution, just > not included in the project. Adding it to the project builds just