in reply to HTTP Post with more than 256 chars

You're confusing and HTTP POST and HTTP GET. A GET request is done via URLs, and is limited in length. What you need to do is to synthesize a POST. Consult the LWP documentation for an example.

Replies are listed 'Best First'.
Re: Re: HTTP Post with more than 256 chars
by Fletch (Bishop) on Mar 22, 2002 at 04:07 UTC

    Specifically perldoc lwpcook, under the surprisingly aptly named section POST.