Logo 
Search:

Java Answers

Ask Question   UnAnswered
Home » Forum » Java       RSS Feeds
  Question Asked By: Sunil Garg   on Aug 29 In Java Category.

  
Question Answered By: Danny Perkins   on Aug 29

Actually, sending  data to the servlet is the same as if you were going to post
form data. You need to make an HTTP
request to the servlet and then deal with the response which comes back. You
can either do a GET request where all of
the request data is in the URL, but there are URL length limitations. You could
also do a POST request and encode the
data in the HTTP request body. This is probably the most common method.

Here is one article on this issue:

http://www.j-nine.com/pubs/applet2servlet/

Share: 

 

This Question has 1 more answer(s). View Complete Question Thread

 
Didn't find what you were looking for? Find more on Help with Applets and Servlets Or get search suggestion and latest updates.


Tagged: