Skip to Main Content

Java EE (Java Enterprise Edition) General Discussion

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Axis WSDL - soapenc:string vs. xsd:string

843833Dec 14 2005 — edited Sep 12 2006
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?
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Oct 10 2006
Added on Dec 14 2005
7 comments
1,654 views