Hammy has asked for the wisdom of the Perl Monks concerning the following question:
This error happens during the submission of the service so it is not ever getting to the service.SOAP::Transport::HTTP::Client::send_receive: 500 (Internal Server Erro +r) configure certs failed: failed to load /usr/local/certs/staging.ce +r:
Here is the code that I am using to call the service:
Does anyone have a clue where I can go to find out what I might be doing incorrectly? Thanks in advance.$ENV{HTTPS_CERT_FILE}= '/usr/local/certs/staging.cer'; $ENV{HTTPS_KEY_FILE} = '/usr/local/certs/staging.pfx'; use XML::Simple; use SOAP::Lite +trace; my $data = SOAP::Data->name('data' => "$xml")->type('string')->uri('') +; my $s = SOAP::Lite -> uri ('http://my.site.com/SoapService') -> proxy ('https://stagingdi.site.com/SoapService/SoapService.asmx') -> on_action(sub{join '/', @_}) -> on_fault(sub{}); $result = $s->PerformUpdate($data)->result;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: SOAP and class1 cert
by idsfa (Vicar) on Aug 24, 2005 at 15:58 UTC | |
by Hammy (Scribe) on Aug 24, 2005 at 17:56 UTC | |
by cbrandtbuffalo (Deacon) on Aug 24, 2005 at 20:46 UTC | |
by Hammy (Scribe) on Aug 24, 2005 at 20:51 UTC | |
by cbrandtbuffalo (Deacon) on Aug 25, 2005 at 19:51 UTC | |
by Hammy (Scribe) on Aug 25, 2005 at 15:59 UTC |