The Artima Developer Community
Sponsored Link

Java Answers Forum
Error 10055 under Win when trying to connect MulticastSocket

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Gerd Breitenbach

Posts: 1
Nickname: schnupferi
Registered: Feb, 2003

Error 10055 under Win when trying to connect MulticastSocket Posted: Feb 2, 2003 10:10 AM
Reply to this message Reply
Advertisement
This problem has been posted a couple of months ago by someone else without answer: I'm just running the Sun example program for Multicast sockets. The server works fine, the client starts with:

MulticastSocket socket = new MulticastSocket(4446);
InetAddress address = InetAddress.getByName("230.0.0.1");
socket.joinGroup(address);

<<<< ;<< breakdown, error No 10055 SocketException, set socket option failed

This happens on some Computers, on others it works, anybody an idea about the problem?

If I run a Tcp-based server client pair
(ServerSocket and Socket as Java functions) everything works fine, it's the Multicast that causes the problem.

Thanks

Topic: Files & Strings Previous Topic   Next Topic Topic: List directory contents in menu

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use