Hi,
I am facing the following problem: I need to receive XML over HTTP and parse it then do some business logic with the received data.
I wrote a flow that does the Job first by loading an XML file from the local file system:
pub.file:getFile, then
pub.xml:xmlStringToXMLNode Then
pub.xml:xmlNodeToDocument
All this works fine, now if I want to receive the file through http, the documentation says that IS will parse the document for me and pass it to the invoked service as a node. At this point, I need then, just to call
pub.xml:xmlNodeToDocument by defining in the pipeline In an Object called Node
If I try to post my file (the exact same file I used with pub.file:getFile), my flow is failing and it looks like the received XML is not correct.
I am using an asp page to post my XML through MSXML2.ServerXMLHTTP API
Do anyone have an idea about what could be the problem?
Regards,
KAcem