Re: [twsocket] ICSv6 Thread Attach/Detach problem

2006-06-09 Thread Arno Garrels
Below a simple test program, if you don't have ICS-SSL exchange TSslHttpCli by THttpCli. Does it work for you? unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, OverbyteIcsWndControl, OverbyteIcsHttpProt, StdCtrls; type TMyThrea

Re: [twsocket] ICSv6 Thread Attach/Detach problem

2006-06-09 Thread Fastream Technologies
Does it work there? Doesn't it give the exception? Regards, SZ - Original Message - From: "Arno Garrels" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Friday, June 09, 2006 11:03 AM Subject: Re: [twsocket] ICSv6 Thread Attach/Detach problem > Below a simple test program, if you

Re: [twsocket] ICSv6 Thread Attach/Detach problem

2006-06-09 Thread Arno Garrels
Fastream Technologies wrote: > Does it work there? Doesn't it give the exception? It works! But does it work for you?? > > Regards, > > SZ > > - Original Message - > From: "Arno Garrels" <[EMAIL PROTECTED]> > To: "ICS support mailing" > Sent: Friday, June 09, 2006 11:03 AM > Subject:

Re: [twsocket] 64-Bit Processors Issue

2006-06-09 Thread Arno Garrels
Marcelo Grossi wrote: > Hello again, > > I'm new to this list and since I've been getting your messages, I > was wondering if anyone got the message I sent about the problem I'm > having with the 64-Bit AMD processors. I really really need your help > on this, because I've never altered the so

Re: [twsocket] ICSv6 Thread Attach/Detach problem

2006-06-09 Thread Fastream Technologies
It worked here as well. But I have another guess: my case is a bit different than what you demoed. In my case the client is connected to a server while its thread is being changed. So, procedure TCustomWSocket.ThreadDetach; begin if (GetCurrentThreadID = DWORD(FThreadID)) and (FHSocket <> I

Re: [twsocket] ICSv6 Thread Attach/Detach problem

2006-06-09 Thread Fastream Technologies
Please realize the async nature of the SELECT. Is there any way we change this to SYNC because it ruins synchronization. Regards, SubZero - Original Message - From: "Fastream Technologies" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Friday, June 09, 2006 2:41 PM Subject: Re: [

[twsocket] TFtpSrv on TService Compilation Error

2006-06-09 Thread Macma
I'm using BCB5 Pro and ICS V5 for Delphi/C++Builder Beta (May 14, 2006) and I can't compile TService application with TFtpSrv. On normal application when I put TFtpSrv on TForm everything is OK but o TService I've got compilation error from WSocket.hpp: Declaration terminated incorrectly. static

Re: [twsocket] TFtpSrv on TService Compilation Error

2006-06-09 Thread Fastream Technologies
Hello, This is a bug of v5. You need to delete the lines from the hpp manually. Or better, use v6 which uses one window per thread instead of one window per socket as in the case of v5. Regards, SZ - Original Message - From: "Macma" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent

[twsocket] TFtpSrv on TService Compilation Error

2006-06-09 Thread Macma
I'm using BCB5 Pro and ICS V5 for Delphi/C++Builder Beta (May 14, 2006) and I can't compile TService application with TFtpSrv. On normal application when I put TFtpSrv on TForm everything is OK but o TService I've got compilation error from WSocket.hpp: Declaration terminated incorrectly. static

Re: [twsocket] ICSv6 Thread Attach/Detach problem

2006-06-09 Thread Arno Garrels
Fastream Technologies wrote: > Please realize the async nature of the SELECT. Is there any way we > change this to SYNC because it ruins synchronization. AFAIK winsock API function WSAAsyncSelect() is a common, blocking function. In this case it's called to disable winsock notifications. Because t

Re: [twsocket] TFtpSrv on TService Compilation Error

2006-06-09 Thread Macma
Fastream Technologies napisaƂ(a): > Hello, > > This is a bug of v5. You need to delete the lines from the hpp manually. Or > better, use v6 which uses one window per thread instead of one window per > socket as in the case of v5. > > Regards, > > SZ > Is it possible to use v6 with BCB5 Pro ??

Re: [twsocket] TFtpSrv on TService Compilation Error

2006-06-09 Thread Arno Garrels
Macma wrote: > I'm using BCB5 Pro and ICS V5 for Delphi/C++Builder Beta (May 14, > 2006) and I can't compile TService application with TFtpSrv. On normal > application when I put TFtpSrv on TForm everything is OK but o > TService I've got compilation error from WSocket.hpp: > > Declaration termin

Re: [twsocket] httpcli downloading zip files

2006-06-09 Thread Francois Piette
The HTTP client component doesn't make any difference whatever the document type is. It is exactly the same processing for a HTML document or a ZIP file. It is likely that the server react differently when you get a simple HTML file and get a ZIP file. Maybe it is a server side script which delive

Re: [twsocket] ICSv6 Thread Attach/Detach problem

2006-06-09 Thread Fastream Technologies
Hello, When I go with debugger, it gives no exception. So IMO, this is a synchronization problem. - Original Message - From: "Arno Garrels" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Friday, June 09, 2006 3:56 PM Subject: Re: [twsocket] ICSv6 Thread Attach/Detach problem : F

Re: [twsocket] httpcli downloading zip files

2006-06-09 Thread Marc A. Hale
i found a problwm with the link and fixed that but now i get error code 400 everytime. if i take the same link http://www.superletter.com/updates/test download.zip and put it in the borwser it works fine. but run it through the ICS httpcli it get error code 400, if i run through my proxy i get

[twsocket] httpcli downloading zip files

2006-06-09 Thread Marc A. Hale
found the problem with it if in the filename there is a space it dies with in ICS. i change it to Encode the URL for the Docname only and it works fine. this would be nice if it was built in to encode the docname information automaticaly" - Original Message - From: "Francois Piette"

Re: [twsocket] httpcli downloading zip files

2006-06-09 Thread Francois PIETTE
I tryed your link with HttpTst program and it works. Here is the display in HttpTst: Upper window: --- cute here --- Not using proxy cmd> GET /updates/test%20download.zip HTTP/1.1 cmd> Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, */* cmd> Connection: Keep-Alive cmd> Accept-Language

Re: [twsocket] 64-Bit Processors Issue

2006-06-09 Thread Marcelo Grossi
Hello again folks, I managed to "fix" the bug I told you guys about. Aparently it is endeed an ICS related problem or AMD's fault, can't be concise on that. Here's an overview of the problem with the solution in sample codes: Problem: The server did not received the packet from the clie