How can i call a servelt from a non-servlet(java aplication) pgm. Bcoz i want to use an object returned from the servelt context in my application(non-servlet).
Thanks in Advance
GK
-
Calling a Servlet from application (2 messages)
- Posted by: Kannan G
- Posted on: July 01 2005 13:45 EDT
Threaded Messages (2)
- calling sevlet from another app by raj patil on July 04 2005 02:02 EDT
- calling sevlet from another app by Kannan G on July 25 2005 17:22 EDT
-
calling sevlet from another app[ Go to top ]
- Posted by: raj patil
- Posted on: July 04 2005 02:02 EDT
- in response to Kannan G
use
java.net.URL; &
java.net.URLConnection;
simpllar to applet servlet communication...
open connection to servlet & send data & process it & get back the response.
hope this would help.
~Raj -
calling sevlet from another app[ Go to top ]
- Posted by: Kannan G
- Posted on: July 25 2005 17:22 EDT
- in response to raj patil
Thank you!