in reply to is winproxy the problem? send additional header info?
in thread LWP, extract_cookies, etc.
In you code you will have to replace$request->header(Header => 'Value');
with$ua->request(POST ...);
BTW you don't have to insert header User-agent. LWP sends it itself. See documentation for method agent in LWP::UserAgent.my $request = POST ...; $request->header(Header => 'Value'); ... $us->request($request);
P.S. Post full debug logs here. Maybe you have overlooked anything important there.
--
Ilya Martynov
(http://martynov.org/)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Full LWP debug log
by inblosam (Monk) on May 24, 2002 at 01:32 UTC | |
One thing I can see is the "no proxy" message, but I don't know what that means or any resolution. THANKS!!
I appreciate all your help! Michael Jensen michael at inshift.com http://www.inshift.com | [reply] [d/l] |
by inblosam (Monk) on May 24, 2002 at 09:31 UTC | |
Thanks to everyone (especially IlyaM!) for their help! Michael Jensen michael at inshift.com http://www.inshift.com | [reply] [d/l] |
by IlyaM (Parson) on May 24, 2002 at 10:52 UTC | |
-- | [reply] |