Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
Java-SCA-1.6.1
-
None
-
None
Description
I have a problem when I let tuscany generate the wsdl for a service.
Namespace prefix for the attribute "base" is missing.
If I have an object that extends another object, the schema generated
should be:
...
<xs:complexType name="myObjChild">
<xs:complexContent>
<xs:extension base="tns:myObj">
...
but i got
...
<xs:complexType name="myObjChild">
<xs:complexContent>
<xs:extension base="myObj">
...