Jump to content

gork4life

Members
  • Posts

    12
  • Joined

  • Last visited

Everything posted by gork4life

  1. Ok thanks I'm tring to create a webservice in php. My servercode is <?php ini_set('soap.wsdl_cache_enabled',0); ini_set('soap.wsdl_cache_ttl',0); $soap_server = new SoapServer('Notification.wsdl'); $soap_server->addFunction('Notify'); function Notify($message) { return array('message' => $message); } $soap_server->handle(); ?> And I'm trying to create a client for the service using this code <?php include 'soap_server.php'; $soap_client = new SoapClient('https://localhost:8888/Soap/Notification.wsdl', array( 'proxy_host' => 'localhost', 'proxy_port' => '8888', 'local_cert' => 'APX_WS_API1.cer' )); try{ $result = $soap_client->__soapCall('Notify',array('message' => 'Hello World')); echo $result; }catch(SoapFault $e){ echo "Error: " . $e->faultcode; } ?> The problem is when I run this I get could not connect to host error. If I can do this with JSONP. How can I do this with the wsdl file that I have to use? Please help?
  2. I'm new to soap and webservices , and wanting to know do I have to use soap with a wsdl file, or can I use something else like json?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.