0

I have designed a REST Web Service in java and I'm running it locally on Apache Tomcat server.

Now I want to access the web service from outside my network. I have a static IP address.

How do I access it from another network?

Chintan Soni
  • 24,761
  • 25
  • 106
  • 174
Mario
  • 145
  • 2
  • 16

1 Answers1

0

after having chat with you, i can suggest following.

  • check if your network/firewall have port 8080 open. if not make it open for communication.
  • try doing telnet to that IP with the port 8080 to check if that port is open for connection to that machine, if not contact to your network operator.

it seems connection problem to me more than service related issue.

dev2d
  • 4,245
  • 3
  • 31
  • 54