php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #38869 incorrect SOAP request when operation does not require any arguments
Submitted: 2006-09-18 16:57 UTC Modified: 2006-09-26 01:00 UTC
Votes:1
Avg. Score:1.0 ± 0.0
Reproduced:0 of 0 (0.0%)
From: lindalj at yahoo-inc dot com Assigned:
Status: No Feedback Package: SOAP related
PHP Version: 5.1.6 OS: Linux
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: lindalj at yahoo-inc dot com
New email:
PHP Version: OS:

 

 [2006-09-18 16:57 UTC] lindalj at yahoo-inc dot com
Description:
------------
When I call a SOAP operation that does not require any arguments, the body of the request only contains <Body/>, and does not mention the operation name, so the server does not know which operation to invoke.

Reproduce code:
---------------
<message name="EmptyMessage" />
<message name="MyResponseMessage">
  <part name="response" element="..." />
</message>

<portType ...>
  <operation name="MyOperation">
    <input message="EmptyMessage>
    <output message="MyResponseMessage">
  </operation>
</portType>


Expected result:
----------------
<Body>
  <MyOperation></MyOperation>
</Body>


Actual result:
--------------
<Body/>

Patches

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2006-09-18 17:06 UTC] tony2001@php.net
Please try using this CVS snapshot:

  http://snaps.php.net/php5.2-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php5.2-win32-latest.zip


 [2006-09-26 01:00 UTC] 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".
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sun Sep 08 01:01:28 2024 UTC