Re: [twsocket] ICS Stable for 64bits?

2013-05-17 Thread Arno Garrels
On Thursday, May 16, 2013 11:05 PM [GMT+1=CET], Eric Fleming Bonilha schrob: Hello! I would like to know if ICS is already stable for 64bits development. I'm pretty sure it is. Try the the demos including SSL/TLS they do work. I`m porting my system to 64bits and I updated to ICS8, but I´m

[twsocket] ICS Stable for 64bits?

2013-05-16 Thread Eric Fleming Bonilha
Hello! I would like to know if ICS is already stable for 64bits development. I`m porting my system to 64bits and I updated to ICS8, but I´m having many issues (ICS is in the core of my system) that looks like memory overflow or overwrite, so, I´m trying to find out the problems and I want to

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

2013-04-26 Thread Angus Robertson - Magenta Systems Ltd
Where to get the ICS frame browser demo code? thanks. It is part of the ICS V7 and V8 distributions, in directory: .\Samples\delphi\BroswerDemo It is a full visual browser, using the THtmlViewer component from: http://code.google.com/p/thtmlviewer/ so displays most web pages, although

[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] 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:

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;

[twsocket] ICS V8 Linker problem when installing on XE3

2013-02-25 Thread Mark Morrison
Hi: When I try to build IcsVclCBXE3Run.bpl with C Builder XE3, I get the following linker errors: [ilink32 Error] Error: Public symbol for EXPDEF '@System@Generics @Collections@%TEnumerator__1$p30System@Classes@TCollectionItem%@DoGetCurrent$qqrv' not found in module OverbyteIcsWSocketS.pas

Re: [twsocket] ICS V8 Linker problem when installing on XE3

2013-02-25 Thread Arno Garrels
Mark Morrison wrote: Hi: When I try to build IcsVclCBXE3Run.bpl with C Builder XE3, I get the following linker errors: [ilink32 Error] Error: Public symbol for EXPDEF '@System@Generics @Collections@%TEnumerator__1$p30System@Classes@TCollectionItem%@DoGetCurrent$qqrv' not found in

[twsocket] ICS v8 Bug help:ThtmlSmtpCli.property timeout does not exist

2013-02-19 Thread 吴克英
i used the latest v8 get it from SVN today. platform is win32 XE3 when add the THtmlSmtpCli conponent to a new project and build the project . the exe file even can not run!!! simplely add the THtmlSmtpCli component ,not one line code added. raised an exception:EReadError Exception at

Re: [twsocket] ICS WebServer Demo

2012-11-14 Thread Angus Robertson - Magenta Systems Ltd
The problem was that the World Wide Web Publishing Services was running. There is a registry setting that makes IIS listen only on specific IP addresses when it starts, so you can run IIS and ICS servers at the same time. HLM\SYSTEM\CurrentControlSet\Services\HTTP\Parameters\ListenOnlyList

[twsocket] ICS FTP Client Strange Effect

2012-11-14 Thread Graham Powell
I have an odd effect that I'm sure one of you clever guys will provide an answer to. I am using the FTP client to put a file on the a web site. The file format is of my own making and have no trouble reading and writing to files to/from the hard drive. Apart from the first 4 bytes in the file,

Re: [twsocket] ICS FTP Client Strange Effect

2012-11-14 Thread Arno Garrels
Graham Powell wrote: I have an odd effect that I'm sure one of you clever guys will provide an answer to. I am using the FTP client to put a file on the a web site. The file format is of my own making and have no trouble reading and writing to files to/from the hard drive. Apart from the

Re: [twsocket] ICS FTP Client Strange Effect

2012-11-14 Thread Graham Powell
Sent: 14 November 2012 16:05 To: ICS support mailing Subject: Re: [twsocket] ICS FTP Client Strange Effect Graham Powell wrote: I have an odd effect that I'm sure one of you clever guys will provide an answer to. I am using the FTP client to put a file on the a web site. The file format

Re: [twsocket] ICS FTP Client Strange Effect

2012-11-14 Thread Arno Garrels
Graham Powell wrote: Just spotted that with Wireshark. Although Binary mode is set at design time I remember now that I have to set TypeBinaryAsync after the connection is made. Yep, I and many others had to learn this lesson as well. I vote for Binary as the default mode. -- Arno -- To

Re: [twsocket] ICS FTP Client Strange Effect

2012-11-14 Thread François Piette
I vote for Binary as the default mode. Unfortunately, the standard says text mode has to be the default. -- francois.pie...@overbyte.be Embarcadero MVP http://www.overbyte.be -- To unsubscribe or change your settings for TWSocket mailing list please goto

Re: [twsocket] ICS WebServer Demo

2012-11-14 Thread François Piette
The problem was that the World Wide Web Publishing Services was running. You should have got the error 10048 Socket already in use. You reported error 10013. Strange. -- francois.pie...@overbyte.be Embarcadero MVP http://www.overbyte.be -- To unsubscribe or change your settings for

[twsocket] ICS WebServer Demo

2012-11-13 Thread Graham Powell
Just started to look at the Web Server demo. When I run it I get 10013 Bind error. Any clues as to how to proceed? Any help much appreciated Graham -- To unsubscribe or change your settings for TWSocket mailing list please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket Visit

Re: [twsocket] ICS WebServer Demo

2012-11-13 Thread Angus Robertson - Magenta Systems Ltd
Just started to look at the Web Server demo. When I run it I get 10013 Bind error. Any clues as to how to proceed? Close the existing web server application running on the same IP address and port, use a different port for the ICS web server or add another IP address to your PC and make sure

Re: [twsocket] ICS WebServer Demo

2012-11-13 Thread Graham Powell
Thanks. Demo works now. Graham -Original Message- From: twsocket-boun...@elists.org [mailto:twsocket-boun...@elists.org] On Behalf Of Angus Robertson - Magenta Systems Ltd Sent: 13 November 2012 16:57 To: twsocket@elists.org Subject: Re: [twsocket] ICS WebServer Demo Just started

Re: [twsocket] ICS WebServer Demo

2012-11-13 Thread François Piette
Just started to look at the Web Server demo. When I run it I get 10013 Bind error. Any clues as to how to proceed? Error 10013 mean you have no access to some file. Check the OS files hosts, protocol and services (no extension) which shoud be in C:\Windows\System32\drivers\etc Some virus

Re: [twsocket] ICS support for RAD Studio XE3

2012-09-14 Thread Angus Robertson - Magenta Systems Ltd
Support for Delphi and C++ Builder XE3 is now available in ICS V7 available from: http://wiki.overbyte.be/wiki/index.php/ICS_Download Also, the ICS V8 XE3 package has been corrected to add some components. Angus -- To unsubscribe or change your settings for TWSocket mailing list please

Re: [twsocket] ICS support for RAD Studio XE3

2012-09-08 Thread François Piette
Support for Delphi and C++ Builder XE3 is now available in ICS V8 beta available from: http://wiki.overbyte.be/wiki/index.php/ICS_Download ICS V8 includes support for IPv6 and the FireMonkey FMX framework for Windows and Mac OS X. I would like to thanks Angus Robertson and Arno Garrels for

Re: [twsocket] ICS support for RAD Studio XE3

2012-09-08 Thread Angus Robertson - Magenta Systems Ltd
When I click on the ICS-V8 Beta Snapshot, link http://wiki.overbyte.be/arch/change-log-icsv8.xml I get this error: Object not found! The zip download link always worked, but viewing the changes log failed due to two missing XML/XLS files, one from the Wiki site, one from the SVN server.

Re: [twsocket] ICS support for RAD Studio XE3

2012-09-08 Thread Glenn Crouch
Much appreciated :) Glenn Crouch, mailto:gl...@esbconsult.com ESB Consultancy, http://www.esbconsult.com Follow us on Twitter: http://twitter.com/esbglenn Home of ESBPCS and ESB Calculators Kalgoorlie-Boulder, Western Australia -- To unsubscribe or change your settings for TWSocket mailing

[twsocket] ICS support for RAD Studio XE3

2012-09-07 Thread Angus Robertson - Magenta Systems Ltd
Support for Delphi and C++ Builder XE3 is now available in ICS V8 beta available from: http://wiki.overbyte.be/wiki/index.php/ICS_Download ICS V8 includes support for IPv6 and the FireMonkey FMX framework for Windows and Mac OS X. Thanks to Arno for many months of work implementing and testing

Re: [twsocket] ICS support for RAD Studio XE3

2012-09-07 Thread Arno Garrels
- Original Message - From: Angus Robertson - Magenta Systems Ltd an...@magsys.co.uk To: twsocket@elists.org Sent: Friday, September 07, 2012 5:56 PM Subject: [twsocket] ICS support for RAD Studio XE3 Support for Delphi and C++ Builder XE3 is now available in ICS V8 beta available

Re: [twsocket] ICS FTP Client - Next question

2012-07-18 Thread Graham Powell
17:41 To: twsocket@elists.org Subject: Re: [twsocket] ICS FTP Client - Next question I have found that if I call TypeBinaryAsync first and then in the Request event (ftpTypeSetAsync) I now call GetAsync You only need to set type once, and if you are using Async events then OnRequestDone

[twsocket] ICS FTP Client - Next question

2012-07-17 Thread Graham Powell
So now I have another issue which I'm sure someone will know the answer to. I am copying Unicode files from my FTP server to a local directory. The problem is that for every carriage return I get an additional non-Unicode carriage return. So for a CR LF where I should receive 0D 00 0A 00, I get

Re: [twsocket] ICS FTP Client - Next question

2012-07-17 Thread Angus Robertson - Magenta Systems Ltd
The problem is that for every carriage return I get an additional non-Unicode carriage return. The ICS FTP Client component has the Binary property set TRUE. But are you calling the TypeBinary or TypeSet methods that actually send the TYPE command? Angus -- To unsubscribe or change your

Re: [twsocket] ICS FTP Client - Next question

2012-07-17 Thread Graham Powell
-Original Message- From: twsocket-boun...@elists.org [mailto:twsocket-boun...@elists.org] On Behalf Of Angus Robertson - Magenta Systems Ltd Sent: 17 July 2012 15:46 To: twsocket@elists.org Subject: Re: [twsocket] ICS FTP Client - Next question The problem is that for every carriage

Re: [twsocket] ICS FTP Client - Next question

2012-07-17 Thread Angus Robertson - Magenta Systems Ltd
I have found that if I call TypeBinaryAsync first and then in the Request event (ftpTypeSetAsync) I now call GetAsync You only need to set type once, and if you are using Async events then OnRequestDone is where you check your state mechanism for the next command. Personally, I mostly use the

[twsocket] ICS FTP Client

2012-07-16 Thread Graham Powell
I'm sure this problem is simple to solve but I am tearing my hair out trying to solve it. Imagine I have an FTP site that contains a folder called Test1. In this folder I have a file called abc.dat and another folder just called abc. So I log on to the FTP site and change the directory

Re: [twsocket] ICS FTP Client

2012-07-16 Thread Angus Robertson - Magenta Systems Ltd
Now I change the working directory to Test1/abc. I check with Now I change the working directory to Test1/abc. PwdAsync that it is correct and it responds with what I could expect. Next I try and do a directory listing on this folder. The response indicates no error, but the stream is of

Re: [twsocket] ICS FTP Client

2012-07-16 Thread Graham Powell
and double dot folders. Any more clues? Graham -Original Message- From: twsocket-boun...@elists.org [mailto:twsocket-boun...@elists.org] On Behalf Of Angus Robertson - Magenta Systems Ltd Sent: 16 July 2012 14:26 To: twsocket@elists.org Subject: Re: [twsocket] ICS FTP Client Now I change

Re: [twsocket] ICS FTP Client

2012-07-16 Thread Angus Robertson - Magenta Systems Ltd
I may well end up using your components, but in the meantime I need to determine what my problem is here. The component includes an EXE demo, use that against the FTP server and the same root directory specifying get subdirs, and watch the FTP commands and responses the component uses to parse

Re: [twsocket] ICS FTP Client

2012-07-16 Thread Marc Charbonneau
I know there are files in the sub folder as I can see them with Windows Explorer. Which does not have any FTP functionality, so is this a local FTP server? You can browse FTP servers with Windows Explorer, you just need to type the address in the address bar. Ex.: ftp://usern...@ftpserver.com

Re: [twsocket] ICS FTP Client

2012-07-16 Thread Graham Powell
this as a parameter. Thanks for all your input. Graham -Original Message- From: twsocket-boun...@elists.org [mailto:twsocket-boun...@elists.org] On Behalf Of Angus Robertson - Magenta Systems Ltd Sent: 16 July 2012 15:46 To: twsocket@elists.org Subject: Re: [twsocket] ICS FTP Client I may

Re: [twsocket] ICS FTP Client

2012-07-16 Thread Angus Robertson - Magenta Systems Ltd
I had not cleared the HostFilename parameter. So the DirAsync still had this as a parameter. This is deliberate, the FTP command 'LIST directory' is valid, but not totally reliable with all FTP servers, it can save a lot of path commands. 'LIST filename' is also how to check if a specific file

Re: [twsocket] ICS FTP Client

2012-07-16 Thread Graham Powell
Thank you. You have been very helpful. Graham -Original Message- From: twsocket-boun...@elists.org [mailto:twsocket-boun...@elists.org] On Behalf Of Angus Robertson - Magenta Systems Ltd Sent: 16 July 2012 17:38 To: twsocket@elists.org Subject: Re: [twsocket] ICS FTP Client I had

[twsocket] ICS and HTTPServer handling medium traffic

2012-05-26 Thread Miguel Enguiça
Hi. I want to build a small webserver application to interface my framework, receiving http requests and replying with XML documents. I'd like to use your ICS suite under Delphi XE. The process seems to be pretty straight forward, using the OnGetDocument event. I just have a few questions,

Re: [twsocket] ICS and HTTPServer handling medium traffic

2012-05-26 Thread Angus Robertson - Magenta Systems Ltd
1. When two or more OnGetDocument events occur at the same time, should I create separate threads to process each one of them, knowing that my event response will only include XML string and the XML is generated in real time using my framework? ICS servers will handle hundreds of

[twsocket] ICS Beta V8 (aka IPv6 / FireMonkey Beta) updated

2012-05-07 Thread Arno Garrels
Hi, This is just to let you know that the directory structure of the Beta V8 aka IPv6 / FireMonkey Beta branch http://wiki.overbyte.be/wiki/index.php/ICS_Download has changed. A clean SVN check out to a new directory is recommended. The new layout is as follows: .\

[twsocket] ICS XE2 non-visual registration

2012-04-17 Thread Jon Burnham
Pardon Francois, I should have sent this last message to the list, as it may be more useful to your fans. === Bonjour Francois I have just discovered ICS is available for XE2. Bravo and merci beaucoup. I have decided to give them a whirl, as they seem to have an

Re: [twsocket] ICS XE2 non-visual registration

2012-04-17 Thread Arno Garrels
- Original Message - From: Jon Burnham j...@dial.pipex.com To: twsocket@elists.org Sent: Tuesday, April 17, 2012 1:58 PM Subject: [twsocket] ICS XE2 non-visual registration I just wanted to point out that the components *may* not be registering in the IDE properly. They do not appear

[twsocket] ICS website down? overbyte.be DNS lookups fail

2012-03-23 Thread Arno Garrels
svn, www and wiki cannot be resolved already tried from a webservice with same result. -- Arno -- 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] ICS website down? overbyte.be DNS lookups fail

2012-03-23 Thread Angus Robertson - Magenta Systems Ltd
svn, www and wiki cannot be resolved already tried from a webservice with same result. All sites working from here. But maybe I'm using cached DNS? Angus -- To unsubscribe or change your settings for TWSocket mailing list please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket

Re: [twsocket] ICS website down? overbyte.be DNS lookups fail

2012-03-23 Thread Arno Garrels
Angus Robertson - Magenta Systems Ltd wrote: svn, www and wiki cannot be resolved already tried from a webservice with same result. All sites working from here. But maybe I'm using cached DNS? It's working again now. -- Arno -- To unsubscribe or change your settings for TWSocket mailing

Re: [twsocket] ICS and FireMonkey

2011-10-18 Thread Arno Garrels
Arno Garrels wrote: Interesting screenshot: http://www.bilder-space.de/show_img.php?img=955c9e-1318435341.pngsize=original FYI: Here's the next one, HttpsTst demo live on the Mac: http://www.bilder-space.de/show_img.php?img=40aadd-1318952812.pngsize=original SSL worked more or less out of the

Re: [twsocket] ICS and FireMonkey

2011-10-18 Thread Francois PIETTE
FYI: Here's the next one, HttpsTst demo live on the Mac: http://www.bilder-space.de/show_img.php?img=40aadd-1318952812.pngsize=original SSL worked more or less out of the box :) Waouw ! francois.pie...@overbyte.be The author of the freeware multi-tier middleware MidWare The author of the

Re: [twsocket] ICS and FireMonkey

2011-10-13 Thread Arno Garrels
Fastream Technologies wrote: I wonder what is the EXE size? EXE size grows and grows it's 5.3 MB compiled with DCC for OS X and 3.8 MB for Win32, 4.9 MB for Win64. -- Arno Garrels -- To unsubscribe or change your settings for TWSocket mailing list please goto

Re: [twsocket] ICS and FireMonkey

2011-10-13 Thread Éric Fleming Bonilha
Does this means that the new ICS works in MACOS? Does TWSocket class works OK in MAC? Thanks Eric -Mensagem Original- From: Arno Garrels Sent: Thursday, October 13, 2011 5:44 AM To: ICS support mailing Subject: Re: [twsocket] ICS and FireMonkey Fastream Technologies wrote: I

Re: [twsocket] ICS and FireMonkey

2011-10-13 Thread Arno Garrels
Does TWSocket class works OK in MAC? Thanks Eric -Mensagem Original- From: Arno Garrels Sent: Thursday, October 13, 2011 5:44 AM To: ICS support mailing Subject: Re: [twsocket] ICS and FireMonkey Fastream Technologies wrote: I wonder what is the EXE size? EXE size

Re: [twsocket] ICS and FireMonkey

2011-10-13 Thread Éric Fleming Bonilha
No, current ICS does not support OS X, however I'm working on it, it's however still very experimental and there does not even exist a public svn branch. I add my current work to my IPv6 local working copy. Hum, thats ok, by the time that we start porting our software (in about 1 year) you

Re: [twsocket] ICS and FireMonkey

2011-10-13 Thread Arno Garrels
Éric Fleming Bonilha wrote: No, current ICS does not support OS X, however I'm working on it, it's however still very experimental and there does not even exist a public svn branch. I add my current work to my IPv6 local working copy. Hum, thats ok, by the time that we start porting our

[twsocket] ICS and FireMonkey

2011-10-12 Thread Arno Garrels
Interesting screenshot: http://www.bilder-space.de/show_img.php?img=955c9e-1318435341.pngsize=original -- Arno Garrels -- 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] ICS and FireMonkey

2011-10-12 Thread Angus Robertson - Magenta Systems Ltd
Interesting screenshot: I think we'll have to redesign that dialog for an IPhone g Angus -- 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] ICS and FireMonkey

2011-10-12 Thread Arno Garrels
Angus Robertson - Magenta Systems Ltd wrote: Interesting screenshot: I think we'll have to redesign that dialog for an IPhone g What is an IPhone? As a mobile-hater my parents 75 and 80 years old thought it was a nice idea to donated me a senior-mobile last year (with extra large buttons and

Re: [twsocket] ICS and FireMonkey

2011-10-12 Thread Arno Garrels
Arno Garrels wrote: Angus Robertson - Magenta Systems Ltd wrote: Interesting screenshot: I think we'll have to redesign that dialog for an IPhone g What is an IPhone? As a mobile-hater my parents 75 and 80 years old thought it was a nice idea to donated me a senior-mobile last year (with

Re: [twsocket] ICS and FireMonkey

2011-10-12 Thread Francois PIETTE
Interesting screenshot: http://www.bilder-space.de/show_img.php?img=955c9e-1318435341.pngsize=original Great ! -- francois.pie...@overbyte.be The author of the freeware multi-tier middleware MidWare The author of the freeware Internet Component Suite (ICS) http://www.overbyte.be -- To

Re: [twsocket] ICS and FireMonkey

2011-10-12 Thread Fastream Technologies
I wonder what is the EXE size? Best Regards, SZ On Wed, Oct 12, 2011 at 21:58, Francois PIETTE francois.pie...@skynet.bewrote: Interesting screenshot: http://www.bilder-space.de/**show_img.php?img=955c9e-**

Re: [twsocket] ICS Delphi 7 installation error

2011-10-04 Thread Angus Robertson - Magenta Systems Ltd
P.S.: I already sent this email one time, but had no reply in the following days, so I try it another time. Please anyone help me ! You have sent this same email at least five times, and had at least three replies, all of which have ignored. Look back in the archive to see the replies you

[twsocket] ICS Delphi 7 installation error

2011-09-28 Thread Karlinchen
Hello, I'm a complete newbie to Delphi. I have installed yesterday from the embarcadero website the Delphi XE2 trial version first and want to add ICS v7 to it. As told in the readme file I have opened the OverbyteIcsD7Run.dpk project and try to build it but I get the error from the compiler:

[twsocket] ICS Delphi 7 installation error

2011-09-26 Thread Karlinchen
Hello, I'm a complete newbie to Delphi. I have installed yesterday from the embarcadero website the Delphi XE2 trial version first and want to add ICS v7 to it. As told in the readme file I have opened the OverbyteIcsD7Run.dpk project and try to build it but I get the error from the compiler:

Re: [twsocket] ICS Delphi 7 installation error

2011-09-26 Thread Lester
You are trying to install ICS v7 to Delphi XE2? I'm afraid you've in that case opened the wrong package file. Open up DXe2Install.groupproj from the Install folder. Once there, compile the OverbyteIcsDXe2Run.bpl, and then install the OverbyteIcsDXe2Design.bpl. You will see these on the

Re: [twsocket] ICS Delphi 7 installation error

2011-09-26 Thread Angus Robertson - Magenta Systems Ltd
I'm a complete newbie to Delphi. I have installed yesterday from the embarcadero website the Delphi XE2 trial version first and want to add ICS v7 to it. As told in the readme file I have opened the OverbyteIcsD7Run.dpk You are confusing Delphi 7 and ICS v7. The projects to install ICS

[twsocket] ICS Delphi 7 installation error

2011-09-26 Thread Karlinchen
Hello, I'm a complete newbie to Delphi. I have installed yesterday from the embarcadero website the Delphi XE2 trial version first and want to add ICS v7 to it. As told in the readme file I have opened the OverbyteIcsD7Run.dpk project and try to build it but I get the error from the compiler:

[twsocket] ICS SSL client certificate support

2011-09-22 Thread Fastream Technologies
Hello, I wonder if client SSL certificates are supported in ICS web server. Best Regards, SZ -- 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] ICS HTTP Client POST fails in 6 out of 16 test cases

2011-09-11 Thread Arno Garrels
Fastream Technologies wrote: Hello, I have had a coder code a PHP script for this purpose. In the script the buggy cases are marked in source. Just POSTed with ICS Post demo to IIS 7.5 and the bug showed its ugly face. Since we have a big customer awaiting the fix, if somebody could

Re: [twsocket] ICS HTTP Client POST fails in 6 out of 16 test cases

2011-09-11 Thread Fastream Technologies
Nice try but not there yet. Test cases 8, 9, 10, 12, 13, 14 still fail. Best Regards, SZ On Sun, Sep 11, 2011 at 09:46, Arno Garrels arno.garr...@gmx.de wrote: Fastream Technologies wrote: Hello, I have had a coder code a PHP script for this purpose. In the script the buggy cases are

Re: [twsocket] ICS HTTP Client POST fails in 6 out of 16 test cases

2011-09-11 Thread Arno Garrels
Fastream Technologies wrote: Nice try but not there yet. Test cases 8, 9, 10, 12, 13, 14 still fail. Best Regards, Not for me, using OverbyteIcsHttpProt.pas V7.17. V7.15+ should work as well. SZ On Sun, Sep 11, 2011 at 09:46, Arno Garrels arno.garr...@gmx.de wrote: Fastream

Re: [twsocket] ICS HTTP Client POST fails in 6 out of 16 test cases

2011-09-11 Thread Fastream Technologies
I have 7.17 but it still does not work! Could you send me the entire unit so that I could compare? Best Regards, Gorkem Ates *Fastream Technologies* *Software IQ: Innovation Quality* http://www.iqproxyserver.com | http://www.fastream.com | twitter.com/fastream *Pbx:* +90-312-223-2830 (weekdays,

Re: [twsocket] ICS HTTP Client POST fails in 6 out of 16 test cases

2011-09-11 Thread Arno Garrels
Fastream Technologies wrote: I have 7.17 but it still does not work! Could you send me the entire unit so that I could compare? http://svn.overbyte.be:8443/svn/ics/trunk/Delphi/Vc32/OverbyteIcsHttpProt.pas I use the OverbyteIcsHttpTst demo out of the box, against

Re: [twsocket] ICS HTTP Client POST fails in 6 out of 16 test cases

2011-09-11 Thread Fastream Technologies
Sorry my error. Thank you so much for the fix! Please tell me your Paypal email. Best Regards, Subzero On Sun, Sep 11, 2011 at 11:01, Arno Garrels arno.garr...@gmx.de wrote: Arno Garrels wrote: Fastream Technologies wrote: I have 7.17 but it still does not work! Could you send me the entire

Re: [twsocket] ICS HTTP Client POST fails in 6 out of 16 test cases

2011-09-11 Thread Arno Garrels
Fastream Technologies wrote: Sorry my error. Thank you so much for the fix! Just checked in the fix, source available via SVN now or included in next daily snapshot: http://wiki.overbyte.be/wiki/index.php/ICS_Download -- Arno Garrels Subzero On Sun, Sep 11, 2011 at 11:01, Arno Garrels

[twsocket] ICS HTTP Client POST fails in 6 out of 16 test cases

2011-09-10 Thread Fastream Technologies
Hello, I have had a coder code a PHP script for this purpose. In the script the buggy cases are marked in source. Just POSTed with ICS Post demo to IIS 7.5 and the bug showed its ugly face. Since we have a big customer awaiting the fix, if somebody could sacrifice his Sunday to help fix it out,

Re: [twsocket] ICS HTTP Client POST fails in 6 out of 16 test cases

2011-09-10 Thread Fastream Technologies
To test the code, just install PHP to IIS or Apache, then unrar test.php in the root and POST anything to, http://localhost/test.php?m=11 You will see that the component never returns anything and the next request gives busy exception! Best Regards, SZ On Sun, Sep 11, 2011 at 06:43, Fastream

Re: [twsocket] ICS v7 for XE2 online now - Thanks

2011-09-07 Thread Arno Garrels
Lester wrote: Thanks very much for releasing this. Looks like it's time for another donation :) Lester, Many thanks for the Amazon voucher, that's motivating :) -- Arno Garrels -- To unsubscribe or change your settings for TWSocket mailing list please goto

Re: [twsocket] ICS v7 for XE2 online now - Thanks

2011-09-06 Thread Lester
I would like to repeat this thanks. I've been a long time user of ICS-SSL, and very infrequently post (mostly because I never have any issues), and one thing that's been holding me back purchasing Delphi (own v7 and 2005, which I've never used) is lack of 64 bit compilers. I've purchased XE2

[twsocket] ICS v7 for XE2 online now

2011-09-02 Thread Arno Garrels
Hello All! As you probably already noticed XE2 RTMed yesterday. You'll find ICS on the XE2 partner DVD however I suggest to always pick latest source code from the ICS wiki site, preferably using a SVN client: http://wiki.overbyte.be/wiki/index.php/ICS_Download (There are already two small fixes

Re: [twsocket] ICS v7 for XE2 online now

2011-09-02 Thread Angus Robertson - Magenta Systems Ltd
As you probably already noticed XE2 RTMed yesterday. And ICS v7 now supports Delphi 64-bit projects, but there is no C++ 64-bit compiler yet, that's planned for the next release. Angus -- To unsubscribe or change your settings for TWSocket mailing list please goto

Re: [twsocket] ICS v7 for XE2 online now

2011-09-02 Thread Fastream Technologies
On Fri, Sep 2, 2011 at 15:57, Angus Robertson - Magenta Systems Ltd an...@magsys.co.uk wrote: As you probably already noticed XE2 RTMed yesterday. And ICS v7 now supports Delphi 64-bit projects, but there is no C++ 64-bit compiler yet, that's planned for the next release. Too bad. :-(

Re: [twsocket] ICS v7 for XE2 online now

2011-09-02 Thread Arno Garrels
Angus Robertson - Magenta Systems Ltd wrote: As you probably already noticed XE2 RTMed yesterday. And ICS v7 now supports Delphi 64-bit projects, but there is no C++ 64-bit compiler yet, that's planned for the next release. Yep, and ICS is still for Windows only. I already played a bit with

Re: [twsocket] ICS v7 for XE2 online now - Thanks

2011-09-02 Thread Francois PIETTE
of the freeware multi-tier middleware MidWare The author of the freeware Internet Component Suite (ICS) http://www.overbyte.be -Message d'origine- From: Arno Garrels Sent: Friday, September 02, 2011 1:42 PM To: ICS support mailing Subject: [twsocket] ICS v7 for XE2 online now Hello All! As you

[twsocket] ICS v5: Raw sockets

2011-08-17 Thread Koker, Mohamed (GE Energy)
Hi Folks, Is it possible to use raw sockets with ICS v5? I am using Delphi 2007 but each time I try to set this up, I get a failure when binding i.e. after invoking the Listen method. Thanks in advance -Mohamed -- To unsubscribe or change your settings for TWSocket mailing list please goto

[twsocket] ICS and Delphi XE2

2011-08-03 Thread Angus Robertson - Magenta Systems Ltd
Embarcadero recently announced that RAD Studio XE2 will be launched in the next few weeks, the main XE2 information page is currently: http://www.embarcadero.com/world-tour The NDA on vendors has been relaxed so we can now talk about some new XE2 features and components for XE2. This note

Re: [twsocket] ICS and Delphi XE2

2011-08-03 Thread Tobias Rapp
Angus Robertson - Magenta Systems Ltd wrote: ICS does not currently support FireMonkey or Mac OS-X, it needs a lot of work since Linux is not event driven like Windows, and makes use of threads to prevent blocking. ICS did support Kylix for Linux several years ago, so some work has been done.

Re: [twsocket] ICS and Delphi XE2

2011-08-03 Thread Angus Robertson - Magenta Systems Ltd
There may be such an event system in FireMonkey, don't actually know. It seems Embarcadero bought KSDev earlier this year: http://www.ksdev.com/ and the feature page of VGScene may provide some hints about the capabilies of FireMonkey, although Embarcadero may have changed everything!

Re: [twsocket] ICS and Delphi XE2

2011-08-03 Thread Tobias Rapp
Angus Robertson - Magenta Systems Ltd wrote: There may be such an event system in FireMonkey, don't actually know. But supporting ICS with FireMonkey and Mac OS-X is not simply a case of a few bug fixes and conditional compilation changes which is effectively all that is needed for 64-bit

Re: [twsocket] ICS and Delphi XE2

2011-08-03 Thread Arno Garrels
Tobias Rapp wrote: Angus Robertson - Magenta Systems Ltd wrote: ICS does not currently support FireMonkey or Mac OS-X, it needs a lot of work since Linux is not event driven like Windows, and makes use of threads to prevent blocking. ICS did support Kylix for Linux several years ago, so some

Re: [twsocket] ICS in DLL. My report about results

2011-07-17 Thread breezesoftware
-- Message: 1 Date: Sat, 16 Jul 2011 23:33:11 +0400 From: Anton S. an...@rambler.ru Subject: Re: [twsocket] ICS in DLL. My report about results To: twsocket@elists.org Message-ID: op.vyp8lloi0cp...@pcfrost.netbynet.ru Content-Type: text/plain; charset=windows-1251 Why don't you

Re: [twsocket] ICS in DLL. My report about results

2011-07-16 Thread Anton S.
Why don't you use initialization/finalization sections? Do you really think that these sections are executed not from DLLMain? -- Anton -- 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] ICS in DLL. My report about results

2011-07-15 Thread Stan
Unfortunately DLLMain appeared to be a very tricky thing: you can't call methods from other DLLs from there (incl Yes, there is a lot of info about this in the Net. I revised the situation but found only one way: provide special Start/Finish methods for init/cleanup. Why don't you use

[twsocket] ICS in DLL. My report about results

2011-07-14 Thread Anton S.
After 1.5 days of struggling with DLL and async model I decided to share some experience. What I needed is DLL with several functions interacting via sockets with a remote app. They must send request messages, receive responces, process them and return as out parameters. Function call must be

[twsocket] ICS latest version for Delphi XE

2011-03-18 Thread Wilfried Mestdagh
Hi, I just installed Delphi XE pro. Is http://wiki.overbyte.be/arch/icsv7w.zip the latest version for ICS? -- mvg, Wilfried http://www.mestdagh.biz http://www.comfortsoftware.be http://www.expertsoftware.be -- To unsubscribe or change your settings for TWSocket mailing list please goto

Re: [twsocket] ICS latest version for Delphi XE

2011-03-18 Thread Francois PIETTE
I just installed Delphi XE pro. Is http://wiki.overbyte.be/arch/icsv7w.zip the latest version for ICS? This is the latest SVN snapshot created automatically each day. -- francois.pie...@overbyte.be The author of the freeware multi-tier middleware MidWare The author of the freeware Internet

[twsocket] ICS group on social networks LinkedIn and FaceBook

2011-03-13 Thread Francois PIETTE
Hi ! Every ICS user is invited to be part of ICS-group on Linked-In. See http://www.linkedin.com/e/gis/136245 Why ? Just to have a little bit more visibility for everyone of us and for ICS. There is another one on FaceBook:

[twsocket] ICS group on social networks LinkedIn and FaceBook

2011-02-22 Thread Francois PIETTE
Hi ! Every ICS user is invited to be part of ICS-group on Linked-In. See http://www.linkedin.com/e/gis/136245 Why ? Just to have a little bit more visibility for everyone of us and for ICS. There is another one on FaceBook:

  1   2   3   4   5   6   7   >