Is there a way to find the IP address of a phone connected to a Wifi access point?
If not in J2ME would it be possible in PyS60 or Symbian C++?
device: 5800XM
Is there a way to find the IP address of a phone connected to a Wifi access point?
If not in J2ME would it be possible in PyS60 or Symbian C++?
device: 5800XM
Try this code
ServerSocketConnection mServerSocketConnection = (ServerSocketConnection) Connector.open("socket://:8000");
String ip = "IP: " + mServerSocketConnection.getLocalAddress();
tony