Hello,
I'm having trouble with creating C++ sources for the WSDL for a project I'm
starting on (using Axis C++ 1.5). The wsdl is rather complex, including lots
of xsd-schemas and working with references, but I managed to reproduce the
problem with some small changes to the ref.wsdl example (attached).
After these change, WSDL2Ws produces the following output:
ignoring anonymous type >intComp
ignoring anonymous type >intItem
Code generation completed.
And in the resulting hpp-file, you see invalid stuff like:
STORAGE_CLASS_INFO >intItem echoInt(>intComp* Value0);
This looks more or less the same problem as in AXISCPP-753, but that issue
only talks about complex types. Here, the problem also exists with simple
types defined as
<element name="intItem">
<simpleType><restriction
base="int">...</restriction></simpleType>
</element>
Instead of the default in the original ref.wsdl: <element name="intItem"
type="int" />
Is there any way around this problem?
Kind Regards,
Iwan Tomlow