On 30/11/2008, Vishwas Babu <[EMAIL PROTECTED]> wrote:
> Hi Oleg,
>
>  Thanks for the reply, please find the log below
>
>  Thanks and Regards,
>  Vishwas
>
>

I could be wrong, but it looks to me as though the redirect for the
second POST is causing the problem.

The sequence is:

>> POST /ProductRegistration/registration?path=0:...
<< Location: https://sw.wilytech.com/ProductRegistration/registration?path=1
>> GET /ProductRegistration/registration?path=1

The GET is generated automatically by HttpClient when it sees the redirect.
[It is not allowed to resend the POST without user interaction]

It is likely that the server is only expecting a POST, and does not
react well to the GET.

You may be able to avoid the redirect by using ?path=1 in the POST.

If not, you will need to handle the redirect yourself, e.g. by
switching off automatic redirect handling.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to