#38869 [NEW]: incorrect SOAP request when operation does not require any arguments

Ask a Question related to PHP Bugs, Design and Development.

  1. #1

    Default #38869 [NEW]: incorrect SOAP request when operation does not require any arguments

    From: lindalj at yahoo-inc dot com
    Operating system: Linux
    PHP version: 5.1.6
    PHP Bug Type: SOAP related
    Bug description: incorrect SOAP request when operation does not require any arguments

    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/>

    --
    Edit bug report at [url]http://bugs.php.net/?id=38869&edit=1[/url]
    --
    Try a CVS snapshot (PHP 4.4): [url]http://bugs.php.net/fix.php?id=38869&r=trysnapshot44[/url]
    Try a CVS snapshot (PHP 5.2): [url]http://bugs.php.net/fix.php?id=38869&r=trysnapshot52[/url]
    Try a CVS snapshot (PHP 6.0): [url]http://bugs.php.net/fix.php?id=38869&r=trysnapshot60[/url]
    Fixed in CVS: [url]http://bugs.php.net/fix.php?id=38869&r=fixedcvs[/url]
    Fixed in release: [url]http://bugs.php.net/fix.php?id=38869&r=alreadyfixed[/url]
    Need backtrace: [url]http://bugs.php.net/fix.php?id=38869&r=needtrace[/url]
    Need Reproduce Script: [url]http://bugs.php.net/fix.php?id=38869&r=needscript[/url]
    Try newer version: [url]http://bugs.php.net/fix.php?id=38869&r=oldversion[/url]
    Not developer issue: [url]http://bugs.php.net/fix.php?id=38869&r=support[/url]
    Expected behavior: [url]http://bugs.php.net/fix.php?id=38869&r=notwrong[/url]
    Not enough info: [url]http://bugs.php.net/fix.php?id=38869&r=notenoughinfo[/url]
    Submitted twice: [url]http://bugs.php.net/fix.php?id=38869&r=submittedtwice[/url]
    register_globals: [url]http://bugs.php.net/fix.php?id=38869&r=globals[/url]
    PHP 3 support discontinued: [url]http://bugs.php.net/fix.php?id=38869&r=php3[/url]
    Daylight Savings: [url]http://bugs.php.net/fix.php?id=38869&r=dst[/url]
    IIS Stability: [url]http://bugs.php.net/fix.php?id=38869&r=isapi[/url]
    Install GNU Sed: [url]http://bugs.php.net/fix.php?id=38869&r=gnused[/url]
    Floating point limitations: [url]http://bugs.php.net/fix.php?id=38869&r=float[/url]
    No Zend Extensions: [url]http://bugs.php.net/fix.php?id=38869&r=nozend[/url]
    MySQL Configuration Error: [url]http://bugs.php.net/fix.php?id=38869&r=mysqlcfg[/url]
    lindalj at yahoo-inc dot com Guest

  2. Similar Questions and Discussions

    1. mx.rpc.soap::Operation::invokePendingCall error
      I am trying to access a wsdl file and getting following error. Can somebody please help me and tell me what this error means and how can I find out...
    2. #39121 [NEW]: Incorrect return array handling in non-wsdl soap client.
      From: sos at sokhapkin dot dyndns dot org Operating system: Gentoo linux PHP version: 5.1.6 PHP Bug Type: SOAP related Bug...
    3. Incorrect request to userForms
      I have a form on my website for people to subscribe to a mailing list and send comments all to my email address. It used to work just fine but now...
    4. Soap request with coldfusion
      Hello, I can do simple soap-request in coldfusion using cfscript and webservices. For example: <cfscript> ws = createObject("webservice",...
    5. Soap request
      How to invoke a web service, using the soap request protocol, without creating a Web reference to the service.??? Thanks. Mauri.-
  3. #2

    Default #38869 [Opn->Fbk]: incorrect SOAP request when operation does not require any arguments

    ID: 38869
    Updated by: [email]tony2001@php.net[/email]
    Reported By: lindalj at yahoo-inc dot com
    -Status: Open
    +Status: Feedback
    Bug Type: SOAP related
    Operating System: Linux
    PHP Version: 5.1.6
    New Comment:

    Please try using this CVS snapshot:

    [url]http://snaps.php.net/php5.2-latest.tar.gz[/url]

    For Windows:

    [url]http://snaps.php.net/win32/php5.2-win32-latest.zip[/url]




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

    [2006-09-18 16:57:51] 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/>


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


    --
    Edit this bug report at [url]http://bugs.php.net/?id=38869&edit=1[/url]
    tony2001@php.net Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139