You are viewing a plain text version of this content. The canonical link for it is here.
Posted to soap-user@xml.apache.org by Tarun Garg <ta...@induslogic.com> on 2001/07/15 16:02:37 UTC

parameters as attribute.

Whenever you call a method in a deployed service, the parameters are passed
as values of elements named after the name of the parameter.
Something like
<AddNumbers>
 <number1>
 2
</number1>
<number2>
3
</number2>
</AddNumbers>

(of course you have a lot of namespacing as well as xsi:type attribute, that
I have not written here).

I wanted to ask, if the soap standards and/or Apache soap also permit
sending the parameters as attributes rather than elements ??
something like

<AddNumbers number1 ="2" number2 = "3"/>