in reply to Re^2: how to upload a file to a secured website?
in thread how to upload a file to a secured website?
It looks as if the url you are entering, is redirecting you to another site. Maybe the proxy server is sending the message, have you added the proxy handling? You didn't post the code you are using.
Lwp works in a very straight forward manner, when the upload site redirects, or something else devious, you may need to use WWW::Mechanize.
The first thing I would try, is to use the URL you show above, as the upload URL, if you are not already. You can also try adding
You may need WWW::Mechanize$ua->requests_redirectable ( ['GET', 'HEAD', 'POST'] ) # or push @{ $ua->requests_redirectable }, 'POST';
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: how to upload a file to a secured website?
by KarthikK (Sexton) on Oct 17, 2007 at 15:41 UTC | |
by zentara (Cardinal) on Oct 17, 2007 at 17:32 UTC | |
|
Re^4: how to upload a file to a secured website?
by KarthikK (Sexton) on Oct 17, 2007 at 19:21 UTC | |
by zentara (Cardinal) on Oct 18, 2007 at 12:48 UTC |