multicast « Development « Java Network Q&A

Home
Java Network Q&A
1.API
2.bluetooth
3.Client
4.connection
5.Cookie
6.Development
7.Email
8.File
9.ftp
10.http
11.HttpClient
12.https
13.ip
14.Network
15.OS
16.RMI
17.Security
18.Server
19.Socket
20.tcp
21.UDP
22.url
Java Network Q&A » Development » multicast 

1. Error on MulticastSocket.joinGroup()    stackoverflow.com

I'm trying to execute a simple example of Multicast sockets on Java.

 MulticastSocket s = new MulticastSocket(6789);
 InetAddress group = InetAddress.getByName("230.1.1.1");
 s.joinGroup(group);
This code generates the error: IP_ADD_MEMBERSHIP failed (out of hardware ...

2. IPv6 Multicast Check Java    stackoverflow.com

Is there any better to way to check if I can receive a given IP Multicast transmission. Following code works fine but there is a problem in this code - it ...

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.