[twsocket] ICS FTP: How to check if file is newer?

2009-10-11 Thread Signed Source® Project
Hi guys, I have a local file --> setup.exe and remote file --> setup.exe which is placed on my ftp and which changes periodly. Now, Could you please help me out about, How can I check this both files and download the new one from the server when it changes? Source is the server and destination

Re: [twsocket] Page view

2009-10-12 Thread Signed Source® Project
I understand, Thank you very much for the answer. Best regards - Original Message - From: To: Sent: Monday, October 12, 2009 9:36 AM Subject: Re: [twsocket] Page view Is it possible to see the subject of the threads in this page? http://lists.elists.org/pipermail/twsocket/ As fa

Re: [twsocket] ICS FTP: How to check if file is newer?

2009-10-12 Thread Signed Source® Project
d get the new one. Best regards - Original Message - From: "Arno Garrels" To: "ICS support mailing" Sent: Monday, October 12, 2009 11:36 AM Subject: Re: [twsocket] ICS FTP: How to check if file is newer? Signed Source® Project wrote: Hi guys, I have a local file

[twsocket] FtpClientRequestDone

2009-10-12 Thread Signed Source® Project
Hi guys, Could someone please tell me how this need to be done? I am trying to connect plain only with code, I don't need any logs or any other fancy things. I am trying to use "ASYNC" mode. :: procedure TfrmMain.icsFt

Re: [twsocket] ICS FTP: How to check if file is newer?

2009-10-12 Thread Signed Source® Project
Hi Angus, Any ideas about this? "Property ssltype does not exist" I can't even start the magftp because of this error. Best regards - Original Message - From: "Angus Robertson - Magenta Systems Ltd" To: Sent: Monday, October 12, 2009 12:24 PM Subject: Re: [twsocket] ICS FTP: How to c

Re: [twsocket] ICS FTP: How to check if file is newer?

2009-10-12 Thread Signed Source® Project
Hi Angus, Did you mean the synchronization? : procedure TfrmMain.SynchronizeDirectory(FromPath, ToPath: string); var sr : tsearchrec ; r : integer ; begin application.processmessages; r := findfirst(FromPath + '\

Re: [twsocket] ICS FTP: How to check if file is newer?

2009-10-12 Thread Signed Source® Project
Hi Angus, Many thanks for the answer. The code was from an older version of magftp demo. I did check as you adviced, Listing files works, check download works and download works as well. I am working with a single file. I need to check a single file and download if there is new. I have checked

[twsocket] ICS FTP "Component not ready

2009-10-13 Thread Signed Source® Project
Hello, I am trying to pick a file from my server by using ICS FTP component with no success. This is all I need to do, nothing more... FtpClient.HostName := 194.100.68.141; FtpClient.Port := ftp; FtpClient.UserName := christian; FtpClient.Password := dummy_client; FtpClient.HostDirName := '/'; F

Re: [twsocket] ICS FTP "Component not ready

2009-10-13 Thread Signed Source® Project
"Component not ready Hello, You should either use the sync methods or use events and message pump. Because FtpClient.OpenAsync; does return immediately as it expects to launch event when done. HTH SZ On Tue, Oct 13, 2009 at 5:52 PM, Signed Source® Project < dan...@signedsource.com> wrot

Re: [twsocket] ICS FTP "Component not ready

2009-10-13 Thread Signed Source® Project
: [twsocket] ICS FTP "Component not ready http://wiki.overbyte.be/wiki/index.php/Asynchronous_Paradigm This should be helpful... SubZero On Tue, Oct 13, 2009 at 6:01 PM, Signed Source® Project < dan...@signedsource.com> wrote: Ok, What are the sync methods? How and where I should use the

[twsocket] ICS FTP What events

2009-10-13 Thread Signed Source® Project
Hello, I am still struggling with the ftp component because I want to make it work in async mode. I have checked this page, http://wiki.overbyte.be/wiki/index.php/Asynchronous_Paradigm Still can't figure out what events do I need, Whatever I do I get --> "Component not ready" or "Component not co

Re: [twsocket] ICS FTP What events

2009-10-13 Thread Signed Source® Project
Hi, Ok, Thank you. This is the correct one. What do you mean by "no result" ? I mean I can't get anything done because I get all the the same messages --> Component not ready or component not connected. Are there any examples of this? OnRequestDone? --> tryed in many ways with no results.

Re: [twsocket] ICS FTP What events

2009-10-13 Thread Signed Source® Project
Hi, Can you please tell me what examples and where? thanks - Original Message - From: "Matt Minnis" To: "'ICS support mailing'" Sent: Tuesday, October 13, 2009 10:37 PM Subject: Re: [twsocket] ICS FTP What events Look at the sample apps. I stumbled with this issue for a bit until

Re: [twsocket] ICS FTP What events

2009-10-13 Thread Signed Source® Project
byte.be - Original Message - From: "Signed Source® Project" To: "ICS support mailing" Sent: Tuesday, October 13, 2009 9:58 PM Subject: Re: [twsocket] ICS FTP What events Hi, Can you please tell me what examples and where? thanks - Original Message - From

Re: [twsocket] ICS FTP What events

2009-10-13 Thread Signed Source® Project
byte.be - Original Message - From: "Signed Source® Project" To: "ICS support mailing" Sent: Tuesday, October 13, 2009 9:58 PM Subject: Re: [twsocket] ICS FTP What events Hi, Can you please tell me what examples and where? thanks - Original Message - From

Re: [twsocket] ICS FTP What events

2009-10-14 Thread Signed Source® Project
bject: Re: [twsocket] ICS FTP What events Signed Source® Project wrote: Hi, Thank you very much for trying to help. < That is why there are different sample group projects for all supported compiler versions, yours is named "OverbyteIcsD2007Sam". But, I have downloaded the pac

[twsocket] How to check if file is newer

2009-10-16 Thread Signed Source® Project
Hello, I have finally managed to build downloading with ICSFTP ASYNC mode and it works very good. Now, Question 1) I would like check the file i am downloading from the server and see if it is newer then the target, Source is --> ftp.myftp.com Source file is --> My file Destination is --> C:\Fol

[twsocket] ICS FTP+How to list server files?

2009-10-18 Thread Signed Source® Project
Hello, I am trying to list the server files and get the filesize and date from the server but, I have no idea about how to list files :( Does ICS ftpclient support any directory listing?? or file listing if directory is already selected? If yes, I badly need to know how? -dan -- To unsubscribe

Re: [twsocket] ICS FTP+How to list server files?

2009-10-18 Thread Signed Source® Project
Well, I have checked all of them and still can't understand anything. All I need is just some simple examples about how things are supposed to work. Seems like there are no simple ways of just listing the server directory to listbox with the file size and timestamp. - dan - Original Messa

[twsocket] ftpSizeAsync, ftpDirAsync

2009-10-18 Thread Signed Source® Project
Hello, Can some please be kind and explain how these things are supposed to be used? Where? In what conditions? a simple example? I am not a guru you know. How can I get directory content to an TListBox? I am getting nowhere with this. Just getting all time "Component not ready". - dan -- To uns

Re: [twsocket] ftpSizeAsync, ftpDirAsync

2009-10-18 Thread Signed Source® Project
I understand the OnRequestDone part but I still don't know how to get the things done with it. Examples are too complicated. - Original Message - From: "Jeff Cook" To: "'ICS support mailing'" Sent: Sunday, October 18, 2009 10:28 PM Subject: Re: [twsocket] ftpSizeAsync, ftpDirAsync

[twsocket] Popup

2009-11-03 Thread Signed Source® Project
Hi guys, I have seen the same pop up as well. -dan -- 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] OverbyteIcsPingTst

2009-11-19 Thread Signed Source® Project
Hi guys, I have just tested --> OverbyteIcsPingTst which is delivered with v7 and noticed, It does not ping anything!! Here is what I get... : Resolving host 'www.google.com' Host 'www.

Re: [twsocket] OverbyteIcsPingTst

2009-11-20 Thread Signed Source® Project
ds, Wilfried [TeamICS] http://www.overbyte.be/eng/overbyte/teamics.html http://www.mestdagh.biz Thursday, November 19, 2009, 20:39, Signed Source® Project wrote: Hi guys, I have just tested --> OverbyteIcsPingTst which is delivered with v7 and noticed, I

Re: [twsocket] OverbyteIcsPingTst

2009-11-20 Thread Signed Source® Project
Hi Dave, I am using Vista and I can ping anything from the CMD succesfully. I don't think there is any firewall security problem. I am trying to ping --> www.google.com Pinging google works always in any place as long as there is a network connection. I did not made any modifications to the dem

Re: [twsocket] OverbyteIcsPingTst

2009-11-20 Thread Signed Source® Project
fried Mestdagh" To: "ICS support mailing" Cc: "Signed Source® Project" Sent: Friday, November 20, 2009 9:41 PM Subject: Re[2]: [twsocket] OverbyteIcsPingTst Hello Daniel, I tryed thencompiled exe mailed to me from Daniel in 3 machines, on NT4, on XP-pro, and on Vista-64b

Re: [twsocket] OverbyteIcsPingTst

2009-11-20 Thread Signed Source® Project
Yes, I can be configured but, Don't you think PingTest should also work if CMD does? - daniel - Original Message - From: "Darin McGee" To: "ICS support mailing" Sent: Friday, November 20, 2009 10:06 PM Subject: Re: [twsocket] OverbyteIcsPingTst The ESET firewall can be configure

Re: [twsocket] OverbyteIcsPingTst

2009-11-20 Thread Signed Source® Project
ue: gives internal errors in Delphi)... --- Rgds, Wilfried [TeamICS] http://www.overbyte.be/eng/overbyte/teamics.html http://www.mestdagh.biz Friday, November 20, 2009, 21:05, Signed Source® Project wrote: Hi guys, Thanks to Wilfried for testing :) Meanwhile, I have tested by disabling my ESET smart

Re: [twsocket] OverbyteIcsPingTst

2009-11-21 Thread Signed Source® Project
Thanks guys, Modifying ESET wasn't an option on my case, I have just made another way around and solved the problem. Anyway, Is it possible to make PingTst to work as windows CMD? - daniel - Original Message - From: "Francois PIETTE" To: "ICS support mailing" Sent: Saturday, Novem

Re: [twsocket] OverbyteIcsPingTst

2009-11-22 Thread Signed Source® Project
Hi, I have made a consule app (not with ICS) and it works as same as the CMD. I mean it doesn't care about the security software. What I mean was, To build similar way with ICS which can ping without security problem and can have some properties like, if ping answers then do this if ping doesn'

Re: [twsocket] OverbyteIcsPingTst

2009-11-22 Thread Signed Source® Project
Thanks you :) I understand you perfectly. -daniel - Original Message - From: "Francois PIETTE" To: "ICS support mailing" Sent: Sunday, November 22, 2009 5:20 PM Subject: Re: [twsocket] OverbyteIcsPingTst I have made a consule app (not with ICS) and it works as same as the CMD. I m

Re: [twsocket] OverbyteIcsPingTst

2009-11-22 Thread Signed Source® Project
Your English is excellent - Yes, Francois speaks perfectly english, Thanks to all for all the help. - daniel - Original Message - From: "Darin McGee" To: "ICS support mailing" Sent: Sunday, November 22, 2009 5:22 PM Subject: Re: [twsocket] OverbyteIcsPingTst Your English is exc

[twsocket] Server & Client application

2009-11-30 Thread Signed Source® Project
Hi guys, I need to build an application as following, I have server which receives info from the clients (info like: logs, hardware status, process status etc.). Server will also disribute installation files and content to the clients. Clients will be connected to the server all the time and w

Re: [twsocket] Server & Client application

2009-11-30 Thread Signed Source® Project
Thank you Angus, Very good answers :) A little bit more... What kind of database you did use? There will be one or two servers with around 250 clients each and I was thinking of TCP/IP protocol Is this what you have done? Can communication be protected with blowfish? or do you have better su

Re: [twsocket] Server & Client application

2009-11-30 Thread Signed Source® Project
Thank you Francois, I will check MidWare :) -daniel - Original Message - From: "Francois PIETTE" To: "ICS support mailing" Sent: Monday, November 30, 2009 8:17 PM Subject: Re: [twsocket] Server & Client application I need to build an application as following, I have server which

Re: [twsocket] Server & Client application

2009-11-30 Thread Signed Source® Project
I understand :) SQL is the right database I believe also. - daniel - Original Message - From: "Angus Robertson - Magenta Systems Ltd" To: Sent: Monday, November 30, 2009 8:33 PM Subject: Re: [twsocket] Server & Client application What kind of database you did use? SQL, does not

[twsocket] Merry Christmas

2009-12-22 Thread Signed Source® Project
Hello guys, Merry christmas and happy new year :) Merry Navidad y feliz año nuevo :) Lustig Christfest und eines glückliches Neujahr :) Felice Natale e felice anno nuovo :) Joyeux Noël et bonne année :) ??? ? ? ?? ? ??? :) God Jul och glad Nyåren :) Feliz Natal e fe

[twsocket] OS & TWSOCKET

2009-12-30 Thread Signed Source® Project
Hi guys, I have changed my os to Windows 7 and it unfortunately doesn't include windows mail anymore. I have installed Mozilla thunderbird and can't import my old account or mails back. Can you please inform, How can I set "twsocket" to get mails? I can't get any mails from twsocket with this

Re: [twsocket] OS & TWSOCKET

2009-12-30 Thread Signed Source® Project
On 30.12.2009 11:49, Francois PIETTE wrote: How can I set "twsocket" to get mails? If you use TWSocket you'll have to imlplement POP3/SMTP/NNTP protocols. This has been done in POP3 client component to get emails, SMTP client component to send emails and NNTP component to send/receive messag

Re: [twsocket] OS & TWSOCKET

2009-12-30 Thread Signed Source® Project
On 30.12.2009 13:42, wilfried Mestdagh wrote: Hi, The mails are automatically sent to every subscriber on the list. If you get your mail with the same email address you will get all the mail automatically. Ok :) Thank you. -- To unsubscribe or change your settings for TWSocket mailing list

[twsocket] Client/Server Demo

2010-10-07 Thread Signed Source® Project
Hi guys, Do we have a client/server demo somewhere (connect to a server, communicate like sending messages, files etc.)? if yes, Where can I download it? Thanks in advance - daniel -- To unsubscribe or change your settings for TWSocket mailing list please goto http://lists.elists.org/cgi-bin/m

Re: [twsocket] Client/Server Demo

2010-10-07 Thread Signed Source® Project
On 7.10.2010 19:04, Francois PIETTE wrote: Do we have a client/server demo somewhere (connect to a server, communicate like sending messages, files etc.)? if yes, Where can I download it? Yes, there are several such demos. They are in ICS zip file, along with the components. Look at the "inte

Re: [twsocket] Client/Server Demo

2010-10-07 Thread Signed Source® Project
On 7.10.2010 19:45, Signed Source® Project wrote: On 7.10.2010 19:04, Francois PIETTE wrote: Do we have a client/server demo somewhere (connect to a server, communicate like sending messages, files etc.)? if yes, Where can I download it? Yes, there are several such demos. They are in ICS zip

Re: [twsocket] Client/Server Demo

2010-10-07 Thread Signed Source® Project
On 7.10.2010 20:20, RTT wrote: Is it possible to encrypt the connection between the client and server? The connection, or your custom data? -- To unsubscribe or change your settings for TWSocket mailing list please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket Visit our websi

Re: [twsocket] Client/Server Demo

2010-10-07 Thread Signed Source® Project
On 7.10.2010 20:36, Arno Garrels wrote: Signed Source® Project wrote: Hi guys, One more question, Is it possible to encrypt the connection between the client and server? if yes, I would appreciated any help you could provide. Of course it is possible, however it has to be implemented

Re: [twsocket] Client/Server Demo

2010-10-07 Thread Signed Source® Project
On 7.10.2010 21:46, Angus Robertson - Magenta Systems Ltd wrote: No, there are no demos available showing how to encrypt a connection. But there is exactly that code in the ICS SMTP, HTTP and FTP SSL components, clients and servers. Angus -- To unsubscribe or change your settings for TWS

Re: [twsocket] Client/Server Demo

2010-10-07 Thread Signed Source® Project
On 7.10.2010 21:45, RTT wrote: Any kind of demos for the person who has never done such things before? But what kind of data are you sending/receiving. Plain text, binary? You just need to encrypt it before send, and decrypt at receive. Here is a good cryptography library http://www.cityinthes

Re: [twsocket] Client/Server Demo

2010-10-07 Thread Signed Source® Project
On 7.10.2010 20:59, si...@fantaziachat.com wrote: ?i can make you a demo if you wish with basic chat funcation and room support with 64bit encoding for string commands ... -Original Message- From: Signed Source® Project Sent: Thursday, October 07, 2010 6:58 PM To: ICS support mailing

Re: [twsocket] Client/Server Demo

2010-10-07 Thread Signed Source® Project
On 7.10.2010 22:41, Francois PIETTE wrote: Is it possible to encrypt the connection between the client and server? ICS support the SSL protocol. It has a strong encryption. SSL is what is used in protocols sur as HTTPS, FTPS and many others (also supported by ICS). if yes, I would appreciat

Re: [twsocket] Client/Server Demo

2010-10-07 Thread Signed Source® Project
On 8.10.2010 8:59, Arno Garrels wrote: Signed Source® Project wrote: [DCC Error] OverbyteIcsSimpleSslServer1.pas(88): E2003 Undeclared identifier: 'TSslWSocketClient' You have to "Build" the project, compiling is not enough. Thanks Arno :) Didn'

[twsocket] SSL DLL files

2010-10-07 Thread Signed Source® Project
Hi guys, Anyone any idea about where to get latest SSL dll files compatible with ICS v7? Thanks in advance -daniel -- 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.b

[twsocket] Extra in mail

2010-10-07 Thread Signed Source® Project
Hello, How can I get ride of this? "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 " Thanks -- To unsubscribe or change your settings for TWSocket mailing list pleas

Re: [twsocket] Client/Server Demo

2010-10-08 Thread Signed Source® Project
Hi Angus, Thanks for the response, My needs are following, Server: Answers to the incoming connections and lists connected clients (it is monitoring the clients). - Can send files like: .bat, .exe etc. to the client/clients - Can receive files like: .txt, .log, .xml from the client/clients - Ca

Re: [twsocket] Extra in mail

2010-10-08 Thread Signed Source® Project
Okay :) Thanks. -daniel On 8.10.2010 10:00, Francois PIETTE wrote: How can I get ride of this? "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 " You simply can'

Re: [twsocket] Client/Server Demo

2010-10-08 Thread Signed Source® Project
Hi Francois, Or maybe you want to rewrite your own remote desktop ? Not really. Or maybe you want to provide a tunnel for the standard remote desktop ? Yes, I would like to provide a tunnel for this which will make the client pc as a lan computer and will allow to remote desktop. Could you pl

Re: [twsocket] Client/Server Demo

2010-10-08 Thread Signed Source® Project
Of course, I have been looking from the wrong place :( Thanks mate :) -daniel On 8.10.2010 11:16, Angus Robertson - Magenta Systems Ltd wrote: You have not looked very closely, since the SSL files are on the ICS WIKI download page, below the ICS distributions: http://wiki.overbyte.be/wiki/ind

Re: [twsocket] Client/Server Demo

2010-10-08 Thread Signed Source® Project
Hi Francois, Thanks for the response :) I have decided to skip the remote desktop. I have now started to work on the SSL client/server demo and found following questions, - How do I use the certificates in both server and client? - How do I create the certificates? - How about usernames and pas

Re: [twsocket] Client/Server Demo

2010-10-08 Thread Signed Source® Project
Guys, Right now, I don't think I need to read any books. I am just trying to understand the demo in the ICS v7 first. There is already everything I need. I don't need to create any certificates for now. How can I use the existed certificates in the demo? When I run the server demo, There is: 0

Re: [twsocket] Client/Server Demo

2010-10-08 Thread Signed Source® Project
Thanks Arno, I will start study and be back to this when I have a bit more understanding. -daniel On 8.10.2010 21:04, Arno Garrels wrote: Signed Source® Project wrote: I don't think I need to read any books. In order to understand SSL/TLS basics it's enough to ask, for instance,

[twsocket] Capturing UDP packets

2010-10-23 Thread Signed Source® Project
Hello, Does anyone have some example of how to capture udp packets from the air with ICS components? if yes, Please do share if you can. Thanks in advance -- -daniel -- To unsubscribe or change your settings for TWSocket mailing list please goto http://lists.elists.org/cgi-bin/mailman/listin

Re: [twsocket] Capturing UDP packets

2010-10-23 Thread Signed Source® Project
Hi Francois, I need to receive udp packets from a certain IP address placed in my network. Do we have any examples for this? Thanks in advance -daniel On 23.10.2010 18:20, Francois PIETTE wrote: Does anyone have some example of how to capture udp packets from the air with ICS components?

[twsocket] TWSocket UDP capturing

2010-12-02 Thread Signed Source® Project
Hi guys, I am trying to capture UDP packages from a device placed in my network with TWSocket. I am unfortunately lost because I don't know how to do it. I will be very pleased if there are any samples, if not I can put this one on the site after I made it working because it will basically look

Re: [twsocket] TWSocket UDP capturing

2010-12-02 Thread Signed Source® Project
freeware multi-tier middleware MidWare The author of the freeware Internet Component Suite (ICS) http://www.overbyte.be - Original Message - From: "Signed Source® Project" To: "ICS Components" Sent: Thursday, December 02, 2010 1:08 PM Subject: [twsocket] TWSocket

Re: [twsocket] TWSocket UDP capturing

2010-12-02 Thread Signed Source® Project
Hi Francois, Where do you exactly have this demo? I can't find it in my component folder. I unfortunately still don't understand this! I just want to add the available data into the memo, what all other things are? Is there any help somewhere? thanks -daniel On 2.12.2010 15:42, Francois PIET

Re: [twsocket] TWSocket UDP capturing

2010-12-02 Thread Signed Source® Project
/wiki.overbyte.be -- 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 - Original Message - From: "Signed Source® Project" To: "ICS support mailing"

Re: [twsocket] TWSocket UDP capturing

2010-12-02 Thread Signed Source® Project
this mailing list and http://wiki.overbyte.be -- 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 - Original Message - From: "Signed Source® Project" To:

Re: [twsocket] TWSocket UDP capturing

2010-12-02 Thread Signed Source® Project
Thanks Francois, There is a demo in the new package, which is a consule demo, do we have anything simple like: one or two button with a memo which shows easy and clearly about what and how? thanks -daniel On 2.12.2010 18:32, Francois PIETTE wrote: The demos are not in the component folder (v

Re: [twsocket] TWSocket UDP capturing

2010-12-02 Thread Signed Source® Project
Thanks Arno, Found it! I have version 7 yes, but I don't know what version 7 it is exactly. I haven't got any of these in my version 7. Thanks again. -daniel On 2.12.2010 19:21, Arno Garrels wrote: Signed Source® Project wrote: Thanks Francois, There is a demo in the new package,

Re: [twsocket] TWSocket UDP capturing

2010-12-02 Thread Signed Source® Project
I have done it already :) Thanks guys. -daniel On 2.12.2010 20:06, Arno Garrels wrote: Signed Source® Project wrote: Thanks Arno, Found it! I have version 7 yes, but I don't know what version 7 it is exactly. I haven't got any of these in my version 7. Then you use an old and