The message templates below show how an original message and a message based on the modified WSDL will look like.
Original | Modified |
---|---|
<ns1:listarParticipante xmlns:ns1='backoffice.credito.tfs.totvs.com'> <!-- optional --> <listar> <!-- optional --> <codigoEmpresa>?999?</codigoEmpresa> <!-- optional --> <codigoUnidade>?999?</codigoUnidade> <!-- optional --> <codigoCliente>?999?</codigoCliente> <!-- optional --> <siglaModalidade>?XXX?</siglaModalidade> <!-- optional --> <numeroContrato>?999?</numeroContrato> <!-- optional --> <numeroAdlib>?999?</numeroAdlib> <!-- optional --> <!-- possible value: AVALISTA, possible value: DEVEDOR_SOLIDARIO, possible value: REPASSADOR, possible value: INTERVENIENTE, possible value: CONVENIADO, possible value: TITULAR, possible value: BENEFICIARIO, possible value: BANCO_EMISSOR, possible value: BANCO_AVISADOR, possible value: BANCO_PAGADOR, possible value: EMITENTE, possible value: INTERVENIENTE_GARANTIDOR, possible value: CESSIONARIO, possible value: CEDENTE, possible value: PAGADOR, possible value: CONTATO_COMERCIAL, possible value: FIADOR, possible value: FIEL_DEPOSITARIO, possible value: FORNECEDOR, possible value: CORRESPONDENTE, possible value: CONSIGNANTE, possible value: COOBRIGADO, possible value: RESPONSABILIDADE_EMPRESA, possible value: GARANTIDOR --> <tipoResponsabilidade>???</tipoResponsabilidade> </listar> <!-- optional --> <pageable> <!-- optional --> <page>?999?</page> <!-- optional --> <size>?999?</size> </pageable> </ns1:listarParticipante> |
<ns1:listarParticipante xmlns:ns1='backoffice.credito.tfs.totvs.com'> <!-- optional --> <listar> <!-- optional --> <codigoEmpresa>?999?</codigoEmpresa> <!-- optional --> <codigoUnidade>?999?</codigoUnidade> <!-- optional --> <codigoCliente>?999?</codigoCliente> <!-- optional --> <siglaModalidade>?XXX?</siglaModalidade> <!-- optional --> <numeroContrato>?999?</numeroContrato> <!-- optional --> <numeroAdlib>?999?</numeroAdlib> <!-- optional --> <!-- possible value: AVALISTA, possible value: DEVEDOR_SOLIDARIO, possible value: REPASSADOR, possible value: INTERVENIENTE, possible value: CONVENIADO, possible value: TITULAR, possible value: BENEFICIARIO, possible value: BANCO_EMISSOR, possible value: BANCO_AVISADOR, possible value: BANCO_PAGADOR, possible value: EMITENTE, possible value: INTERVENIENTE_GARANTIDOR, possible value: CESSIONARIO, possible value: CEDENTE, possible value: PAGADOR, possible value: CONTATO_COMERCIAL, possible value: FIADOR, possible value: FIEL_DEPOSITARIO, possible value: FORNECEDOR, possible value: CORRESPONDENTE, possible value: CONSIGNANTE, possible value: COOBRIGADO, possible value: RESPONSABILIDADE_EMPRESA, possible value: GARANTIDOR, possible value: SEGURADORA --> <tipoResponsabilidade>???</tipoResponsabilidade> </listar> <!-- optional --> <pageable> <!-- optional --> <page>?999?</page> <!-- optional --> <size>?999?</size> </pageable> </ns1:listarParticipante> |
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='listarParticipante' type='tns:listarParticipante' /> <xsd:complexType name='listarParticipante'> <xsd:sequence minOccurs='1' maxOccurs='1'> <xsd:element name='listar' type='tns:participanteFiltroDTO' minOccurs='0' /> <xsd:element name='pageable' type='tns:pageRequest' minOccurs='0' /> </xsd:sequence> </xsd:complexType> <xsd:complexType name='participanteFiltroDTO'> <xsd:sequence minOccurs='1' maxOccurs='1'> <xsd:element name='codigoEmpresa' type='xsd:int' minOccurs='0' /> <xsd:element name='codigoUnidade' type='xsd:int' minOccurs='0' /> <xsd:element name='codigoCliente' type='xsd:long' minOccurs='0' /> <xsd:element name='siglaModalidade' type='xsd:string' minOccurs='0' /> <xsd:element name='numeroContrato' type='xsd:long' minOccurs='0' /> <xsd:element name='numeroAdlib' type='xsd:int' minOccurs='0' /> <xsd:element name='tipoResponsabilidade' xmlns:ns1='http://core.credito.tfs.totvs.com' type='ns1:tipoParticipante' minOccurs='0' /> </xsd:sequence> </xsd:complexType> <xsd:complexType name='pageRequest'> <xsd:sequence minOccurs='1' maxOccurs='1'> <xsd:element name='page' type='xsd:int' minOccurs='0' /> <xsd:element name='size' type='xsd:int' minOccurs='0' /> </xsd:sequence> </xsd:complexType> <xsd:simpleType name='tipoParticipante'> <xsd:restriction base='xsd:string'> <xsd:enumeration value='AVALISTA' /> <xsd:enumeration value='DEVEDOR_SOLIDARIO' /> <xsd:enumeration value='REPASSADOR' /> <xsd:enumeration value='INTERVENIENTE' /> <xsd:enumeration value='CONVENIADO' /> <xsd:enumeration value='TITULAR' /> <xsd:enumeration value='BENEFICIARIO' /> <xsd:enumeration value='BANCO_EMISSOR' /> <xsd:enumeration value='BANCO_AVISADOR' /> <xsd:enumeration value='BANCO_PAGADOR' /> <xsd:enumeration value='EMITENTE' /> <xsd:enumeration value='INTERVENIENTE_GARANTIDOR' /> <xsd:enumeration value='CESSIONARIO' /> <xsd:enumeration value='CEDENTE' /> <xsd:enumeration value='PAGADOR' /> <xsd:enumeration value='CONTATO_COMERCIAL' /> <xsd:enumeration value='FIADOR' /> <xsd:enumeration value='FIEL_DEPOSITARIO' /> <xsd:enumeration value='FORNECEDOR' /> <xsd:enumeration value='CORRESPONDENTE' /> <xsd:enumeration value='CONSIGNANTE' /> <xsd:enumeration value='COOBRIGADO' /> <xsd:enumeration value='RESPONSABILIDADE_EMPRESA' /> <xsd:enumeration value='GARANTIDOR' /> </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='listarParticipante' type='tns:listarParticipante' /> <xsd:complexType name='listarParticipante'> <xsd:sequence minOccurs='1' maxOccurs='1'> <xsd:element name='listar' type='tns:participanteFiltroDTO' minOccurs='0' /> <xsd:element name='pageable' type='tns:pageRequest' minOccurs='0' /> </xsd:sequence> </xsd:complexType> <xsd:complexType name='participanteFiltroDTO'> <xsd:sequence minOccurs='1' maxOccurs='1'> <xsd:element name='codigoEmpresa' type='xsd:int' minOccurs='0' /> <xsd:element name='codigoUnidade' type='xsd:int' minOccurs='0' /> <xsd:element name='codigoCliente' type='xsd:long' minOccurs='0' /> <xsd:element name='siglaModalidade' type='xsd:string' minOccurs='0' /> <xsd:element name='numeroContrato' type='xsd:long' minOccurs='0' /> <xsd:element name='numeroAdlib' type='xsd:int' minOccurs='0' /> <xsd:element name='tipoResponsabilidade' xmlns:ns1='http://core.credito.tfs.totvs.com' type='ns1:tipoParticipante' minOccurs='0' /> </xsd:sequence> </xsd:complexType> <xsd:complexType name='pageRequest'> <xsd:sequence minOccurs='1' maxOccurs='1'> <xsd:element name='page' type='xsd:int' minOccurs='0' /> <xsd:element name='size' type='xsd:int' minOccurs='0' /> </xsd:sequence> </xsd:complexType> <xsd:simpleType name='tipoParticipante'> <xsd:restriction base='xsd:string'> <xsd:enumeration value='AVALISTA' /> <xsd:enumeration value='DEVEDOR_SOLIDARIO' /> <xsd:enumeration value='REPASSADOR' /> <xsd:enumeration value='INTERVENIENTE' /> <xsd:enumeration value='CONVENIADO' /> <xsd:enumeration value='TITULAR' /> <xsd:enumeration value='BENEFICIARIO' /> <xsd:enumeration value='BANCO_EMISSOR' /> <xsd:enumeration value='BANCO_AVISADOR' /> <xsd:enumeration value='BANCO_PAGADOR' /> <xsd:enumeration value='EMITENTE' /> <xsd:enumeration value='INTERVENIENTE_GARANTIDOR' /> <xsd:enumeration value='CESSIONARIO' /> <xsd:enumeration value='CEDENTE' /> <xsd:enumeration value='PAGADOR' /> <xsd:enumeration value='CONTATO_COMERCIAL' /> <xsd:enumeration value='FIADOR' /> <xsd:enumeration value='FIEL_DEPOSITARIO' /> <xsd:enumeration value='FORNECEDOR' /> <xsd:enumeration value='CORRESPONDENTE' /> <xsd:enumeration value='CONSIGNANTE' /> <xsd:enumeration value='COOBRIGADO' /> <xsd:enumeration value='RESPONSABILIDADE_EMPRESA' /> <xsd:enumeration value='GARANTIDOR' /> <xsd:enumeration value='SEGURADORA' /> </xsd:restriction> </xsd:simpleType> </xsd:schema> |