Share

NuSOAP - SOAP Toolkit for PHP

Subscribe

phpNusoap client -> php5 Server

You are viewing a single message from this topic. View all messages.

  1. 2009-11-13 12:07:42 UTC

    I know the thread's old but, here's my .20

    after declaring:

    $client = new SoapClient(...[snipped]...)
    try{
        echo "<pre>\n";
    

    You should instead, use:

    $client = new nusoap_client('WSDL_URL_GOES_HERE', "true");
    try{
        echo "<pre>\n";
    

    oh and before you call a method, you should also be aware that you have to call the proxy, like this:

    $proxy = $client->getProxy();
    $yourResult = $proxy->RegisteredWSMethodGoesHere("Some_Argument_If_Needed");
    

    Hope this helps somene...

    Carlos

< Previous | 1 | Next >

Add a Reply

This forum does not allow anonymous participation.

Log in to add a reply. Not registered? Create an account to participate and receive email updates when replies are posted to this topic.