1

I want to open port 5555 on my machine using UPnP to the world. Could you please provide me with such Java sample for any sutable Opensource library. I need A CODE SAMPLE like one I can give you for C# using this lib

using TCMPortMapper;

private void Form1_Load()
{
  PortMapper.SharedInstance.Start();
  PortMapping pm = new PortMapping(localPort, publicPort, 
         PortMappingTransportProtocol.TCP);
  PortMapper.SharedInstance.AddPortMapping(pm);
}
private void Form1_FormClosing()
{
  PortMapper.SharedInstance.StopBlocking();
}
Rella
  • 65,003
  • 109
  • 363
  • 636

1 Answers1

1

Have you tried googling for "java upnp library"?

My first hit was one UPNPLib that looks reasonable. sample for UPNP mapping with same. there are also others:

Hasturkun
  • 35,395
  • 6
  • 71
  • 104