aspose file tools
The moose likes Servlets and the fly likes Problem while connecting to Servlet  Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Servlets
Reply Bookmark "Problem while connecting to Servlet  " Watch "Problem while connecting to Servlet  " New topic
Author

Problem while connecting to Servlet

ravi shankar
Greenhorn

Joined: Nov 27, 2001
Posts: 3
Hi,
I am getting problem when I am trying to connnect the servlet with stand alone java application using URLConnection.Here I Am sending the code and console output from JSWK server.Please give the solution.
thanks.
////////////////////////////////////////////////////
Client program

//////////////////////////////////////////////////////////////
Servlet program.
////////////////////////////////////////////////////////

/////////////////////////////////////////////////////////
console output is
/////////////////////////////////////////////////////////


[This message has been edited by Mike Curwen (edited November 27, 2001).]
P Kumar
Greenhorn

Joined: Nov 27, 2001
Posts: 4
Hi can any body give the suggestion to Ravi? because I am also interested to know about this.
thanks
Kumar
P Kumar
Greenhorn

Joined: Nov 27, 2001
Posts: 4
Can any body give the sooution for my problem?
ninad parkhi
Greenhorn

Joined: May 04, 2001
Posts: 25
Hi ,
Try this way but I am not sure whether this will work or not?
URL u = new URL("XXXX");
java.net.HttpURLConnection uConn =
(HttpURLConnection)u.openConnection();
uConn.setDoInput(true);
uConn.setDoOutput (true);
uConn.setUseCaches (false);
// uConn.setRequestMethod("POST");
// uConn.setRequestProperty ("Content-Type", "application/x-www-// form-urlencoded");
Let me know whether it worked or not
Thanks,
Ninad
P Kumar
Greenhorn

Joined: Nov 27, 2001
Posts: 4
Hi Ninad,
thank you for your suggestion.but I am getting same problem.Can you suggest any other solution.
Thanks and regards
Hari.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Problem while connecting to Servlet
 
Similar Threads
Can't get RequestDispatcher forward() method or response.sendRedirect() to work
RemoteException
problem with connect with URL
How to write to the servlet with standalone application
what does this Exception mean???thanx!@!!!