After more face rolling, and reading through the xml traces/debug/Dumper output was able to track down my issues to oddness between .NET and SOAP::Lite, following code works around said oddities.
#!/usr/bin/perl -w
use SOAP::Lite 'trace', 'debug';
use Data::Dumper;
$GUID = '11111111-1111-1111-1111-111111111111';
$App = 'Test';
$ST = 'YOURST';
$s = SOAP::Lite
-> uri('http://support.dell.com/WebServices/')
->on_action( sub { join '', @_ } )
-> proxy('http://xserv.dell.com/services/assetservice.asmx')
;
$a = $s->GetAssetInformation(
SOAP::Data->name('guid')->value($GUID)->type(''),
SOAP::Data->name('applicationName')->value($App)->type(''),
SOAP::Data->name('serviceTags')->value($ST)->type(''),
);
print "blah:". Dumper($a->result)."\n";
~
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.