pro_java_server thread: Object Serialization
I read the matter on object serialization given in appendix B. I am trying
to pass an instance of a class to an applet from a servlet. But
unfortunately I am unable to do it. In have a class as follows
class Emp
{
int Id;
String Name;
int Age;
public void Emp(int i,String n,int a)
{
this.Id = i;
this.Name = n;
this.Age = a;
}
}
Can you help me?
Thanks in advance,
Ram.
|





