Re: [twsocket] ICS-SSL now released as freeware. ICS is ready for Tiburon. Version Control repository for ICS

2008-08-13 Thread Olivier Sannier
Hi, Many thanks for this, it will prove useful for many, especially the SVN repository. However, there is one thing that could prove annoying: The repository has been setup on a non standard port via HTTP which means that many users won't be able to access it because of security policies in

[twsocket] Converting memorystream to string?

2008-08-13 Thread brian
procedure LoginSocketDocEnd(Sender: TObject); var p: PChar; s: string; begin p := TMemoryStream(LoginSocket.RcvdStream).Memory; s:= Copy(StrPas(p), 1, LoginSocket.RcvdStream.Size); LoginSocket.RcvdStream.Destroy; LoginSocket.RcvdStream := nil; or if you need stringlists: procedure

Re: [twsocket] ICS-SSL now released as freeware. ICS is ready for Tiburon. Vers

2008-08-13 Thread Angus Robertson - Magenta Systems Ltd
The repository has been setup on a non standard port via HTTP which means that many users won't be able to access it because of security policies in place at their company. The port is the default SVN HTTPS port, but I disabled SSL to avoid continual warning about no SSL certificate. But

Re: [twsocket] Converting memorystream to string?

2008-08-13 Thread GC
Brian, At 10:49 13/08/2008, brian wrote: procedure LoginSocketDocEnd(Sender: TObject); (snip) Thanks much for the code. -- 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

Re: [twsocket] Converting memorystream to string?

2008-08-13 Thread brian
np. it's made with ASync calls in mind (in the ondoc event), but you can as well just include it in the call proc after it returns with your sync method. - Original Message - From: GC [EMAIL PROTECTED] To: twsocket@elists.org Sent: Wednesday, August 13, 2008 4:45 PM Subject: Re: