The message templates below show how an original message and a message based on the modified WSDL will look like.
Original | Modified |
---|---|
<ns1:buscarItemChecklist xmlns:ns1='cadastro.beg.tfs.totvs.com'> <!-- optional --> <identificadorChecklist>?999?</identificadorChecklist> </ns1:buscarItemChecklist> |
<ns1:buscarItemChecklist xmlns:ns1='cadastro.beg.tfs.totvs.com'> <!-- optional --> <identificadorChecklist>?999?</identificadorChecklist> <!-- optional --> <codigoEmpresa>?999?</codigoEmpresa> </ns1:buscarItemChecklist> |
The following schemas are only showing definitions that are relevant to the message. The real schemas might be bigger.
Original | Modified |
---|---|
<xsd:schema targetNamespace='cadastro.beg.tfs.totvs.com' attributeFormDefault='unqualified' elementFormDefault='unqualified' xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:tns='cadastro.beg.tfs.totvs.com'> <xsd:element name='buscarItemChecklist' type='tns:buscarItemChecklist' /> <xsd:complexType name='buscarItemChecklist'> <xsd:sequence minOccurs='1' maxOccurs='1'> <xsd:element name='identificadorChecklist' type='xsd:long' minOccurs='0' /> </xsd:sequence> </xsd:complexType> </xsd:schema> |
<xsd:schema targetNamespace='cadastro.beg.tfs.totvs.com' attributeFormDefault='unqualified' elementFormDefault='unqualified' xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:tns='cadastro.beg.tfs.totvs.com'> <xsd:element name='buscarItemChecklist' type='tns:buscarItemChecklist' /> <xsd:complexType name='buscarItemChecklist'> <xsd:sequence minOccurs='1' maxOccurs='1'> <xsd:element name='identificadorChecklist' type='xsd:long' minOccurs='0' /> <xsd:element name='codigoEmpresa' type='xsd:long' minOccurs='0' /> </xsd:sequence> </xsd:complexType> </xsd:schema> |