Re: cookies and web

2001-05-01 Thread C.J. Collier
Heya Jeff, You might consider HTTP::Cookies. You can use it with LWP by telling the useragent to use a new cookie object to grab cookies from the HTML headers. You'll get a lot more from perldoc HTTP::Cookies, but following is an example, Cheers, C.J. #!/usr/bin/perl -w use strict; u

RE: cookies and web

2001-05-01 Thread King, Jason
Jeff K.V. Bhavnanie writes .. >How do i go about accepting a cookie from a web login site? in a cookie jar >I use LWP to do a POST, but i can't login as the server >sends a cookie. Is there a generic Login perl script lines? > >Login to a web site, send username password, accept cookie >then th