Welcome Guest, Not a member yet? Register   Sign In
CI SOAP Server Problem
#12

[eluser]abbasmn[/eluser]
this is my client:
Code:
<?php
/*
* Created on Oct 19, 2009
*
* To change the template for this generated file go to
* Window - Preferences - PHPeclipse - PHP - Code Templates
*/

if (!defined('BASEPATH')) exit('No direct script access allowed');
class Ws_client extends Controller
{
        function __construct()
        {
        session_start();
        parent::Controller();
                
        }
        
public function client_send_data()
{
    try{
    ini_set( 'soap.wsdl_cache_ttl' , 0 );
    $client = new SoapClient("http://localhost/Hello.wsdl",
    array('soap_version' => SOAP_1_2,'trace' => 1 ));

   echo("\nDumping client object functions:\n");
   var_dump($client->__getFunctions());

   $return = $client->__soapCall("hello",array("world"));
   echo("\nReturning value of __soapCall() call: ".$return);
    

  
      $return = $client->hello("World");
   echo("\nReturning value: ".$return);

      
  
   echo("\nDumping request headers:\n"
      .$client->__getLastRequestHeaders());

   echo("\nDumping request:\n".$client->__getLastRequest());

   echo("\nDumping response headers:\n"
      .$client->__getLastResponseHeaders());

   echo("\nDumping response:\n".$client->__getLastResponse());


}
catch (SoapFault $exception)
    {
    echo $exception;      
  }
}
}

?>


Messages In This Thread
CI SOAP Server Problem - by El Forum - 03-19-2010, 05:49 AM
CI SOAP Server Problem - by El Forum - 03-19-2010, 06:24 AM
CI SOAP Server Problem - by El Forum - 03-19-2010, 06:25 AM
CI SOAP Server Problem - by El Forum - 03-19-2010, 06:26 AM
CI SOAP Server Problem - by El Forum - 03-19-2010, 06:31 AM
CI SOAP Server Problem - by El Forum - 03-19-2010, 07:16 AM
CI SOAP Server Problem - by El Forum - 03-21-2010, 04:27 PM
CI SOAP Server Problem - by El Forum - 03-29-2010, 12:14 PM
CI SOAP Server Problem - by El Forum - 03-29-2010, 12:21 PM
CI SOAP Server Problem - by El Forum - 06-09-2010, 12:32 PM
CI SOAP Server Problem - by El Forum - 06-09-2010, 12:42 PM
CI SOAP Server Problem - by El Forum - 06-09-2010, 01:06 PM
CI SOAP Server Problem - by El Forum - 06-09-2010, 01:19 PM
CI SOAP Server Problem - by El Forum - 06-09-2010, 02:42 PM



Theme © iAndrew 2016 - Forum software by © MyBB