Summary:
Is there a way to force the built in SoapClient-class in PHP to connect over HTTPS to a server with an invalid certificate?

Why would I want to do that?
I have deployed a new application on a server that has no DNS entry or certificate yet. I want to try connecting to it with a SoapClient before setting up the DNS entry and fixing the certificate, and the most reasonable way to do this seems to be to just make the client ignore the certificate during testing.

Don't I realise that this is a huge security risk?
This is only for testing. When the service goes into production, there will be a valid certificate in place, and the client will be forced to validate it.

link|improve this question

i'm really interested if that idea with stream_context_create() did work for you. if you had to change something, please let us know so that others can take advantage of this, too. – Kaii Dec 13 '11 at 7:49
i'm also interested if the suggested solution worked – Gabriel Croitoru Dec 21 '11 at 17:46
feedback

1 Answer

up vote 1 down vote accepted

this approach may be worth a try ..

SoapClient takes a stream context in its parameters, which you can create yourself. that way you can control almost every aspect of your transport layer.

UNTESTED code idea:

$context = stream_context_create(array(
    'ssl' => array('verify_peer' => 'false')
));
$client  = new SoapClient(null, array( 
    'location' => 'https://...',
    'uri' => '...', 
    'stream_context' => $context));

some docs:

http://php.net/stream_context_create

http://php.net/manual/en/context.http.php

http://php.net/manual/en/context.ssl.php

link|improve this answer
Unfortunately this does not seem to work, and the verify_peer option defaults to false already (php.net/manual/en/context.ssl.php). – zpon Feb 29 at 16:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.