我正在尝试使用 wscompile 为以下 Web 服务http://playground.bioid.com/Content/BWS/www.bioid.com.2011.12.bws.wsdl(使用 SOAP 协议的基于云的 WCF)创建方法存根。当我运行命令时
wscompile -gen -cldc1.1 config.xml
我收到以下错误
error: Found unknown simple type: byte[]
error: Found unknown simple type: byte[]
info: Types were processed that are not supported by CLDC 1.0.
error: Found unknown simple type: byte[]
error: Found unknown simple type: byte[]
error: Found unknown simple type: byte[]
任何想法如何去做?我查看了 web 服务的 xsd,这是一个片段
<xs:element name="Enroll">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="classId" nillable="true" type="q1:BiometricClassID"/>
<xs:element minOccurs="0" name="samples" nillable="true" type="q2:ArrayOfSample"/>
<xs:element minOccurs="0" name="flags" type="q3:EnrollmentFlags"/>
</xs:sequence>
</xs:complexType>
</xs:element>
我猜type="q........."属性是什么导致了问题?