Link to home
Start Free TrialLog in
Avatar of usa4manu
usa4manu

asked on

pass a jList from an applet to a servlet

I'm currently building a jList in an applet and like to create a kind of report html page (in fact a table with the element of that jList) with a servlet.

How to pass the jList to the servlet?

Thx for the help from Belgium!
Avatar of ovidiucraciun
ovidiucraciun
Flag of United States of America image

you can serialize that list and
send it through a socket to that servlet.
Avatar of usa4manu
usa4manu

ASKER

In fact, I'm working now with a JTable and when I try to serialize the object with the command writeObject (Object) I have an "IO Exception: ToolTipManager$1".

ps: the JTable Object implements the Serialize Interface...

Have U an idea?
ASKER CERTIFIED SOLUTION
Avatar of ovidiucraciun
ovidiucraciun
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thx!