1
I am researching the operation and use of the SOAP protocol, but I came across some doubts in the structural part of the protocol. I’ve been working on low-level language programming for microcontrollers for years. I never needed to use tools in the higher layers, especially in the communication part, so I have some difficulty understanding very abstract things.
I’ve been analyzing some requests using SOAP and noticed that in the SOAP elements will http links, as in the "envelope" element. Below follows an excerpt from a SOAP code (the code is incomplete, but for my doubt the rest is not necessary):
<?xml version='1.0' encoding='UTF-8'?>
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Body>
<ns2:RecepcionarLoteRpsRequest
xmlns:ns2="http://ws.bhiss.pbh.gov.br">
<nfseCabecMsg>
<?xml version='1.0' encoding='UTF-8'?>
<cabecalho xmlns="http://www.abrasf.org.br/nfse.xsd"versao="1.00">
<versaoDados>1.00</versaoDados>
</cabecalho>
</nfseCabecMsg>
<nfseDadosMsg>
</nfseDadosMsg>
</ns2:RecepcionarLoteRpsRequest>
</S:Body>
</S:Envelope>
In the envelope goes the following link: "http://schemas.xmlsoap.org/soap/envelope/". I wonder why these links go. Will they be accessed at some point? Or is it just for information?
Clarified the doubt. Thank you.
– Roger