Results 1 to 2 of 2
- 05-07-2011, 02:36 PM #1
Member
- Join Date
- May 2011
- Posts
- 1
- Rep Power
- 0
Cannot connect to Java HTTP Server from external client
Hi, I'm creating a personal tool that serves files through HTTP in Java. For the HTTP Server part I'm using the com.sun.net.httpserver.HttpServer package. When I connect from my own PC using either localhost or the external hostname, it works, but when I try to connect from an external client to it, it just doesn't. I'd also like to mention that the java default policies file hasn't ever been modified and that I'm behind a router, and that the port is properly forwarded. I tried modifying the policies file but I didn't have any success, although I don't know if the settings were correct or if they got applied, and I read a thread in which there was a similar problem, but using rmi which has been solved by setting the java.rmi.server.hostname system property, but I don't think this is also available in my case because the server uses TCP.
I also tried disabling the firewall, but still no luck.
Just so this is clear. The client is any browser, so there shouldn't be any problems there.
Here's the code that initializes the server:
If any of you guys can point to what I can do in order to solve this I would really appreciate it.Java Code:Settings settings = Controller.getInstance().getModel().getSettings(); int port = settings.getHTTP_PORT(); server = HttpServer.create(new InetSocketAddress(port), 20); String cachepath = settings.getCachepath(); if(!cachepath.startsWith("/")) cachepath = "/"+cachepath; server.createContext(cachepath, new HTTPServerHandler()); server.start();
- 05-07-2011, 03:48 PM #2
Similar Threads
-
Connect to an external remote server and call an EXE file
By Bulelakes in forum NetworkingReplies: 0Last Post: 03-14-2011, 07:56 AM -
Connect Syslog server with Java
By may28 in forum New To JavaReplies: 0Last Post: 01-07-2011, 01:40 PM -
server java HTTP request
By kptN in forum New To JavaReplies: 0Last Post: 10-22-2010, 03:42 PM -
How to block Client request to connect with server
By mfaizan24 in forum NetworkingReplies: 3Last Post: 02-28-2010, 07:26 PM -
Server not able to connect client
By Kapil Gupta in forum New To JavaReplies: 15Last Post: 07-22-2008, 04:09 AM


LinkBack URL
About LinkBacks

Bookmarks