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 InetSocketAddress(localPort));
}

s.connect(new InetSocketAddress(parentPassport.getHost(),
                                            
parentPassport.getPort().intValue()));
i=s.getInputStream();
o=s.getOutputStream();

Does anybody know how to implement this via the URLFetchService

Thanks,
Sandro

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine-java/-/5pf68EJ9yigJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.

Reply via email to