Re: Best way to Send Hash to a Socket

2004-05-07 Thread JupiterHost.Net
Wiggins d Anconia wrote: On Wed, 05 May 2004 11:38:33 -0500, [EMAIL PROTECTED] (Jupiterhost.Net) wrote: Hello list, To day I am trying to figure out the best way to send a hash to a socket and have the receiver be able to use it as a hash. The best way I've done so far is to Data::Dumper the

Re: Best way to Send Hash to a Socket

2004-05-07 Thread JupiterHost.Net
zentara wrote: On Wed, 05 May 2004 11:38:33 -0500, [EMAIL PROTECTED] (Jupiterhost.Net) wrote: Hello list, To day I am trying to figure out the best way to send a hash to a socket and have the receiver be able to use it as a hash. The best way I've done so far is to Data::Dumper the hash into

Re: Best way to Send Hash to a Socket

2004-05-06 Thread Wiggins d Anconia
> On Wed, 05 May 2004 11:38:33 -0500, [EMAIL PROTECTED] > (Jupiterhost.Net) wrote: > > >Hello list, > > > >To day I am trying to figure out the best way to send a hash to a socket > >and have the receiver be able to use it as a hash. > > > >The best way I've done so far is to Data::Dumper the has

Best way to Send Hash to a Socket

2004-05-05 Thread JupiterHost.Net
Hello list, To day I am trying to figure out the best way to send a hash to a socket and have the receiver be able to use it as a hash. The best way I've done so far is to Data::Dumper the hash into a string and send the string, then parse the string back into a hash on the other end. So clien