kellyclauson wrote:
> > Notice it does not nest the <aValue> element inside the operation.
> > In fact there is no element corresponding to the operation. Why?
>
The short answer is "because you told it not to." :)
<soap:binding transport="http://schemas.xmlsoap.org/soap/http
<http://schemas.xmlsoap.org/soap/http>" style="document" />
The <soap:body use="literal" />
The document/literal style means use the message exactly as you define
it. If you want it to be automatically wrapped in
mymethod/mymethodResponse elements, you'll probably want RPC/literal, or
RPC/encoded. This page explains the differences in more detail:
http://www.ibm.com/developerworks/webservices/library/ws-whichwsdl/
Jason