in reply to How do you find out if your HTTP response succeeded via LWP?

man LWP tells you the response object has functions is_success and is_error. Is that what you need?

Abigail

Replies are listed 'Best First'.
Re: Re: How do you find out if your HTTP response succeeded via LWP?
by kleinbiker7 (Sexton) on Nov 14, 2002 at 17:03 UTC
    Abigail, I tried that, and it didnt work... The problem is that I dont seem to be calling the page properly, but i dont know how to fix it. Thanks. Robert
      Abigail gave you the answer to the question you asked. Why your application is getting the 500 response is another question. One thing that I notice is that you don't seem to be sending a content-type header. Try adding Content_type => 'application/x-www-form-urlencoded'

      Also, as Rich36 suggested, I'd replace the &cgi'httpize with uri_escape.

      sorry didn't see it was already replied