Applet unable to access servlet
I have just made an applet which is hosted together on my server with the rest of my servlets.
Below is a code of the applet . Where getInfo is my servlet name
String Servletadd = "http://testing15.homedns.org:8084/testing/getInfo";
URL u = new URL(Servletadd);
con = u.openConnection();
However i can't open the socket to the servlet. I read about applets being able only to access its own server ip. In this case i am accessing my own server ip.
Or is there any way to get my server IP so that the applet recognise it as its own server ip?
Anyone have any idea? Thanks for the help in advance

