I'm researching the operation and use of the SOAP protocol, but I came across some doubts in the structural part of the protocol. For years I have been working on low-level programming for microcontrollers. I have never needed to use tools in the higher layers, especially in the communication part, so I have some difficulty understanding very abstract things.
I have been analyzing some requests using SOAP and I noticed that in the SOAP elements go http links, as in the "envelope" element. Here is an excerpt from a SOAP code (the code is incomplete, but for my doubt the rest is not needed):
<?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>
On the envelope is the following link: " link ". I wonder why these links go. Will they be accessed at some point? Or is it just for information?