Hello Timo,

> request failed: URI too long (longer than 8190)
> 
> Google now tells me, that this only happens using the "GET" method,
> because with GET the length of an URL is limited.

If you do it right, it happens only with the GET method.

>       HttpMethod method = new PostMethod(url);
>       method.setQueryString(urlParams);

If you want to post your data in the message body, don't
add it to the URL query string. Add it as parameters.

cheers,
  Roland


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

Reply via email to