WAMPServer craahes on wsdl load at https:// -


i've downloaded wampserver apache/2.4.4 (win64) openssl/1.0.1g php/5.4.12. not standard download, original openssl version old.

i'm trying create new soapclient, when wsdl @ ssl url apache crashes no error.

$wsdl = 'https://www.undisclosedlocation.com/wsdl/mywsdl.wsdl"; $sclient = new soapclient($wsdl,array('trace'=>1));

no hits, no runs, no errors. is: connection reset connection server reset while page loading.

on browser. in debugger "session prematurely finished"

the wsdl isn't available on url without ssl, if copy local location works, namespaces off.

i'm using self-signed certificate , 1 more error.

[sun apr 13 22:45:50.192400 2014] [ssl:warn] [pid 19:tid 76] ah01909: rsa certificate configured mydomain:443 not include id matches server name

it seems problem certifcate. there @ leas 2 problems:

  1. self signed certificate, not trusted client
  2. the certificate doesn't contain dns name of website

most of systems discard connection when 1 of errors occurs.

try add following setting before:

$context = stream_con**strong text**text_create(array(     'ssl' => array(         'verify_peer' => false,         'allow_self_signed' => true      ) )); 

see following stackoverflow question: disable certificate verification in php soapclient


Comments

Popular posts from this blog

javascript - jquery or ashx not working -

opencv - DataType<cv::detail::deriv_type>::depth what is it used for -

python 3.x - Mapping specific letters onto a list of words -