我正在尝试使用TOP-DOWN和Axis 1.4部署Web服务,通过Eclipse的向导“Web服务>生成Java Skeleton”,我有一个带有它的模式的WSDL。一个特定的complexType对其元素有限制(它用于输入):
<xsd:complexType name="InformacionClienteRequestModel">
<xsd:sequence>
<xsd:element name="numRut">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:pattern value="\d{9}\-[k|K|0-9]"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="codSituacion">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:pattern value="([ABST][AP][AP])?|([ABST][AP][AP])(,([ABST][AP][AP]))*"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="filtroCodSituacion">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:pattern value="[IE]?"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="pagina">
<xsd:simpleType>
<xsd:restriction base="xsd:int">
<xsd:minInclusive value="1"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="registrosPorPagina">
<xsd:simpleType>
<xsd:restriction base="xsd:int">
<xsd:minInclusive value="1"/>
<xsd:maxInclusive value="50"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
当它在服务器上部署时(我尝试了Websphere和Tomcat),这个complexType如下所示:
<complexType name="InformacionClienteRequestModel">
<sequence>
<element name="numRut" type="xsd:string"/>
<element name="codSituacion" type="xsd:string"/>
<element name="filtroCodSituacion" type="xsd:string"/>
<element name="pagina" type="xsd:int"/>
<element name="registrosPorPagina" type="xsd:int"/>
</sequence>
</complexType>
它显然没有通过SOAP验证输入数据,我到处都谷歌,但没有得到任何东西。
有什么想法吗?