I am using httpurlconnection to post on Facebook,but I am getting following exception
java.net.UnknownHostException: graph.facebook.com
might be due to proxy setting,same code running fine while running in a java stand alone application while putting following
codeProxy proxy = new Proxy(Proxy.Type.HTTP,new InetSocketAddress("proxy.domain.com", 8080))
Can any one tell how to set proxy on weblogic server?