in reply to Re^2: How to change Accept-Language header with soap::lite
in thread How to change Accept-Language header with soap::lite
#!/usr/local/bin/perl -w use SOAP::Lite 'trace', 'debug', on_action => sub {sprintf '%s/%s', @_ +}; use SOAP::Transport::HTTP; my $client = SOAP::Lite ->readable(1) ->uri('https://www.venturetest.com') ->proxy('https://www.venturetest.com/getpdfservice/testgetpdf.asmx +') ; $client->TestGetPDF();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: How to change Accept-Language header with soap::lite
by burgerc (Novice) on Dec 19, 2013 at 19:39 UTC | |
by Anonymous Monk on Dec 19, 2013 at 20:11 UTC | |
by burgerc (Novice) on Dec 19, 2013 at 20:21 UTC | |
by Your Mother (Archbishop) on Dec 19, 2013 at 21:02 UTC | |
by Anonymous Monk on Dec 20, 2013 at 09:17 UTC |