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!

WSDL2Java problem using Axis1.4

843833Nov 4 2008
I am using Axis 1.4 and JDK 1.5. When I generated Java classes, I see my response type is incomplete. It is missing some fields

I get only RESP-RATE, and RESP-KEY fields in generated Response Java class but it is missing SAVE-STAT and CTRL-TEXT2. Is there any issue with this WSDL Response fields?

thanks for your help.
<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:sWDVANN="http://WDV01ANN.DivAnnInq.x4mlsoa.com/CA/DV01ANSR/WDV01ANN" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy/" xmlns:p="http://DivAnnInq.x4mlsoa.com/CA/DV01ANSR" targetNamespace="http://DivAnnInq.x4mlsoa.com/CA/DV01ANSR" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://schemas.xmlsoap.org/wsdl/"> 

<types>
<s:schema elementFormDefault="qualified" targetNamespace="http://WDV01ANN.DivAnnInq.x4mlsoa.com/CA/DV01ANSR/WDV01ANN">
<s:element name="WDV01ANN">
<s:complexType>
<s:sequence>
<s:element maxOccurs="1" minOccurs="0" name="DIVD-USER-ID" type="s:string"></s:element>
<s:element maxOccurs="1" minOccurs="0" name="FILLER" type="s:string"></s:element>
<s:element maxOccurs="1" minOccurs="0" name="CLIENT-NUM" type="s:string"></s:element>
</s:sequence>
</s:complexType>
</s:element>

<s:element name="WDV01ANNResponse">
<s:complexType>
<s:sequence>
<s:element maxOccurs="1" minOccurs="1" name="DFHCOMMAREA">
<s:complexType>
<s:sequence>
<s:element maxOccurs="15" minOccurs="0" name="DV01-RESP-ANN">
<s:complexType>
<s:sequence></s:sequence>
<s:attribute name="RESP-RATE" type="s:string"></s:attribute>
<s:attribute name="RESP-KEY" type="s:string"></s:attribute>
</s:complexType>
</s:element>
</s:sequence>
{color:#ff0000}*<s:attribute name="SAVE-STAT" type="s:string"></s:attribute>*
*<s:attribute name="CTRL-TEXT2" type="s:string"></s:attribute>*{color}
</s:complexType>
</s:element>
</s:sequence>
</s:complexType>
</s:element>
</s:schema> 
</types>

<message .....message>
<message ...message>
<portType ...">
<operation ...">
<input message..."/>
<output message..."/>
</operation>
</portType>

<binding name=".....</binding>

<service name="....</service>
</definitions>
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Dec 2 2008
Added on Nov 4 2008
0 comments
239 views