The message templates below show how an original message and a message based on the modified WSDL will look like.
Original | Modified |
---|---|
<ns1:listarConfiguracaoSiglaResponse xmlns:ns1='backoffice.credito.tfs.totvs.com'> <!-- from 0 to unbounded --> <return> <!-- optional --> <!-- possible value: INS, possible value: TAR, possible value: HCH, possible value: MOT, possible value: CCH, possible value: CHQ, possible value: OCO --> <identificadorConfiguracaoSigla>???</identificadorConfiguracaoSigla> <!-- optional --> <siglaFuncao>?XXX?</siglaFuncao> <!-- optional --> <descricaoFuncao>?XXX?</descricaoFuncao> <!-- optional --> <!-- possible value: NENHUM, possible value: AVISA, possible value: REJEITA --> <tipoRetornoFuncao>???</tipoRetornoFuncao> </return> </ns1:listarConfiguracaoSiglaResponse> |
<ns1:listarConfiguracaoSiglaResponse xmlns:ns1='backoffice.credito.tfs.totvs.com'> <!-- from 0 to unbounded --> <return> <!-- optional --> <!-- possible value: INS, possible value: TAR, possible value: HCH, possible value: MOT, possible value: CCH, possible value: CHQ, possible value: DSP, possible value: OCO --> <identificadorConfiguracaoSigla>???</identificadorConfiguracaoSigla> <!-- optional --> <siglaFuncao>?XXX?</siglaFuncao> <!-- optional --> <descricaoFuncao>?XXX?</descricaoFuncao> <!-- optional --> <!-- possible value: NENHUM, possible value: AVISA, possible value: REJEITA --> <tipoRetornoFuncao>???</tipoRetornoFuncao> </return> </ns1:listarConfiguracaoSiglaResponse> |
The following schemas are only showing definitions that are relevant to the message. The real schemas might be bigger.
Original | Modified |
---|---|
<xsd:schema targetNamespace='backoffice.credito.tfs.totvs.com' attributeFormDefault='unqualified' elementFormDefault='unqualified' xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:tns='backoffice.credito.tfs.totvs.com'> <xsd:element name='listarConfiguracaoSiglaResponse' type='tns:listarConfiguracaoSiglaResponse' /> <xsd:complexType name='listarConfiguracaoSiglaResponse'> <xsd:sequence minOccurs='1' maxOccurs='1'> <xsd:element name='return' type='tns:configuracaoSiglaDTO' minOccurs='0' maxOccurs='unbounded' /> </xsd:sequence> </xsd:complexType> <xsd:complexType name='configuracaoSiglaDTO'> <xsd:sequence minOccurs='1' maxOccurs='1'> <xsd:element name='identificadorConfiguracaoSigla' type='tns:tipoConfiguracaoSigla' minOccurs='0' /> <xsd:element name='siglaFuncao' type='xsd:string' minOccurs='0' /> <xsd:element name='descricaoFuncao' type='xsd:string' minOccurs='0' /> <xsd:element name='tipoRetornoFuncao' type='tns:tipoRetornoFuncao' minOccurs='0' /> </xsd:sequence> </xsd:complexType> <xsd:simpleType name='tipoConfiguracaoSigla'> <xsd:restriction base='xsd:string'> <xsd:enumeration value='INS' /> <xsd:enumeration value='TAR' /> <xsd:enumeration value='HCH' /> <xsd:enumeration value='MOT' /> <xsd:enumeration value='CCH' /> <xsd:enumeration value='CHQ' /> <xsd:enumeration value='OCO' /> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name='tipoRetornoFuncao'> <xsd:restriction base='xsd:string'> <xsd:enumeration value='NENHUM' /> <xsd:enumeration value='AVISA' /> <xsd:enumeration value='REJEITA' /> </xsd:restriction> </xsd:simpleType> </xsd:schema> |
<xsd:schema targetNamespace='backoffice.credito.tfs.totvs.com' attributeFormDefault='unqualified' elementFormDefault='unqualified' xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:tns='backoffice.credito.tfs.totvs.com'> <xsd:element name='listarConfiguracaoSiglaResponse' type='tns:listarConfiguracaoSiglaResponse' /> <xsd:complexType name='listarConfiguracaoSiglaResponse'> <xsd:sequence minOccurs='1' maxOccurs='1'> <xsd:element name='return' type='tns:configuracaoSiglaDTO' minOccurs='0' maxOccurs='unbounded' /> </xsd:sequence> </xsd:complexType> <xsd:complexType name='configuracaoSiglaDTO'> <xsd:sequence minOccurs='1' maxOccurs='1'> <xsd:element name='identificadorConfiguracaoSigla' type='tns:tipoConfiguracaoSigla' minOccurs='0' /> <xsd:element name='siglaFuncao' type='xsd:string' minOccurs='0' /> <xsd:element name='descricaoFuncao' type='xsd:string' minOccurs='0' /> <xsd:element name='tipoRetornoFuncao' type='tns:tipoRetornoFuncao' minOccurs='0' /> </xsd:sequence> </xsd:complexType> <xsd:simpleType name='tipoConfiguracaoSigla'> <xsd:restriction base='xsd:string'> <xsd:enumeration value='INS' /> <xsd:enumeration value='TAR' /> <xsd:enumeration value='HCH' /> <xsd:enumeration value='MOT' /> <xsd:enumeration value='CCH' /> <xsd:enumeration value='CHQ' /> <xsd:enumeration value='DSP' /> <xsd:enumeration value='OCO' /> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name='tipoRetornoFuncao'> <xsd:restriction base='xsd:string'> <xsd:enumeration value='NENHUM' /> <xsd:enumeration value='AVISA' /> <xsd:enumeration value='REJEITA' /> </xsd:restriction> </xsd:simpleType> </xsd:schema> |