[twsocket] ICS of delphi DX3 can not redirection is disabled

2013-04-25 Thread xlq
I used HTTPCli of ICS in delphi 7, HTTPCli can handle redirection automatically, now I move my code to delphi XE3 and use the latest ICS, but HTTPCli can not handle redirection automatically, Is it a bug? or What am I missing? -- To unsubscribe or change your settings for TWSocket mailing list

Re: [twsocket] ICS of delphi DX3 can not redirection is disabled

2013-04-25 Thread Angus Robertson - Magenta Systems Ltd
I used HTTPCli of ICS in delphi 7, HTTPCli can handle redirection automatically, now I move my code to delphi XE3 and use the latest ICS, but HTTPCli can not handle redirection automatically, Is it a bug? or What am I missing? The 'latest' ICS still handles redirection automatically. If

Re: [twsocket] Lib PPP on serial modem

2013-04-25 Thread Angus Robertson - Magenta Systems Ltd
I have tried the RASDIAL unit to connect on remote site with modem and PPP. I don't understand your problem, and RAS is not supported in this mailing list. But you can try the full RAS component at: http://www.magsys.co.uk/delphi/magras.asp Beware it will not solve any problems if

Re: [twsocket] ICS of delphi DX3 can not redirection is disabled

2013-04-25 Thread xlq
The old HTTPCli is Version: 1.47 , it work fine in delphi 7 Now I use HTTPCli version is Version: 8.00 in Delphi XE3, and the link no longer redirect is: http://media.soundcloud.com/stream/EvkwidLYJX0C?stream_token=UUQGe On Thu, Apr 25, 2013 at 2:49 PM, Angus Robertson - Magenta Systems

Re: [twsocket] ICS of delphi DX3 can not redirection is disabled

2013-04-25 Thread Angus Robertson - Magenta Systems Ltd
Now I use HTTPCli version is Version: 8.00 in Delphi XE3, and the link no longer redirect Using the ICS frame browser demo, redirection works fine here, although nothing useful is displayed since it's an audio clip, some headers removed to keep this shorter: FrameBrowser Get:

[twsocket] Which component to use?

2013-04-25 Thread {Dark_Ducke}
Hello everybody, I would like to know the difference between the components and TWSocket TWSocketServer, do i need a software that will receive multiple simultaneous connections to POS terminals like this ( http://www.sapienciati.com.br/dados/image/pos2. jpg), to know when a connection is lost,

Re: [twsocket] Which component to use?

2013-04-25 Thread Angus Robertson - Magenta Systems Ltd
I would like to know the difference between the components and TWSocket TWSocketServer, do i need a software that will receive multiple simultaneous connections to POS terminals You are talking about a server, and you'll find ICS server demos using both TWSocket and TWSocketServer, since the

Re: [twsocket] ICS of delphi DX3 can not redirection is disabled

2013-04-25 Thread xlq
I created dynamically a HTTPCli and use it to get the URL: mHttpCli:= THttpcli.Create(nil); mHttpCli.OnCommand := OnMyCommand; mHttpCli.OnHeaderData := OnMyHeaderData; mHttpCli.OnDocData:= OnMyDocData; mHttpCli.MultiThreaded := true; mHttpCli.URL

Re: [twsocket] ICS of delphi DX3 can not redirection is disabled

2013-04-25 Thread xlq
Sorry, I wrote some wrong codes in OnMyDocData, now it work fine. On Fri, Apr 26, 2013 at 8:34 AM, xlq xliuqi...@gmail.com wrote: I created dynamically a HTTPCli and use it to get the URL: mHttpCli:= THttpcli.Create(nil); mHttpCli.OnCommand := OnMyCommand;