Wrox Home  
Search P2P Archive for: Go

  Return to Index  

pro_java_server thread: Object Serialization


Message #1 by "Ram Hardikar" <hardikar@c...> on Wed, 31 May 2000 5:11:47
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.

  Return to Index