In howmany ways applet-servlet communication can be done?
Answer / 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 |
Does servlet have main method?
Why is init() method is used in servlets?
What are the types of servlet?
What is httpservlet class?
can u give some realtime example in ploymorphism? and inheritance?
When we don't write any constructor for the servlet, how does container create an instance of servlet?
What is meant by servlet? What are the parameters of the service method?
Why servlet is faster than jsp?
What is difference between PrintWriter and ServletOutputStream?
What are the difference between session and cookies in servlet? Explain
Which http method is said to be non-idempotent and idempotent?
what is a session object?