how to send data to a URL?

2007-06-01 Thread vidals
I'm writing an XML function that will listen for requests for data and then respond with the data. Simple enough; however, the data needs to be sent to the URL specified in the request. For example, the resultant data may needed by www.123.com one time and www.abc.com another time. I use LWP all

how to send data to a URL?

2007-05-31 Thread vidals
I'm writing an XML function that will listen for requests for data and then respond with the data. Simple enough; however, the data needs to be sent to the URL specified in the request. For example, the resultant data may needed by www.123.com one time and www.abc.com another time. I use LWP all

Re: how to send data to a URL?

2007-05-31 Thread Andy Lester
On May 31, 2007, at 5:16 PM, vidals wrote: I use LWP all the time for requesting web pages, but can somebody provide some guidance as to how LWP can be used to send data? I'm confused. Use WWW::Mechanize, which is a wrapper around LWP and includes many useful examples of POSTing data. --

Re: how to send data to a URL?

2007-05-31 Thread Tim Allwine
Andy Lester wrote: On May 31, 2007, at 5:16 PM, vidals wrote: I use LWP all the time for requesting web pages, but can somebody provide some guidance as to how LWP can be used to send data? I'm confused. Use WWW::Mechanize, which is a wrapper around LWP and includes many useful examples of