Hi,
even if this "forum" seems to be dead (am I the only one who is missing the old forum?), I will share my solution.
It is not enough to use type in Element-Tag and name in ComplexType. We have to separate them.
From
<xsd:element name="PROCESS_MESS_UPLOAD" type="PROCESS_MESS_UPLOAD"> <xsd:complexType name="PROCESS_MESS_UPLOAD"> ..... </xsd:complexType> </xsd:element>
To
<xsd:element name="PROCESS_MESS_UPLOAD" type="PROCESS_MESS_UPLOAD" /> <xsd:complexType name="PROCESS_MESS_UPLOAD"> ..... </xsd:complexType>
ComplexType is not a child of element tag anymore, but get refers via type and name attributes.
After this I was able to import it into NWDS and my message types get listed in datatypes.
Regards
Chris
Add comment