-
Thanks Klaus,
We will integrate this patch into the next product release.
Cheers
Amir Shevat
Project Lead.
2009-05-12 05:18:26 UTC by ashevat
-
Problem detected:
On Windows Server 2008 the Multicast Agent Code joins a local loopback address (IPv6 loopback) to the multicast group and so no messages will return to this agent.
Solution:
I've fixed the MulticastRemoteTestCommunicationLayer code as follows: ... use the first external IP address as validAddress
public static synchronized String getValidLocalAddress() {
.....
2009-05-11 14:48:06 UTC by pesendorfer_fl
-
I've never done anything on Windows Server. It sounds like you might need to enable multicast on the server, but that's just a guess.
2009-05-10 20:30:44 UTC by nobody
-
Hello!
I've setup my pisces Testenvironment with Multicast Communication layer successfully.
It does work with several Windows and Linux agents,
but it does NOT work with an agent running on a Windows Server 2008 Edt.
I've disabled all Firewalls. All machines run in the same network.
I've tried different multicast addresses and ports, but that didn't help either.
There is no...
2009-05-08 13:34:46 UTC by pesendorfer_fl
-
Previous code was still sub-optimal.. I belive correct sollution is something in this manner:
public Serializable SendRequest(Serializable msg, String remoteName, long timeout) {
Receiver resp = new Receiver((RemoteTestRequest) msg, timeout);
Thread respThread = new Thread( resp );
respThread.start();
sendMessage(msg, remoteName);
try{.
2008-12-22 12:51:54 UTC by nobody
-
I am experiencing the same problem(running on linux)
Debugged a bit, found :
class MulticastRemoteTestCommunicationLayer:
@Override
public Serializable SendRequest(Serializable msg, String remoteName, long timeout) {
//29.06.06 Aviad changed order of lines due to bug form sourceForge opened on the forum
//sendMessage(msg, remoteName);
//return...
2008-12-22 08:53:40 UTC by nobody
-
Anonymous committed patchset 1 of module CVSROOT to the Pisces CVS repository, changing 11 files.
2005-05-17 13:10:07 UTC by nobody
-
ashevat registered the Pisces project.
2005-05-17 11:21:24 UTC by ashevat