Why is the following code producing the below resuts
Dim msMessage(0) = New StringBuilder(
msMessage(0).In sert(0, "<SOAP-ENV:Envelope xmlns:SOAP-ENV='http://schemas.xmlsoap .org/soap/envelope/'"
msMessage(0).In sert(1, "xmlns:xsi='htt p://www.w3.org/1999/XMLSchema-instance'"
msMessage(0).In sert(2, "xmlns:xsd='htt p://www.w3.org/1999/XMLSchema'>"
=============== =============== =============== =============== =============== =
<xxmlns:xsd='ht tp://www.w3.org/1999/XMLSchema'>mlns :xsi='http://www.w3.org/1999/XMLSchema-instance'SOAP-ENV:Envelope xmlns:SOAP-ENV='http://schemas.xmlsoap .org/soap/envelope/
Why is everything going in backwards?
Dim msMessage(0) = New StringBuilder(
msMessage(0).In sert(0, "<SOAP-ENV:Envelope xmlns:SOAP-ENV='http://schemas.xmlsoap .org/soap/envelope/'"
msMessage(0).In sert(1, "xmlns:xsi='htt p://www.w3.org/1999/XMLSchema-instance'"
msMessage(0).In sert(2, "xmlns:xsd='htt p://www.w3.org/1999/XMLSchema'>"
=============== =============== =============== =============== =============== =
<xxmlns:xsd='ht tp://www.w3.org/1999/XMLSchema'>mlns :xsi='http://www.w3.org/1999/XMLSchema-instance'SOAP-ENV:Envelope xmlns:SOAP-ENV='http://schemas.xmlsoap .org/soap/envelope/
Why is everything going in backwards?
Comment