[twsocket] HttpCli for https

2008-03-26 Thread George
Hello, how can I use HttpCli component to access secure web servers (https) ? Thanks -- 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] httpserver memoryleak

2008-03-16 Thread George
author of the freeware Internet Component Suite (ICS) > http://www.overbyte.be > > > - Original Message - > From: "George" <[EMAIL PROTECTED]> > To: "ICS support mailing" > Sent: Sunday, March 16, 2008 6:49 PM > Subject: [twsocket] httpser

Re: [twsocket] httpserver memoryleak

2008-03-16 Thread George
; [EMAIL PROTECTED] > The author of the freeware multi-tier middleware MidWare > The author of the freeware Internet Component Suite (ICS) > http://www.overbyte.be > > > - Original Message - > From: "George" <[EMAIL PROTECTED]> > To: "ICS support mai

[twsocket] httpserver memoryleak

2008-03-16 Thread George
Hello, I'm using ICS HttpServer and I have a code: ClientCnx.DocStream := TMemoryStream.Create; ClientCnx.DocStream.Write(Header[1], Length(Header)); ClientCnx.DocStream.CopyFrom(MS2, MS2.Size); MS2.Free; ClientCnx.SendStream; Some times the FastMM memory leak tool reports memory leak

[twsocket] Build with runtime packages

2008-01-19 Thread George
Hello, when I try to build with runtime packages an application that contains an HttpServer component I get an AV: Access violation at address 000E. Read of address 000E. when i set HttpServer1.Start; I use the following packages to build: vcl;rtl;vclx;inet;IcsDel70 any idea? Thanks

Re: [twsocket] Webserver only with local connections

2007-12-05 Thread George
>I have already told you the best way. Make the listening IP 127.0.0.1 . > > On 12/4/07, George <[EMAIL PROTECTED]> wrote: >> >> Hello, >> >> I created a THttpServer that is used as a middleware between my delphi >> app >> and a flash application.

[twsocket] Webserver only with local connections

2007-12-04 Thread George
ce of code is welcomed. Thanks George -- 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] Webserver with local connections only

2007-12-01 Thread George
ce of code is welcomed. Thanks George -- 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] Update on Delphi Please

2006-06-15 Thread george r smith
All, I have been busy in the C# world and have lost touch with Borland trying to sell Delphi. Can someone give me an update. I miss this group. george r smith -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org/mailman/listinfo

Re: [twsocket] SMTP Client in IntraWeb application

2006-05-02 Thread George
No Message pumb? All other components work correctly, also CleverComponents' clSMTP component works but I want to use ICS. Dont you have IntraWeb installed? Its by default installed in the Delphi IDE. Can you please make a test by yourself? Thanks > If no event fire, then probably there is no

[twsocket] SMTP Client in IntraWeb application

2006-05-02 Thread George
Why I cant send email using SMTPCli inside IntraWeb app? The code works fine in a normal Win32 app but inside a IntraWeb app the OnRequestDone never fires. Whats wrong? Thanks -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org/mailman/listinfo/t

[twsocket] Questions for socket experts

2006-04-24 Thread george r smith
All, If I have learned anything from Francois's code is that you can never be sure if you get a partial or a full packet. The question is if a packet is encrypted (des3) how do you know you have received the full packet ? Obviously you can not check for a string or a delimiter that would

[twsocket] keepalive

2006-03-07 Thread george r smith
Hi all, Is there a way at the O/S level (unix-linux and windows) to set the keepalive for the O/S. Can you do it by port ? We are losing connections and it seems to be on the server side. Thanks grs -- To unsubscribe or change your settings for TWSocket mailing list please goto http:

[twsocket] enum all interfaces

2006-02-28 Thread George
Hello, if I have many network cards or many IPs inside a network card, how can I get this info using ICS? thanks -- 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] send multiple lines

2006-02-28 Thread George
Hello, I have a xml string: which contain many lines. when I send it using SendStr I get it on the other side, line by line (which is the normal). What is the best way to compose it and have the sending completed? Thanks -- To unsubscribe or change your settings for TWSocket mailing lis

Re: [twsocket] UDPServer receive and IP

2006-02-20 Thread George
I tried with GetXAddr, but it returns 4 times the 0.0.0.0 Ok 4 seperates TWSockets are a temp solution, but I believe you can fix it, cant you? George -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org/mailman/listinfo/twsocket Visit our

[twsocket] UDPServer receive and IP

2006-02-20 Thread George
Hello, I have a UDPServer component and on DataAvailable SrcLen := SizeOf(Src); Len:= UDPServer.ReceiveFrom(@Buffer, SizeOf(Buffer), Src, SrcLen); ShowMessage(inet_ntoa(Src.sin_addr)); // i know the IP address of the remote pc but since my computer contains 5 ip addresses in the interfa

[twsocket] UDPServer receive and IP

2006-02-17 Thread George
Hello, I have a UDPServer component and on DataAvailable SrcLen := SizeOf(Src); Len:= UDPServer.ReceiveFrom(@Buffer, SizeOf(Buffer), Src, SrcLen); ShowMessage(inet_ntoa(Src.sin_addr)); // i know the IP address of the remote pc but since my computer contains 5 ip addresses in the interfa

[twsocket] Absnormal disconnection

2006-01-24 Thread George
Hello, I have a client/server application. Clients connect to Server. If client reboot the machine by pressing the case reboot button or plug out the UTP cable, Server will not be immediatelly informed for that disconnection. I know this is Windows TCP/IP limitation, so I want to ask if there is

[twsocket] UDP receive bug or what?

2005-06-10 Thread George
Hello, I ran the 2 demos of udp ( server and client). In my one of my computers the UDP client receives the same thing 4 times. The same executable in another machines receives every command one time (thats the regular). Whats wrong? Is it my PC bug or ICS bug? George -- To unsubscribe or

[twsocket] Detect disconnection after reset

2005-06-08 Thread George
s? Thanks George -- 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] Internet cafe software

2005-05-30 Thread George
give me some suggestions please? What example to use from the demos as a base? Thanks George -- 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