ID:               40071
 Comment by:       davidfelton at codemasters dot com
 Reported By:      ville at pmd dot fi
 Status:           No Feedback
 Bug Type:         SOAP related
 Operating System: Debian Linux
 PHP Version:      5.2.0
 Assigned To:      dmitry
 New Comment:

dmitry you're saying the server code is wrong, what's wrong with it?

Is the code you posted a correction or taken from the file linked in
the original post - the code is identical now but I can't tell if the
file has been changed since the original posting to be what you posted
as a correction, or if you are pointing out incorrect code.


Previous Comments:
------------------------------------------------------------------------

[2007-02-07 01:00:00] php-bugs at lists dot php dot net

No feedback was provided for this bug for over a week, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".

------------------------------------------------------------------------

[2007-01-30 08:57:20] [EMAIL PROTECTED]

You probably did somthing wrong. I verified this code before sending it
to you.

------------------------------------------------------------------------

[2007-01-26 17:52:34] ville at pmd dot fi

Even fixed as asked, the server still returns the same error.

------------------------------------------------------------------------

[2007-01-26 17:30:43] [EMAIL PROTECTED]

Fix your server code:

class testService {
  public function authUser($authToken) {
    return array(
      'firstName' => strtolower($authToken),
      'lastName' => strtoupper($authToken)
    );
  }
}

class testService2 {
  public function authUser($authToken) {
    $r = new objUserDetails();
    $r->firstName = strtolower($authToken);
    $r->lastName = strtoupper($authToken);
    return $r;
  }
}


------------------------------------------------------------------------

[2007-01-23 20:48:08] ville at pmd dot fi

The latest snapshot doesn't fix the problem, the returned error message
is still the same.

------------------------------------------------------------------------

The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
    http://bugs.php.net/40071

-- 
Edit this bug report at http://bugs.php.net/?id=40071&edit=1

Reply via email to