Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6047757
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T07:23:09+00:00 2026-05-23T07:23:09+00:00

My SOAP server is (intended to be) setup with three operations: login, logout, and

  • 0

My SOAP server is (intended to be) setup with three operations: login, logout, and version.

The login function’s code is currently “faking” it at the moment, accepting two parameters, a username and password, automatically “authenticating” them by storing them in the function class’ private username and password variables. I have a session started at the entry point of the web service action, and when setting the function class in the SoapServer during initialization, I’m persisting connections as follows:

       $this->setClass('WebSvcSoapFunctions');
       $this->setPersistence(SOAP_PERSISTENCE_SESSION); 

When I create a SOAP CLIENT and call my service, regardless of which function is called, it appears that the version() function is always executed rather than the one called. I imagine this is probably due to the way my WSDL is written, but I can’t see a problem (i’m new)….

I have the following WSDL listening via a PHP SoapServer:

<?xml version="1.0" encoding="UTF-8"?>

<wsdl:types>

    <schema xmlns:rns="http://soap.jrimer-amp64/" xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://soap.jrimer-amp64/" version="1.0.0" elementFormDefault="unqualified" attributeFormDefault="unqualified">

        <complexType name="versionRequest">
        </complexType>

        <complexType name="versionResponse">
            <sequence>
                <element name="result" type="string" minOccurs="1"/>
            </sequence>
        </complexType>

        <complexType name="loginRequest">
            <sequence>
                <element name="username" type="string" use="required"/>
                <element name="password" type="string" use="required"/>
            </sequence>
        </complexType>

        <complexType name="loginResponse">
            <sequence>
                <element name="result" type="string" minOccurs="1"/>
            </sequence>
        </complexType>

        <complexType name="logoutRequest">
        </complexType>

        <complexType name="logoutResponse">
            <sequence>
                <element name="result" type="string" minOccurs="1"/>
            </sequence>
        </complexType>

    </schema>

</wsdl:types>


<wsdl:service name="XxxxxxSvc">

    <wsdl:port name="XxxxxxSvc-Endpoint0" binding="tns:XxxxxxSvc-Endpoint0Binding">
        <soap:address location="http://soap.jrimer-amp64/"/>
    </wsdl:port>

</wsdl:service>


<wsdl:portType name="portType">

    <wsdl:operation name="version">
        <wsdl:input message="tns:versionRequest"/>
        <wsdl:output message="tns:versionResponse"/>
    </wsdl:operation>
    <wsdl:operation name="login">
        <wsdl:input message="tns:loginRequest"/>
        <wsdl:output message="tns:loginResponse"/>
    </wsdl:operation>
    <wsdl:operation name="logout">
        <wsdl:input message="tns:logoutRequest"/>
        <wsdl:output message="tns:logoutResponse"/>
    </wsdl:operation>

</wsdl:portType>


<wsdl:binding name="XxxxxxSvc-Endpoint0Binding" type="tns:portType">

    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" />

    <wsdl:operation name="version">
        <soap:operation style="document" soapAction="http://soap.jrimer-amp64/"/>
        <wsdl:input>
            <soap:body use="literal" parts="parameters"/>
        </wsdl:input>
        <wsdl:output>
            <soap:body use="literal" parts="parameters"/>
        </wsdl:output>
    </wsdl:operation>

    <wsdl:operation name="login">
        <soap:operation style="document" soapAction="http://soap.jrimer-amp64/"/>
        <wsdl:input>
            <soap:body use="literal" parts="parameters"/>
        </wsdl:input>
        <wsdl:output>
            <soap:body use="literal" parts="parameters"/>
        </wsdl:output>
    </wsdl:operation>

    <wsdl:operation name="logout">
        <soap:operation style="document" soapAction="http://soap.jrimer-amp64/"/>
        <wsdl:input>
            <soap:body use="literal" parts="parameters"/>
        </wsdl:input>
        <wsdl:output>
            <soap:body use="literal" parts="parameters"/>
        </wsdl:output>
    </wsdl:operation>

</wsdl:binding>


<wsdl:message name="versionRequest">
    <wsdl:part name="parameters" element="ns0:versionRequest"/>
</wsdl:message>


<wsdl:message name="versionResponse">
    <wsdl:part name="parameters" element="ns0:versionResponse"/>
</wsdl:message>

<wsdl:message name="loginRequest">
    <wsdl:part name="parameters" element="ns0:loginRequest"/>
</wsdl:message>


<wsdl:message name="loginResponse">
    <wsdl:part name="parameters" element="ns0:loginResponse"/>
</wsdl:message>

<wsdl:message name="logoutRequest">
    <wsdl:part name="parameters" element="ns0:logoutRequest"/>
</wsdl:message>

<wsdl:message name="logoutResponse">
    <wsdl:part name="parameters" element="ns0:logoutResponse"/>
</wsdl:message>

My SOAP function class is as follows (included in my SOapServer via setClass()):

class WebSvcSoapFunctions
{
    private $username = ''; // username provided by the client during login() request
    private $password = ''; // password provided by the client during login() request

    /**
    * Handle a login request
    * 
    * @param string $user - Client's Username
    * @param string $pass - Client's Password
    */
    public function login($user,$pass)
    {
        $this->username = $user;
        $this->password = $pass;

        // should check for validity here, but for testing, return true.
        return 'Successful Login. Welcome, '.$user;
    }

    /**
    * Logs the client out.
    * 
    */
    public function logout()
    {
        $this->username = '';
        $this->password = '';
        $_SESSION = array();
        session_destroy();
        return 'Logged Out Successfully.';
    }
        /**
    * checks if the client has logged in successfully
    * 
    * @return bool - true=logged in, false = unauthenticated
    */
    private function isAuthenticated()
    {
        if (isset($this->username) && $this->username != '')
        {
            return true;
        }
        else
        {
            return false;
        }
    }

    /**
    * Returns the version of the SOAP Server to the requesting client
    * 
    */
    public function version()
    {
        if ($this->isAuthenticated())
        {
            return 'Affinegy Service v1.0.0';
        }
        else
        {
            return 'NOT AUTHORIZED.';
        }
    }   
}

My SOAP CLIENT test class is as follows:

ini_set("soap.wsdl_cache_enabled", "0");  
define('WSDL_URL','http://soap.jrimer-amp64/?wsdl');   
try
{ 
    $client = new SoapClient(WSDL_URL, array('trace'=>true));

    $request = 'version';
    $args = array();
    $SOAPResult = $client->$request($args); // call the SOAP Server's "version" function
    OutputLastRequestResponse($client, $request, $args, $SOAPResult);

    $request = 'login';
    $args['username'] = 'testuser';
    $args['password'] = '1234';
    $SOAPResult = $client->$request($args); // call the SOAP Server's "login" function
    OutputLastRequestResponse($client, $request, $args, $SOAPResult);

    $request = 'version';
    $args = array();
    $SOAPResult = $client->$request($args); // call the SOAP Server's "version" function
    OutputLastRequestResponse($client, $request, $args, $SOAPResult);

    $request = 'logout';
    $args = array();
    $SOAPResult = $client->$request($args); // call the SOAP Server's "logout" function
    OutputLastRequestResponse($client, $request, $args, $SOAPResult);

    $request = 'version';
    $SOAPResult = $client->$request($args); // call the SOAP Server's "version" function
    OutputLastRequestResponse($client, $request, $args, $SOAPResult);

}
catch (Exception $e)
{
    echo '<pre>FAILED: '.print_r($e,1).'</pre>'; // dump the client exception to screen

    OutputLastRequestResponse($client);
}

/**
* Displays the request and response of the test service call
* 
* @param SoapServer $client - Object of type SoapClient that does the request
* @param string $requested - name of the SOAP function called
* @param array $args - Arguments sent to the SOAP function
* @param string $returned - PHP readable value returned by the client calling the provided SOAP function
*/
function OutputLastRequestResponse($client, $requested = '', $args=array(), $returned='')
{
    echo '<h1>XXXXXXXX SERVICE SOAP SERVER TEST</h1>';
    echo 'Request: <pre>'.$requested.'</pre>';
    echo 'Request Arguments: <pre>'.print_r($args,1).'</pre>';
    echo 'Returned: <pre>'.$returned.'</pre>';
    echo 'Raw Request: <pre>'.htmlspecialchars($client->__getLastRequestHeaders());
    echo htmlspecialchars($client->__getLastRequest()).'</pre>';
    echo 'Raw Response: <pre>'.htmlspecialchars($client->__getLastResponseHeaders())."\n";
    echo htmlspecialchars($client->__getLastResponse()).'</pre>';
}

The results from the test class runs are as follows… Notice “NOT AUTHORIZED.” is the response to everything, indicating that ONLY the WebSvcSoapFunctions::version() function is running

Xxxxxx SERVICE SOAP SERVER TEST
Request:

version

Request Arguments:

Array ( )

Returned:

NOT AUTHORIZED.

Raw Request:

POST / HTTP/1.1 Host:
soap.jrimer-amp64 Connection:
Keep-Alive User-Agent: PHP-SOAP/5.2.10
Content-Type: text/xml; charset=utf-8
SOAPAction:
“http://soap.jrimer-amp64/&#8221;
Content-Length: 227

Raw Response:

HTTP/1.1 200 OK Date: Thu, 16 Jun 2011
19:43:32 GMT Server: Apache/2.2.3
(CentOS) X-Powered-By: PHP/5.2.10
Set-Cookie:
PHPSESSID=scbuin269990ahfargfq7k0972;
path=/ Expires: Thu, 19 Nov 1981
08:52:00 GMT Cache-Control: no-store,
no-cache, must-revalidate,
post-check=0, pre-check=0 Pragma:
no-cache Content-Length: 209
Connection: close Content-Type:
text/xml; charset=utf-8

NOT
AUTHORIZED.

Xxxxxx SERVICE SOAP SERVER TEST
Request:

login

Request Arguments:

Array (
[username] => jrimer
[password] => 1234 )

Returned:

NOT AUTHORIZED.

Raw Request:

POST / HTTP/1.1 Host:
soap.jrimer-amp64 Connection:
Keep-Alive User-Agent: PHP-SOAP/5.2.10
Content-Type: text/xml; charset=utf-8
SOAPAction:
“http://soap.jrimer-amp64/&#8221;
Content-Length: 298 Cookie:
PHPSESSID=scbuin269990ahfargfq7k0972;

usernamejrimerpassword1234

Raw Response:

HTTP/1.1 200 OK Date: Thu, 16 Jun 2011
19:43:32 GMT Server: Apache/2.2.3
(CentOS) X-Powered-By: PHP/5.2.10
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache,
must-revalidate, post-check=0,
pre-check=0 Pragma: no-cache
Content-Length: 209 Connection: close
Content-Type: text/xml; charset=utf-8

NOT
AUTHORIZED.

Xxxxxx SERVICE SOAP SERVER TEST
Request:

version

Request Arguments:

Array ( )

Returned:

NOT AUTHORIZED.

Raw Request:

POST / HTTP/1.1 Host:
soap.jrimer-amp64 Connection:
Keep-Alive User-Agent: PHP-SOAP/5.2.10
Content-Type: text/xml; charset=utf-8
SOAPAction:
“http://soap.jrimer-amp64/&#8221;
Content-Length: 227 Cookie:
PHPSESSID=scbuin269990ahfargfq7k0972;

Raw Response:

HTTP/1.1 200 OK Date: Thu, 16 Jun 2011
19:43:32 GMT Server: Apache/2.2.3
(CentOS) X-Powered-By: PHP/5.2.10
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache,
must-revalidate, post-check=0,
pre-check=0 Pragma: no-cache
Content-Length: 209 Connection: close
Content-Type: text/xml; charset=utf-8

NOT
AUTHORIZED.

Xxxxxx SERVICE SOAP SERVER TEST
Request:

logout

Request Arguments:

Array ( )

Returned:

NOT AUTHORIZED.

Raw Request:

POST / HTTP/1.1 Host:
soap.jrimer-amp64 Connection:
Keep-Alive User-Agent: PHP-SOAP/5.2.10
Content-Type: text/xml; charset=utf-8
SOAPAction:
“http://soap.jrimer-amp64/&#8221;
Content-Length: 227 Cookie:
PHPSESSID=scbuin269990ahfargfq7k0972;

Raw Response:

HTTP/1.1 200 OK Date: Thu, 16 Jun 2011
19:43:32 GMT Server: Apache/2.2.3
(CentOS) X-Powered-By: PHP/5.2.10
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache,
must-revalidate, post-check=0,
pre-check=0 Pragma: no-cache
Content-Length: 209 Connection: close
Content-Type: text/xml; charset=utf-8

NOT
AUTHORIZED.

Xxxxxx SERVICE SOAP SERVER TEST
Request:

version

Request Arguments:

Array ( )

Returned:

NOT AUTHORIZED.

Raw Request:

POST / HTTP/1.1 Host:
soap.jrimer-amp64 Connection:
Keep-Alive User-Agent: PHP-SOAP/5.2.10
Content-Type: text/xml; charset=utf-8
SOAPAction:
“http://soap.jrimer-amp64/&#8221;
Content-Length: 227 Cookie:
PHPSESSID=scbuin269990ahfargfq7k0972;

Raw Response:

HTTP/1.1 200 OK Date: Thu, 16 Jun 2011
19:43:32 GMT Server: Apache/2.2.3
(CentOS) X-Powered-By: PHP/5.2.10
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache,
must-revalidate, post-check=0,
pre-check=0 Pragma: no-cache
Content-Length: 209 Connection: close
Content-Type: text/xml; charset=utf-8

NOT
AUTHORIZED.

Any ideas what’s going on?

NOTE: I notice that if I simply comment out the definition in the WSDL for the VERSION function that the next defined function becomes the “always called” function (login)… What do I have configured wrong in that WSDL?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T07:23:10+00:00Added an answer on May 23, 2026 at 7:23 am

    Yeah, it was the WSDL, I completely have it misdefined… Restructured the WSDL and it fields requests correctly now…

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm currently trying to set up a SOAP-server using the following code. server.php <?php
Does WebAPI support SOAP? I'm trying to write a SOAP Server in MVC4 and
In the project I am working I have deployed a SOAP server using Deployment
I am trying to post to my own test soap server (C#) with Android
I'm accessing http://graphical.weather.gov/xml/SOAP_server/ndfdXMLserver.php using code generated by http://sudzc.com The SOAP message is being sent
errorString=AxisFault\n faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.generalException\n faultSubcode: \n faultString: My Error\n faultActor: \n faultNode: \n faultDetail: \n
I would like to enable SOAP on my PHP5/Centos/Apache server. I have full access
I am trying to do a SOAP request but the server is returning an
yes my application server runs on https. Client is asking to change the soap
All, Atlast had our admin install the PEAR SOAP module on our apache server.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.