[appengine-java] How to create a Socket with UrlFetchService?

2011-12-13 Thread Sandro Röder
I want to create a socket like connection with UrlFetchService: The code I want to execute with is: java.net.Socket s=new Socket(); s.connect(new InetSocketAddress(host.com, 3000)); Does anyone knows how to do this? Thanks Sandro -- You received

[appengine-java] Socket Connections / URLFetchService

2011-12-12 Thread Sandro Röder
Hi, is it possible to create socket like connections vie URLFetch service. I need a similar implantation to the following code: Socket s=new Socket(); int localPort=Integer.parseInt(HBCIUtils.getParam(client.connection.localPort,0)); if (localPort!=0) { s.setReuseAddress(true); s.bind(new