[twsocket] Elists.org

2005-12-03 Thread Fastream Technologies
Hello,

Sorry to read that elists.org is going to shut down unless someone takes the 
burden to host it. Maybe we should switch to Yahoo groups?

Regards,

SZ
-- 
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] Can ICS raw socket be used to sniff traffic?

2005-12-03 Thread Angus Robertson - Magenta Systems Ltd
 Failed to Start Monitor - Error 10022 in function WSAIoctl(SIO_RCVALL)
 Invalid argument

Sorry, no idea.  I'd make sure the latest network adaptor drivers are 
loaded, it will be faulty drivers causing the problem. 

Angus
-- 
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] Chunked encoding with THttpCli

2005-12-03 Thread Fastream Technologies
Hello,

Does THttpCli support chunked encoding? If so, how do we indicate we can accept 
it from server?

Best Regards,

SubZ
-- 
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] Out of the office until 22 Sep 2005

2005-12-03 Thread Markus Bartat

Ich werde ab  02.12.2005 nicht im Büro sein. Ich kehre zurück am
05.12.2005.

I'm out of the office until 22 Sep 2005

-- 
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] Chunked encoding with THttpCli

2005-12-03 Thread Angus Robertson - Magenta Systems Ltd
 Does THttpCli support chunked encoding? If so, how do we indicate we 
 can accept it from server?

No.  If such an encoding actually exists, the latest client beta 
supports content coding 'plugins', so you can write a new unit based on 
the current GZIP coding version, and simply add it to the project, so it 
will be automatically used by THttpCli and the Accept-Encoding: header 
added to requests with whatever code is used for 'chunked'. 

Angus 
-- 
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] Chunked encoding with THttpCli

2005-12-03 Thread Fastream Technologies
Hi,

Chunked is a transfer-encoding not content. It means there is no 
content-length in the response header and the client simply gets the (size 
of) each packet separately and then cuts the connection when the server 
tells so.

Francois, any idea? Chunked encoding is a *must* for http/1.1 compatibility.

Best Regards,

SubZ

- Original Message - 
From: Angus Robertson - Magenta Systems Ltd [EMAIL PROTECTED]
To: twsocket@elists.org
Sent: Saturday, December 03, 2005 3:59 PM
Subject: Re: [twsocket] Chunked encoding with THttpCli


 Does THttpCli support chunked encoding? If so, how do we indicate we
 can accept it from server?

 No.  If such an encoding actually exists, the latest client beta
 supports content coding 'plugins', so you can write a new unit based on
 the current GZIP coding version, and simply add it to the project, so it
 will be automatically used by THttpCli and the Accept-Encoding: header
 added to requests with whatever code is used for 'chunked'.

 Angus
 -- 
 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 

-- 
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] [OT] I'm back

2005-12-03 Thread Francois PIETTE
Hi guys !

I'm back from my Chicago business trip. While I was away, I received 
hundreds of messages (not counting thousands spam messages), so I will 
probaby not read everything. If you have urgent pending issues, just point 
me to the right message.

--
Contribute to the SSL Effort. Visit http://www.overbyte.be/eng/ssl.html
--
[EMAIL PROTECTED]
http://www.overbyte.be


-- 
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] Chunked encoding with THttpCli

2005-12-03 Thread Angus Robertson - Magenta Systems Ltd
 Chunked is a transfer-encoding not content. It means there is no 
 content-length in the response header and the client simply gets the 
 (size of) each packet separately and then cuts the connection when 
 the server tells so.

If you think it is so important, why don't you actually do something 
useful for ICS and actually implement it, instead of just complaining 
all the time. 

Angus
-- 
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] Chunked encoding with THttpCli

2005-12-03 Thread Fastream Technologies
SEE MY MESSAGE PRIOR TO YOURS.

SZ

- Original Message - 
From: Angus Robertson - Magenta Systems Ltd [EMAIL PROTECTED]
To: twsocket@elists.org
Sent: Saturday, December 03, 2005 6:27 PM
Subject: Re: [twsocket] Chunked encoding with THttpCli


 Chunked is a transfer-encoding not content. It means there is no 
 content-length in the response header and the client simply gets the 
 (size of) each packet separately and then cuts the connection when 
 the server tells so.
 
 If you think it is so important, why don't you actually do something 
 useful for ICS and actually implement it, instead of just complaining 
 all the time. 
 
 Angus
 -- 
 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
-- 
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] Severe Bug in FtpCli resp. FtpSrv - Fix

2005-12-03 Thread Angus Robertson - Magenta Systems Ltd
 Following a fix:
 The data-socket must effectively be stopped from accepting a 
 connection once the primary transfer command has failed. If the 
 data-socket is simply closed then on client-side an error is raised - 
 so my solution is not to call datasocket.accept on the incoming 
 connection - by clearing datasocket.OnSessionAvailable.

Mt testing of the FTP server unit you emailed and which you said you'd 
sent to Francois shows your 'fix' does not work, at least in my 
testing.  Perhaps my test has shown up a different problem to the one 
you have fixed.  

The issue seems to be when the PASV command is sent, the server opens 
the data socket to listen for a connection from the client, but this 
does not happen if the subsequent RETV, LIST or STOR command fails to 
start.  So the data socket remains listening when the next PASV command 
comes in, and is closed then, but immediately setup up again to list, 
before it has closed properly, which I think is why there is an 
erroneous response from the closed event.  

Clearing OnSessionAvailable has not effect, since the client never opens 
a session.  

Angus
-- 
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] HTTPCli And PHPBB Forums...

2005-12-03 Thread Me
Hi.
How do i handle phpbb forums with httpcli? I tryied to login from 
other browser and then to set the cookie as it is in the browser, 
but it doesnt work... could anybody help me? I wouldlike to login to 
the forum and be able to stay logged in so i could search the forums 
etc.
Thank you!
Ann

-- 
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] UserManager component

2005-12-03 Thread Maurizio Lotauro
On 02-Dec-05 11:16:33 Arno Garrels wrote:

Maurizio Lotauro wrote:
 On 30-Nov-05 08:19:53 Arno Garrels wrote:

 Maurizio Lotauro wrote:

 [...]

 Will they contains passwords?

 Yes, with an option to save the MD5-hash only.

 What is the purpose of the component?
 The target is server only or client too?

I made it to manage user accounts no matter whether
the application is client or server.

But for client you can't store the password hashed. Or you are using
only your server that will accept the pwd in MD5?


Bye, Maurizio.

-- 
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] UserManager component

2005-12-03 Thread Arno Garrels
Maurizio Lotauro wrote:
 On 02-Dec-05 11:16:33 Arno Garrels wrote:
 
 Maurizio Lotauro wrote:
 On 30-Nov-05 08:19:53 Arno Garrels wrote:
 
 Maurizio Lotauro wrote:
 
 [...]
 
 Will they contains passwords?
 
 Yes, with an option to save the MD5-hash only.
 
 What is the purpose of the component?
 The target is server only or client too?
 
 I made it to manage user accounts no matter whether
 the application is client or server.
 
 But for client you can't store the password hashed. 

Correct, that's why it's optional. 

 Or you are using
 only your server that will accept the pwd in MD5?

The server accepts the plain text password, builds the
MD5 hash (optional) and compares the value with stored
user password, very simple, nothing for the hall
of fame ;-)


---
Arno Garrels [TeamICS]
http://www.overbyte.be/eng/overbyte/teamics.html

-- 
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