我想从WSDL生成Java类。我正在一个ant任务中调用wsdl2java。命令行看起来像这样:
java -cp ... org.apache.axis2.wsdl.WSDL2Java -o generated_dir -S . -R . -l java -p "com.make.me.rich" -d adb -or --noBuildXML -uri MakeMeRich.wsdl
MakeMeRich.wsdl包含来自Micrsosoft的内联架构,例如:
<xsd:schema elementFormDefault="qualified" targetNamespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns:tns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<xsd:complexType name="ArrayOfint">
<xsd:sequence>
<xsd:element minOccurs="0" maxOccurs="unbounded" name="int" type="xsd:int" />
</xsd:sequence>
</xsd:complexType>
<xsd:element name="ArrayOfint" nillable="true" type="tns:ArrayOfint" />
<xsd:complexType name="ArrayOfKeyValueOfstringstring">
<xsd:annotation>
<xsd:appinfo>
<IsDictionary xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</IsDictionary>
</xsd:appinfo>
</xsd:annotation>
<xsd:sequence>
<xsd:element minOccurs="0" maxOccurs="unbounded" name="KeyValueOfstringstring">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Key" nillable="true" type="xsd:string" />
<xsd:element name="Value" nillable="true" type="xsd:string" />
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:element name="ArrayOfKeyValueOfstringstring" nillable="true" type="tns:ArrayOfKeyValueOfstringstring" />
</xsd:schema>
但是wsdl2java解析器会发出警告:
[java] Warning: No schemaLocation for import of http://schemas.microsoft.com/2003/10/Serialization/Arrays; compilation may fail
有关如何使用wsdl2java处理内联架构的任何想法吗?
答案 0 :(得分:2)
使用数据绑定xmlbeans
似乎可以解决问题:-d xmlbeans
。
答案 1 :(得分:1)
您使用的是哪个版本的Axis2?我面临类似1.6.x版本的类似问题,而1.5.x及以下版本的一切正常。你能用旧版本试试吗? 在我看来,使用xmlbeans不是一个解决方案,它只是一种解决方法。
答案 2 :(得分:0)
将其作为wsdl中的内联架构。