T
TheDude5B
Hi,
I have a function which returns a string value, but the string value is
actually XML, so I want to be able to then convert this string value
into an actual XML document.
Is this posible?
Am I going along the correct path doing this:
Dim strPaymentResponse As String
strPaymentResponse = Service.Trans(guid, name, id, no,
reference, card, cv2, issue, expiry, start, value, mode)
Dim XmlResponse As XmlDocument = New XmlDocument()
XmlResponse.Load(New StringReader(strPaymentResponse))
Thanks for your help.
I have a function which returns a string value, but the string value is
actually XML, so I want to be able to then convert this string value
into an actual XML document.
Is this posible?
Am I going along the correct path doing this:
Dim strPaymentResponse As String
strPaymentResponse = Service.Trans(guid, name, id, no,
reference, card, cv2, issue, expiry, start, value, mode)
Dim XmlResponse As XmlDocument = New XmlDocument()
XmlResponse.Load(New StringReader(strPaymentResponse))
Thanks for your help.