[twsocket] Clients dysfunction

2009-06-23 Thread Engi

Hi,

I'm using 1 server and 3 clients.
When server sends data to clients, only 1 client receive this data.
In the server loop, the clientcount property is 3.

I think there is a problem but I don't found it.
Any help or advices would be appreciated.

Engi
--
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] Clients dysfunction

2009-06-23 Thread Wilfried Mestdagh
Hello Engi,

How do you send your data in the server?
it should be something like:

for n := 0 to Srv.ClientCount - 1 do
   try
  Srv.Clients[n].SendStr('Hello again');
   except
   end;

---
Rgds, Wilfried [TeamICS]
http://www.overbyte.be/eng/overbyte/teamics.html
http://www.mestdagh.biz

Tuesday, June 23, 2009, 14:39, Engi wrote:

 Hi,

 I'm using 1 server and 3 clients.
 When server sends data to clients, only 1 client receive this data.
 In the server loop, the clientcount property is 3.

 I think there is a problem but I don't found it.
 Any help or advices would be appreciated.

 Engi
 --
 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

--
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] Clients dysfunction

2009-06-23 Thread Engi

Problem resolved !

Sorry, but I missed a 'break' into my for loop.
Now, all clients receive data.

Thanks for answer.

Engi

Le 23/06/2009 14:55, Wilfried Mestdagh a écrit :

Hello Engi,

How do you send your data in the server?
it should be something like:

for n := 0 to Srv.ClientCount - 1 do
   try
  Srv.Clients[n].SendStr('Hello again');
   except
   end;

---
Rgds, Wilfried [TeamICS]
http://www.overbyte.be/eng/overbyte/teamics.html
http://www.mestdagh.biz

Tuesday, June 23, 2009, 14:39, Engi wrote:

 Hi,

 I'm using 1 server and 3 clients.
 When server sends data to clients, only 1 client receive this data.
 In the server loop, the clientcount property is 3.

 I think there is a problem but I don't found it.
 Any help or advices would be appreciated.

 Engi
 --
 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

--
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


  

--
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] FileMD5 : Different Hash Result - same File on different workstations

2009-06-23 Thread Peter Ineichen, Triple-M Systems AG

Hi there,

We have a strange thing.
We're doing some filetransfer from a server
to different clients. The server stores its
content each file with FileMD5() Hash.

The clients do the same with their files.
Different files have to be updated. This
works mostly without harm since months.

Now:
on some workstations FileMD5 result is different
from the server file. If we copy the two files
to the server and check it with FileMD5 -- same Hash.
Both files on the client -- same Hash but different from
the server hash.

This is only on two Workstations in the whole environment.
All Workstations are XP SP3.

Does someone has got an idea about this.

We tried it with different versions of ICSMD5.pas.

Thanks Werner
--
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] FileMD5 : Different Hash Result - same File on different workstation

2009-06-23 Thread Angus Robertson - Magenta Systems Ltd
 on some workstations FileMD5 result is different
 from the server file. 
 We tried it with different versions of ICSMD5.pas.

All versions of icsmd5.pas from ICS v5 or earlier are three or more years
old, you should really use OverbyteIcsMD5 from the ICS v7 nightly SVN zip,
I improved FileMD5 a few weeks ago, but there are no real bug fixes as
such.  

I use MD5 for checking file corruption in several applications, the only
times I've had a problem were when buffered files really were being
corrupted due to a bug, and when using the multiple file version
FileListMD5 (in v6) where you have to hash the files in the same order to
get the same result. 

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] FileMD5 : Different Hash Result - same File on different workstations

2009-06-23 Thread Fastream Technologies
Hello Peter,

Why don't you check with ICS MD5Extractor with source code:

http://www.fastream.com/md5extractor.php

Best Regards,

SZ

On Tue, Jun 23, 2009 at 6:51 PM, Peter Ineichen, Triple-M Systems AG 
ineic...@triple-m.ch wrote:

 Hi there,

 We have a strange thing.
 We're doing some filetransfer from a server
 to different clients. The server stores its
 content each file with FileMD5() Hash.

 The clients do the same with their files.
 Different files have to be updated. This
 works mostly without harm since months.

 Now:
 on some workstations FileMD5 result is different
 from the server file. If we copy the two files
 to the server and check it with FileMD5 -- same Hash.
 Both files on the client -- same Hash but different from
 the server hash.

 This is only on two Workstations in the whole environment.
 All Workstations are XP SP3.

 Does someone has got an idea about this.

 We tried it with different versions of ICSMD5.pas.

 Thanks Werner
 --

--
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] FileMD5 : Different Hash Result - same File on differentworkstations

2009-06-23 Thread Arno Garrels
Peter Ineichen, Triple-M Systems AG wrote:
 Now:
 on some workstations FileMD5 result is different
 from the server file. If we copy the two files
 to the server and check it with FileMD5 -- same Hash.
 Both files on the client -- same Hash but different from
 the server hash.

You could try:
1. Some third party freeware MD5 tool not using ICS.
2. The tool suggested by Fastream.

If both show the same strange behaviour the computer might
be infected by a Virus?

--
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 http://www.overbyte.be


Re: [twsocket] FileMD5 : Different Hash Result - same File ondifferent workstation

2009-06-23 Thread Arno Garrels
Angus Robertson - Magenta Systems Ltd wrote:
 on some workstations FileMD5 result is different
 from the server file.
 We tried it with different versions of ICSMD5.pas.
 
 All versions of icsmd5.pas from ICS v5 or earlier are three or more
 years old, you should really use OverbyteIcsMD5 from the ICS v7
 nightly SVN zip, I improved FileMD5 a few weeks ago, but there are no
 real bug fixes as such.

I actually fixed one bug in v7 that effected Unicode compiler only.
However he seems to use v5.

--
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 http://www.overbyte.be


Re: [twsocket] FileMD5 : Different Hash Result - same File ondifferent workstation

2009-06-23 Thread ineic...@triple-m.ch
Thank you all,

I tried it with v6 and after that with v5 (using Delphi 2007).
Unfortunately i do not have remote access to this client.
Tomorrow i i'll go there and try with:
- ICS v7
- The suggested tool
- using a test app with indy (i'll do it this night)

i'll come back to you

Peter

Arno Garrels arno.garr...@gmx.de hat am 23. Juni 2009 um 20:15 geschrieben:

 Angus Robertson - Magenta Systems Ltd wrote:
  on some workstations FileMD5 result is different
  from the server file.
  We tried it with different versions of ICSMD5.pas.
  
  All versions of icsmd5.pas from ICS v5 or earlier are three or more
  years old, you should really use OverbyteIcsMD5 from the ICS v7
  nightly SVN zip, I improved FileMD5 a few weeks ago, but there are no
  real bug fixes as such.
 
 I actually fixed one bug in v7 that effected Unicode compiler only.
 However he seems to use v5.
 
 --
 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 http://www.overbyte.be
--
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] FileMD5 : Different Hash Result - same File ondifferent workstation

2009-06-23 Thread Piotr Dałek
Hello!

 Thank you all,

 I tried it with v6 and after that with v5 (using Delphi 2007).
 Unfortunately i do not have remote access to this client.
 Tomorrow i i'll go there and try with:
 - ICS v7
 - The suggested tool
 - using a test app with indy (i'll do it this night)

 i'll come back to you

This *might* be also a sign of corrupted RAM or failing motherboard,
especially if you get different hashes every time.  

-- 
Piotr Dałek
enigmati...@interia.pl

--
Przekaz dalej wiadomosc: Zawsze warto oszczedzac. Teraz 5,5%!
Sprawdz  http://link.interia.pl/f21b1

--
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] ICS group on social networks LinkedIn and FaceBook

2009-06-23 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:
http://www.facebook.com/pages/ICS-Internet-Component-Suite/39493622127

btw: You may also be part of Powered by Delphi group on Linked-In.
http://www.linkedin.com/e/gis/48600

--
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 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] Mailing list usage

2009-06-23 Thread Francois PIETTE

To all subscribers:

1) Please do not use HTML or RTF messages in the list. Use only plain/text
   messages (by default Outlook uses HTML ! You must change the setting).
   When replying, be sure to use plain/text. If someone email to list
   accidently NOT in plain text and if you reply to it, do take care you
   reply in plain text
2) Please do not include VCF to your messages.
3) Stay on topic ! Do not post off-topic messages and do not answer
   off-topic messages.
4) Always us a subject and change message subject when required. Do not
   change subject when not needed because message thread is lost.
   Always mention which component you talk about and OS version.
5) Do not attach files to your messages. If you have something to give, just
   tell us in the list. Interested people will contact you to get the file.
6) Post messages using the EMail address you used to subscribe.
   No alias allowed. If you use an alias, your message will not appears in
   the list.
7) If you change message subject please dont hit 'reply', but compose a
   new message. Some mail readers group messages per ID instead
   of subject.
8) Do not forget to send your registration postcard :-)
9) Forgive me if I didn't notifyed you for your postcard yet :-(
10) Add yourself to http://www.linkedin.com/e/gis/136245
 and also to http://www.frappr.com/icsandmidware
11) Don't forget there is an announce mailing list if you find traffic is
 too high on support list.
12) If you have problems with the list, do not complain in the list but
   directly to me.
13) Let Wilfried Mestdagh and me moderate the list.
--
francois.pie...@overbyte.be
http://www.overbyte.be





--
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] ICS registration

2009-06-23 Thread Francois PIETTE


As you subscribed to ICS support mailing list, you probably use ICS. Good !
But have you taken time to register your ICS copy ?

ICS is freeware but to use it, you must register it.
Registration is very simple: just mail a [real, paper] picture postcard to
the author (me). You can find instructions in readme.txt file.

Thanks.

PS: If you already sent your picture postcard, simply ignore this message.
If you wants to know if I received it, then you must tell me when you sent
it, from which country and what the picture is (I have several thousands
postcards !).

--
francois.pie...@overbyte.be
The author for the freeware multi-tier middleware MidWare
The author of the freeware Internet Component Suite (ICS)
http://www.overbyte.be



--
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