Hello all,
I have a issue with Perl that I can not find any information on and I'm hoping someone has some info that could set me in the correct direction. I have a soap client (using Soap Lite) that I am using that is accessing a .NET service. The .NET service is checking my certificate from my server. I physicaly sent them the public part of the cert for them to register with the .NET service. I don't know anything about .NET, but I assume they set up their service to say only accept requests that come with this certificate attached. I have no idea how to attach the certificate. My Soap is quite simple
use SOAP::Lite +trace;
my $s = SOAP::Lite
-> uri('https://www.webmdhealth.com/SoapService/SoapService')
->proxy('https://stagingdi.webmdhealth.com/SoapService/SoapService.
+asmx')
-> on_action(sub{sprintf '%s', @_ });
my $data = SOAP::Data->name('data' => '<some XML data>')->type('string
+')->uri('https://www.webmdhealth.com/SoapService/SoapService');
$result = $s->PerformUpdate($data)->result;
Does my question make any sense? If it does, does anyone know if I need some kind of module or something else to force the header to go. I am calling the Soap Service from the server that houses the SSL cert in question. Thanks.
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.