我正在尝试在 TIBCO Desginer 中使用 WSDL 文件,但它为 WSDL 中为日期属性定义的正则表达式模式抛出错误
WSDL 文件
> <xsd:element maxOccurs="1" minOccurs="0" name="contractStartDate_line"
> nillable="true">
> <xsd:simpleType>
> <xsd:restriction base="xsd:string">
> <xsd:pattern value="([0-9][0-9][0-9][0-9])-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01])
> ([0-1]?[0-9]|2[0-3]):([0-5]?[0-9]):([0-5]?[0-9])|"/>
> </xsd:restriction>
> </xsd:simpleType>
> </xsd:element>
TIBCO 中的错误
#dt-regex Pattern "([0-9][0-9][0-9][0-9])-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]) ([0-1]?[0-9]|2[0-3]):([0-5]?[0-9]):([0-5]?[0-9])|"/>" is an invalid regular expression: invalid atom: empty
有什么想法吗?
尼泰什