[twsocket] How can I use ISA proxy?

2007-09-12 Thread Bruce Zhao
I use the HttpCli to get web page, but my intranet use ths ISA proxy,
it use the NTLM authentication, What shall I do?

Thank you!

Bruce Zhao
2007.09.12
-- 
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


[twsocket] Can ICS support IOCP?

2008-08-27 Thread Bruce Zhao
Hi, all:

  I want create a Socket Server,need IOCP,but the ICS look like don't
support ICOP, it's true?

-- 

Bruce Zhao
-- 
To unsubscribe or change your settings for TWSocket mailing list
please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


[twsocket] About ncFTPd server.

2009-06-16 Thread Bruce Zhao
Hello everyone:

I write a FTP upload application by use TFtpClient, I tested some FTP
Servers, it works well, but when I upload file to NcFTPd Server in binary
mode, my files been changed, I checked file in HEX, to discover $0D and
$0D$0A changed to $0A, I used OverbyteIcsFtpTst.exe to test the NcFTPd
Server, my file been changed too.
Please tell me why, and how to resolve?

Thanks a lot!


Bruce Zhao
2009.06.16
--
To unsubscribe or change your settings for TWSocket mailing list
please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


Re: [twsocket] About ncFTPd server.

2009-06-16 Thread Bruce Zhao
Thank you very much!!

Bruce


2009/6/17 Arno Garrels arno.garr...@gmx.de

 Hello Bruce Zhao,

 Setting property Binary is not enough! You have to issue
 method/command TypeSet(Async) as well to change mode to
 binary mode. Alternatively you may forget the property and
 call method TypeBinary(Async) instead which does it both,
 sets property Binary to TRUE and calls method TypeSet(Async)
 subsequently.

 --
 Arno Garrels


  Hello everyone:
 
  I write a FTP upload application by use TFtpClient, I tested some FTP
  Servers, it works well, but when I upload file to NcFTPd Server in
  binary mode, my files been changed, I checked file in HEX, to
  discover $0D and $0D$0A changed to $0A, I used OverbyteIcsFtpTst.exe
  to test the NcFTPd Server, my file been changed too.
  Please tell me why, and how to resolve?
 
  Thanks a lot!
 
 
  Bruce Zhao
  2009.06.16
 --
 To unsubscribe or change your settings for TWSocket mailing list
 please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket
 Visit our website at http://www.overbyte.be

--
To unsubscribe or change your settings for TWSocket mailing list
please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


[twsocket] TWSocket's problem

2010-05-20 Thread Bruce Zhao
Hello everyone:

In my program, I created a thread to read data and put it into the
buffer, then the thread will post a message to main form and suspend
itself. When the main form receives the message, it sends the data in
buffer to the server.

I wrote code in the OnDataSent event of TWSocket to resume the thread.

At first, the process worked, but after few times, the thread failed
to resume, the log shows that the OnDataSent event had been triggered.

The following is my code :
if (FSendThread  nil) then begin
  FSendLog.Log(ltRuntime, 'OnDataSent resume the thread.');
  FSendThread.Resume;
end;

Pls help me, thank you!


Bruce Zhao
2010.05.21
--
To unsubscribe or change your settings for TWSocket mailing list
please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be