A
Angelo Marchionni
I m trying to send data from applet to servlet in this way
ObjectOutputStream outputToServer = new
ObjectOutputStream(servletConnection.getOutputStream());
outputToServer.writeObject(user);
outputToServer.flush();
outputToServer.close();
I expect data goes to doPost method of the servlet.
But when I execute the above portion of the code just the doPost
method is not called.
What do I do wrong ?
Thanks
ObjectOutputStream outputToServer = new
ObjectOutputStream(servletConnection.getOutputStream());
outputToServer.writeObject(user);
outputToServer.flush();
outputToServer.close();
I expect data goes to doPost method of the servlet.
But when I execute the above portion of the code just the doPost
method is not called.
What do I do wrong ?
Thanks