I've got a problem with AXIS on Websphere.
I provide a simple webservice described in the server.wsdd file:
...
<service name="XYZService" provider="java:RPC" style="rpc" use="encoded">
<parameter name="className" value="com.xxx.service.XYZService"/>
<parameter name="allowedMethods" value="*"/>
</service>
...
The Application is running in a cluster of two servers.
One server generates the service's wsdl like this:
...
<wsdl:message name="validateRequest">
<wsdl:part name="person_id" type=
"soapenc:string"/>
<wsdl:part name="backlink" type=
"soapenc:string"/>
</wsdl:message>
...
The other one (with exactly the same sources and libraries) generates the following:
...
<wsdl:message name="validateRequest">
<wsdl:part name="person_id" type=
"xsd:string"/>
<wsdl:part name="backlink" type=
"xsd:string"/>
</wsdl:message>
...
I can't find any different server-settings at all.
Any ideas?