Try @WebParam
http://cwiki.apache.org/CXF20DOC/how-do-i-develop-a-service.html
Regards,
tog wrote:
When publishing a service using aegis, the name of the output message
is "return" when my code is doing something like:
double sum(double arg0, double arg1) {
return (arg0 + arg1)
}
I mean the wsdl is this:
<xsd:complexType name="addResponse">
<xsd:sequence>
<xsd:element name="return" type="xsd:double"/>
</xsd:sequence>
</xsd:complexType>
Is there a way to change the name - I would like it not to be a java
keyword :-) ?
Cheers