Hi,
Is there a way to tell CXF to ignore the names of method parameters? I'm trying to get it to work with another soap library that is agnostic to parameter names. This causes trouble when the parameter name changes and I am not aware that it was changed. As an example, I want this SOAP message <ns1:getVersion xmlns:ns1="http://soap.example.com/"> <in0>100018</in0> </ns1:getVersion> and this SOAP message <ns1:getVersion xmlns:ns1="http://soap.example.com/"> <arg0>100018</arg0> </ns1:getVersion> to be both recognized and handled properly. Is this possible? Thanks, John
