Re: Send Request from One Server to Another Server

2008-09-11 Thread Youssef Mohammed
basically you'd better use a Http client library (like HttpClient ) that will make it easier. check this as starting point ... http://www.mail-archive.com/[EMAIL PROTECTED]/msg06270.html note that here they have the jsessionid known .. but in your case you will need to know that. I think the libra

Re: Send Request from One Server to Another Server

2008-09-11 Thread ANITA.2310
How can i achieve this? Youssef Mohammed wrote: > > make sure you are handing the session id at the very beginning the session > id is sent back in a cookie , you need to either send it back at any > request > (as cookie) or use URL rewriting to embed it in the request URL. > > On Fri, Sep 12,

Re: Send Request from One Server to Another Server

2008-09-11 Thread Youssef Mohammed
make sure you are handing the session id at the very beginning the session id is sent back in a cookie , you need to either send it back at any request (as cookie) or use URL rewriting to embed it in the request URL. On Fri, Sep 12, 2008 at 7:48 AM, ANITA.2310 <[EMAIL PROTECTED]> wrote: > > I hav