Hi,
> The url length is about 6,350 bytes, which I'd expect
> wouldn't be a problem for a POST.
Whether the request is a GET or POST doesn't affect whether the length
of the URL is limited. The difference between GET and POST is that
with a GET, you encode all parameters in the URL; with a POST, you
send them in the request body, not the URL. So the URL length limit
applies (this is largely the original reason for POST), it's just that
you don't care because the parameters are being sent separately and so
the URL is usually fairly short.
So: Are you encoding a really long URL in your code? If so, you may
want to put those parameters in the body instead. If you think you're
putting them in the body already, probably best to post a snippet of
code so the folks here can see if they can see anything.
Hope this helps,
--
T.J. Crowder
tj / crowder software / com