Hello!
I'm trying to establish an applet-servlet communication where I use the Properties
object to pass parameters from the
applet to the
servlet!
The reason of using the Properties object is that I pass the password as a parameter and it's shown in the address bar of the servlet generated page!
The following works fine
The applet part
for which the servlet part is this
This works fine. But in the following combination of the applet-servet communication
the values of the Properties object are null!
Here is the applet part
And here is the doGet of the servlet in reply to the applet
The size of the the Properties object "table" is 0 in this case and the values are null!
Please help!
Thank you!