Forums Register Login

How Applet communicates with the Servlet?

+Pie Number of slices to send: Send
Hi,
Someone please tell me , how to make applet to communicate with Servlet. please give me a sample to explain. please.
meng
+Pie Number of slices to send: Send
I'm moving this to the "Applet" forum.
+Pie Number of slices to send: Send
In the Applet if you created a button then the actionPerformed
for the button can contain
URL urlobj=new URL("webserver/servletpath");
Try this and do get back
Suneel
+Pie Number of slices to send: Send
hi
I know one way how the communication works. It is something like this:
<pre><code>
//create URL for get and pass name=value pair if you need to
String serverurl=serveraddress+"?name=value&name=value";
URL url=new URL(getDocumentBase(),serverurl);
URLConnection connect=url.openConnection();
//for writing through post enter the date in the body
DataOutputStream out=new DataOutputStream(con.getOutputStream());
//optional
con.setDoInput(true);
con.setDoOutput(true);
con.setUseCaches(false);
con.setRequestProperty("Content-Type","application/x-www-form-urlencoded");
//bytes is an array of byte
out.writeBytes(bytes);
out.flush();
out.close();
//for reading from the servlet
InputStram in=con.getInputStream();
</code></pre>
see the applet-servlet communication chapter in O'reilly's Servlet Programming for more details.
bye
Tanveer
+Pie Number of slices to send: Send
Hanmeng,
Please be sure to register with a proper name.
"hanmeng" does not follow the conventions.
See here for details: http://www.javaranch.com/name.jsp
If you do not register properly, your account will be disabled.
I would hate to see that happen.
Thank you.
Stephanie
Are we home yet? Wait, did we forget the tiny ad?
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com


reply
reply
This thread has been viewed 668 times.
Similar Threads
Applet Servlet Communication
Uploading Applet
JSP
help in assignment
Urgent!!
More...

All times above are in ranch (not your local) time.
The current ranch time is
Mar 28, 2024 13:50:47.