Hi,
I am designing an applet servlet communication application. I have an applet that connects to the servlet to exchange information.
I am trying to do the following in the servlet to get ObjectInputStream of the client and it hangs there and then returns the client with "Response code 500".
ObjectInputStream oas = new ObjectInputStream(httpreq.getInputStream());
Can someone please tell me whats going on. I am trying to send a serialized object back and forth. I can read anything the servlet sends to the applet, but I am having trouble reading from the applet to the servlet.
Please help.
Regards,
guna
I am designing an applet servlet communication application. I have an applet that connects to the servlet to exchange information.
I am trying to do the following in the servlet to get ObjectInputStream of the client and it hangs there and then returns the client with "Response code 500".
ObjectInputStream oas = new ObjectInputStream(httpreq.getInputStream());
Can someone please tell me whats going on. I am trying to send a serialized object back and forth. I can read anything the servlet sends to the applet, but I am having trouble reading from the applet to the servlet.
Please help.
Regards,
guna