--- Francois Piette <[EMAIL PROTECTED]> a
�crit:
> > but i'm blocked my javacode
> 
> And what is your problem/question ?

My question is: I found a way to send an
object/structure(serializable) with socket in java
and now I want a technic to receive this object with
socket in a delphi application

javacode:
Socket s = new Socket("localhost",2002);
OutputStream os = s.getOutputStream();
ObjectOutputStream oos = new
ObjectOutputStream(os);
testobject to = new testobject(1,"object from
client");
oos.writeObject(to);

thanx


        

        
                
_____________________________________________________________________________ 
D�couvrez le nouveau Yahoo! Mail : 1 Go d'espace de stockage pour vos mails, 
photos et vid�os ! 
Cr�ez votre Yahoo! Mail sur http://fr.mail.yahoo.com

_______________________________________________
Delphi mailing list -> [email protected]
http://www.elists.org/mailman/listinfo/delphi

Reply via email to