I'm trying to use HTTP::Cookies to talk to a web application that follows the "looser" Netscape-style Cookie definition ...
2880
Kartik Subbarao
subbarao@...
Mar 2, 1998 12:20 am
I'm trying to use HTTP::Cookies to talk to a web application that follows the "looser" Netscape-style Cookie definition ...
2881
Kartik Subbarao
subbarao@...
Mar 2, 1998 12:20 am
I'm trying to use HTTP::Cookies to talk to a web application that follows the "looser" Netscape-style Cookie definition ...
2882
Kartik Subbarao
subbarao@...
Mar 2, 1998 12:20 am
Apologies for the duplicate messages -- I sent the first one from findmail, and got an error message, so tried again, but still got the same error message. So...
2883
Bill Mills-Curran
bcurran@...
Mar 2, 1998 2:40 am
Kartik, I can't comment on the HTTP::Cookies methods, but I have had good luck forming cookies with the methods in the CGI package. Bill...
2884
Matthew White
mwhite@...
Mar 3, 1998 7:28 am
I am trying to download a stack of pcx files (images) from a web server using lwp but the server tells me that their content-type is text/html. How can I get...
2885
Daniel Buenzli
buenzli@...
Mar 4, 1998 10:10 am
In LWP::Protocol::http::request, version 1.39 (12 Feb 98), response headers are processed by reading the first line (including '\015?\012') followed by all...
2886
Gisle Aas
gisle@...
Mar 4, 1998 3:59 pm
... It found some tags inside the table that it believes should not be allowed here. Then it terminates that table and the implicitly makes a new table when...
2887
Gisle Aas
gisle@...
Mar 4, 1998 3:59 pm
... LWP always downloads in binary form. Just ignore the content type from the server if you think you know better. Regards, Gisle...
2888
Gisle Aas
gisle@...
Mar 4, 1998 3:59 pm
... What does this say? perl -Mblib t/base/afm.t...
2889
Gisle Aas
gisle@...
Mar 4, 1998 4:39 pm
... Is domain=foo.bar.com supposed to mean that cookies should only be returned to host foo.bar.com or that both foo.bar.com and for instance xxx.foo.bar.com...
2890
Gisle Aas
gisle@...
Mar 5, 1998 12:32 am
... Is this legal HTTP? If it is, then this should work too: Proxy-Authenticate: NTLM, Basic realm="ftp.funet.fi" and this seems to conflict use of "," beween...
2891
Gisle Aas
gisle@...
Mar 5, 1998 12:32 am
Sorry about this long delay. I have now applied your patch to my version of the sources. Thanks! Regards, Gisle...
2892
Gisle Aas
gisle@...
Mar 5, 1998 12:32 am
... Since this is a badly formatted header I think it is reasonable for LWP to misparse it. A correct version would be: Www-authenticate: Basic realm="\"My...
2893
Gisle Aas
gisle@...
Mar 5, 1998 12:32 am
... Was the problem that the user/password prompt went to STDOUT? Perhaps a better fix would be to send prompts to STDERR? Regards, Gisle...
2894
Gisle Aas
gisle@...
Mar 5, 1998 12:32 am
... Thanks. I changed the patch into the following. I believe this is more efficient than using | inside the regex. Regards, Gisle Index: http.pm ...
2895
jianzhong ding
jding@...
Mar 5, 1998 3:40 am
2896
Dave Wolfe
dwolfe@...
Mar 5, 1998 3:40 am
[ Gisle Aas writes: ] ... Actually beta 3, but the same thing happens on my 1.2.4. ... No argument there. A little further research shows that NS sees it as: ...
2897
Gisle Aas
gisle@...
Mar 5, 1998 3:48 pm
... It looks to me as if you are talking to the server. You just have to tell it something it want to hear. Perhaps it needs a cookie? Perhaps it needs other...
2898
Doug Monroe
monroe@...
Mar 5, 1998 10:38 pm
... or...change the protocol to https ;-) Doug Monroe...
2899
Bob Webb
bob.webb@...
Mar 6, 1998 12:57 am
Forgive me for not posting to comp.lang.perl, I do not have access to newsgroups, they are blocked at my firewall. I installed the libwww pm without any...
2900
Rafael A. Calvo
rafa@...
Mar 6, 1998 3:32 am
Hi, I'm a newbie as well but this works (you should change the warn line): open(F,"$html_f") || (warn("Can't open $html_f\n") , next ); local($content) = <F>; ...
2901
Stas Bekman
sbekman@...
Mar 6, 1998 1:50 pm
Hi, We have a weird problem with LWP::UserAgent , LWP (5.20) The following snippet works OK! use LWP::UserAgent; my $ua=new LWP::UserAgent; ...
2902
Kartik Subbarao
subbarao@...
Mar 7, 1998 2:51 am
... When searching the cookie list for valid cookies, a comparison of the domain attributes of the cookie is made with the Internet domain name of the host...
2903
Stas Bekman
sbekman@...
Mar 8, 1998 10:27 am
Hi, Is there anybody here that can point me how to solve this problem? Am I doing something wrong? Any clues? Thank you! ...
2904
jianzhong ding
jding@...
Mar 9, 1998 11:24 pm
2905
Sanjay Kamath
skamath@...
Mar 10, 1998 5:13 am
Hi, I was trying to create a HTTP request w/ a value for a field called HTTP_X_UP_SUBNO. Is this code fragment right? Somehow doesn't seem to be working for...
2906
Don Goyette
dgoyette@...
Mar 10, 1998 8:16 am
Hello, The simple script listed below is being run from a browser for ease of use, thus the QUERY_STRING var. It employs several LWP module sub-modules in ...
2907
Don Goyette
dgoyette@...
Mar 10, 1998 10:34 pm
Hello all, Well, after going half nuts for the past 3 days, I finally found the "magic" combination that works for all text elements that do NOT have any HTML...
2908
Kingpin
mthurn@...
Mar 11, 1998 2:07 am
In light of the current "discussion", I am posting some code I wrote. I think it successfully demonstrates what Don Goyette is trying to do. I learned how to...