Hi all,

   I am learning Woden and I have simply copied the examples listed both
in the User Guide and in the distribution release notes - I noticed a few issues
with the examples:

DescriptionElement descElem = reader.readWSDL(wsdlurl2); // the <description> element

The above right hand side of the statement returns a Description and NOT a DescriptionElement
so the compilation fails. To fix it I used this instead:

Description descComp = reader.readWSDL(wsdlurl2); // the Description component, always returned DescriptionElement descElem = descComp.toElement(); // the <description> element, if required

Why is the original statement broken?

Also with these statements the last one fails on the faults[0]:
      InterfaceElement interfaceElem = interfaces[0];
InterfaceFaultElement[] faults = interfaceElem.getInterfaceFaultElements();
      XmlSchemaElement xsElem = faults[0].getElement();
To fix it I has to use:
          XmlSchemaElement xsElem = faults[0].getXmlSchemaElement();

I am wondering if the examples are stale or if I am missing something.

Thanks

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to