In howmany ways applet-servlet communication can be done?
Answer Posted / janet
There are three ways to communicate from an applet to
servlet and they are :
a) HTTP Communication(Text-based and object-based)
b) Socket Communication
c) RMI communication
(u can say by using URL object open the connection to
server and get the InputStream from URL connection object)
Steps involved for applet-servlet communication:
1) Get the server URL
URL url=new URL();
2) connect to the host
URLConnection Con=url.openConnection();
3) Initialize the connection
Con.setUseCatches(false);
Con.setDoOutput(true);
Con.setDoInput(true);
4) Data will be written to a byte array buffer so that w
can tell the server the length of the data.
ByteArrayOutputStream byteout=new ByteArrayOutputStream();
5)Create the outputStream to be used to write the data to
the buffer.
DataOutputStream out=new DataOutputStream9byteout);
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What is the need of session tracking in web application?
What is the advantage of Servlets when compared with other server side technologies?
Is servlet thread safe?
What are the different methods of session management in servlets?
Explains the differences between context.getrequestdispatcher() and request.getrequestdispatcher()?
Explain in brief the directory structure of a web application?
What do you mean by cgi in servlet?
how many jsp scripting elements are there and what are those?
When a servlet accepts a call from a client, it receives two objects. What are they?
If a servlet is not properly initialized, what exception may be thrown?
What is MIME Type?
What are the steps involved in placing a servlet within a package?
What is ServletConfig object?
What is the main purpose of java servlets?
What is the major difference between servlet and applet?