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.........."属性が問題の原因だと思いますか?