in reply to Re^2: Reading SOAP formatted text sent via GET.
in thread Reading SOAP formatted text sent via GET.
Which version of perl are you running?
You can see an example of code at sub DebugCGI, basically
use CGI; Main( @ARGV ); exit( 0 ); sub Main { my $q = CGI->new; my $RequestXML = scalar $q->param('RequestXML'); ... print $header, $body; return; }
List of perl/CGI related reading materials
|
|---|