URLConnection

1999-08-13 Thread Hicham Mouline
Hi, I need to make the browser go to another URL from the applet being viewed, so I use the showDocument method. But the URL I want to visit is a CGI script using the POST method. As I want to pass parameters to that script, I need an output stream to the URL connection. So I use URLconnection

Re: URLConnection

1998-09-24 Thread Christopher Hinds
l = new URL("http://" + commandUrlSpec + "/servlet/" + functionTarget ); System.out.println("-- Created URL Obj from command str: " + url.toString() ); try { // execute the request and get the response from // the server URLConnection urlConnection =

URLConnection

1998-09-24 Thread John Baker
Hiya, I've been messing about with firewall tunneling recently, but am having massive problems with URLConnection. It seems that there is one combination of sequence of events and streams used which actually makes it work.. take the Post method for example.. the online docs say the client s