pass byte array over http

I am trying to pass bytes over http. At the target side, the message bytes data appear as Node.

How can I grab the data?

How are you sending the bytes?
Are they Base64 encoded?
Is it a SOAP message containing an array of xsd:byte or xsd:character?
What is the Content-type of the HTTP message?
I would assume “text/xml” since you are getting a Node. Are the bytes really an XML file? If so, you should be able to used xmlNodeToDocument to get the XML content out.

HTH,
Fred

If it is normal file (delimited) being sent over HTTP (from some other source to IS), what will be the input of my service? (is it node? or something else?)