The Artima Developer Community
Sponsored Link

Web Services Forum
wsdl parsing

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
padma gvs

Posts: 2
Nickname: gvspadma
Registered: Sep, 2007

wsdl parsing Posted: Sep 18, 2007 3:55 AM
Reply to this message Reply
Advertisement
I have some code which parses wsdl . But how ever incase of some complex wsdl parsing is failing . If i make some changes to wsdl its able to parse .wanted to know the complex wsdl i am using is as per standards.

for example
in schema section i have something defined like this

<xsd:complexType name="CallTermType" abstract="true"/> which is used in later sections as
<xsd:complexType name="EndOfPage">
<xsd:complexContent>
<xsd:extension base="CallTermType">
<xsd:attribute name="continueFrom" type="xsd:string"/>
</xsd:extension>
</xsd:complexContent>


But how ever with my current code i have make some changes in wsdl , add some attribute

<xsd:complexType name="CallTermType" abstract="true">
<xsd:complexContent>
<xsd:attribute name="CIds" type="xsd:string"/>
</xsd:complexContent>
</xsd:complexType>

Is the line <xsd:complexType name="CallTermType" abstract="true"/> adheres to standard if so I need to make some changes in my code as i need to parse wsdl adhering to standards <xsd:complexType name="CallTermType" abstract="true"/>

Topic: wsdl standards Previous Topic   Next Topic Topic: passing String array from Java to Stored Procedure in Oracle

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use