On Mon, 2007-02-12 at 18:30 -0500, Sumit Shah wrote:
> All,
>
> I would appreciate if someone could tell me how to do an HTTP Post using
> IO::Socket. I cannot use LWP. I have to manage it with plain Sockets.
>
> I am new to this and any help would be appreciated.
This will save your ass, just
Thanks Zentara. I have understood it. I am doing something similar. I
need to invoke a SOAP service using HTTP POST. I have gotten to a point
where it invokes the SOAP service but apparently my XML is not well
formed or I am not sending the right info in the header. For example I
am not sending
Hello,
Thanks for the replies. I am using Perl provided by Oracle's Application
Server. I am bound to it. LWP does not come standard with it. LWP
requires some pre-req libraries/packages which I am unable to install on
the platforms we are using. I felt may be I could achieve it with plain
s
>
>I would appreciate if someone could tell me how to do an HTTP Post using
>IO::Socket. I cannot use LWP. I have to manage it with plain Sockets.
>
Post with LWP::UserAgent and HTTP::Request is very convenient since both the
modules are current Perl's builtin modules.Please take a look at "per
> "Sumit" == Sumit Shah <[EMAIL PROTECTED]> writes:
Sumit> I would appreciate if someone could tell me how to do an HTTP Post
Sumit> using IO::Socket. I cannot use LWP. I have to manage it with plain
Sumit> Sockets.
You can *always* use LWP in any sane Perl setup, especially considering that