RE: mutlicast sockets

1999-09-13 Thread Wright Robert B Civ 96 CG/SCWDE
> Check your /etc/route.conf file. The multicast route must be set to > something like this if you want to use multicast on eth0: > 224.0.0.00.0.0.0240.0.0.0eth0 > this was the problem. i used "route add -net 224.0.0.0 netmask 240.0.0.0 dev eth0" to add the route to the routing

Re: mutlicast sockets

1999-09-10 Thread Rudi Streif
0.0240.0.0.0eth0 If all of this is ok it should work. Rudi -Original Message- From: Wright Robert B Civ 96 CG/SCWDE <[EMAIL PROTECTED]> To: '[EMAIL PROTECTED]' <[EMAIL PROTECTED]> Date: Friday, September 10, 1999 6:37 AM Subject: mutlicast sockets >i

Re: mutlicast sockets

1999-09-10 Thread Nathan Meyers
Ted Neward wrote: > > Somebody made mention, in the JavaSpaces list, that if you want to do > JavaSpaces (which uses Multicast sockets, as I understand it), that you have > to have multicast support compiled into the kernel. > > It's hearsay and rumor, but maybe it'll help? Multicast sockets ge

RE: mutlicast sockets

1999-09-10 Thread Wright Robert B Civ 96 CG/SCWDE
CG/SCWDE; [EMAIL PROTECTED] > Subject: Re: mutlicast sockets > > > Somebody made mention, in the JavaSpaces list, that if you want to do > JavaSpaces (which uses Multicast sockets, as I understand > it), that you have > to have multicast support compiled into the kernel.

Re: mutlicast sockets

1999-09-10 Thread Ted Neward
B/COM-DCOM spoken here http://www.javageeks.com/~tneward "I don't even speak for myself; my wife won't let me." --Me -Original Message- From: Wright Robert B Civ 96 CG/SCWDE <[EMAIL PROTECTED]> To: '[EMAIL PROTECTED]' <[EMAIL PROTECTED]> Date: F

mutlicast sockets

1999-09-10 Thread Wright Robert B Civ 96 CG/SCWDE
i'm getting a "java.net.SocketException: No such device" when executing this code: MulticastSocket socket = new MulticastSocket(); InetAddress address = InetAddress.getByName("230.0.0.1"); socket.joinGroup(address); through jdb i discovered that the joinGroup method is throwing the exceptio