[httpclient] RE: Http Client- How to send and recieve Serialized Object using Http Client

2005-02-08 Thread Sanjeev Tripathi
Client- How to send and recieve Serialized Object using Http Client Assuming it's not just because of the typo in the content type (should be "application/octet-stream"), you could try base 64 encoding the object output stream, and then you can just use text/plain content type. O

[httpclient] RE: Http Client- How to send and recieve Serialized Object using Http Client

2005-02-07 Thread Sanjeev Tripathi
: Spam: RE: Http Client- How to send and recieve Serialized Object using Http Client Assuming it's not just because of the typo in the content type (should be "application/octet-stream"), you could try base 64 encoding the object output stream, and then you can just use text/plain c

RE: Spam: RE: Http Client- How to send and recieve Serialized Object using Http Client

2005-02-07 Thread Sanjeev Tripathi
TED] Sent: Monday, February 07, 2005 2:57 PM To: Jakarta Commons Developers List Subject: Spam: RE: Http Client- How to send and recieve Serialized Object using Http Client Assuming it's not just because of the typo in the content type (should be "application/octet-stream"), you could

[httpclient]RE: Spam: RE: Http Client- How to send and recieve Serialized Object using Http Client

2005-02-07 Thread Sanjeev Tripathi
8 February 2005 8:18 a.m. > To: commons-dev@jakarta.apache.org > Subject: Http Client- How to send and recieve Serialized Object using > Http Client > > > Hi, > > > > I am working on thick client proxy that will connect to servlet and > retrive and save dat

RE: Spam: RE: Http Client- How to send and recieve Serialized Object using Http Client

2005-02-07 Thread Sanjeev Tripathi
: Sharples, Colin [mailto:[EMAIL PROTECTED] Sent: Monday, February 07, 2005 2:57 PM To: Jakarta Commons Developers List Subject: Spam: RE: Http Client- How to send and recieve Serialized Object using Http Client Assuming it's not just because of the typo in the content type (should be "appl

RE: Http Client- How to send and recieve Serialized Object using Http Client

2005-02-07 Thread Sharples, Colin
8:18 a.m. > To: commons-dev@jakarta.apache.org > Subject: Http Client- How to send and recieve Serialized Object using > Http Client > > > Hi, > > > > I am working on thick client proxy that will connect to servlet and > retrive and save data to database. I am

Http Client- How to send and recieve Serialized Object using Http Client

2005-02-07 Thread Sanjeev Tripathi
Hi, I am working on thick client proxy that will connect to servlet and retrive and save data to database. I am using Http Client for communication. I am able to send string values using parameter in request as follows. //***