D
Daniel Rimmelzwaan
I am having trouble getting the XML out of an HttpRequest object.
I am sending the XML from biztalk into my aspx page, after which I want to
take the XML out of it and process it using a MSXML.DOMDocument. I
understand that in the Request object, it is stored as a binary, and I can't
figure out how to translate it into a text string.
Do I need to read it into a byte variable and then move it to the
DOMDocument, or is there a method I can use to read it directly from the
Request? Maybe there is a better way to do this using one of the .NET
namespaces.
The code example that I am trying to translate into C# is using an
ADODB.Stream object and just changes the type from binary to text, after
which it can read it. The problem is that I don't want to have to register
all these 'old' dll's to make the ADODB work, there has to be a way to do
this in the .NET framework.
Thanks,
Daniel.
I am sending the XML from biztalk into my aspx page, after which I want to
take the XML out of it and process it using a MSXML.DOMDocument. I
understand that in the Request object, it is stored as a binary, and I can't
figure out how to translate it into a text string.
Do I need to read it into a byte variable and then move it to the
DOMDocument, or is there a method I can use to read it directly from the
Request? Maybe there is a better way to do this using one of the .NET
namespaces.
The code example that I am trying to translate into C# is using an
ADODB.Stream object and just changes the type from binary to text, after
which it can read it. The problem is that I don't want to have to register
all these 'old' dll's to make the ADODB work, there has to be a way to do
this in the .NET framework.
Thanks,
Daniel.