How to access Java servlet running on my PC from outside ?

Posted by Frank on Stack Overflow See other posts from Stack Overflow or by Frank
Published on 2010-03-29T16:12:24Z Indexed on 2010/03/29 16:23 UTC
Read the original article Hit count: 382

Filed under:
|
|
|
|

I used Netbeans6.7 to write a servlet, when it runs, it opens a browser window with this address : http://localhost:8080/My_App/Test_Servlet, I replaced the "localhost" with my IP address, now it looks like this : http://192.???.1.??:8080/My_App/Test_Servlet, but I tried to access it from another computer outside my home, it can't read anything, I wonder if I need to change Windows Fire Wall setting to allow outside traffic, it's a Paypal IPN app, so I call Paypal, they said they can't access : http://192.???.1.??:8080/My_App/Test_Servlet

What on my side should I do to allow traffic from "paypal.com" to access "My_App/Test_Servlet" ?

Frank

© Stack Overflow or respective owner

Related posts about access

Related posts about java