Finding XML in XML file (node) and change '<' and '>'

suzanazbsuzanazb Member Posts: 8
Hi,

I created a XML Port which creates teh SOAP envelop and body and exports the Invoice information as needed. The server where i am sending the xml file needs that everithing after in the <invoice> ... </invoce> node to change
'&'= '&amp', '<'='<'), '>'= '>'))
How do I do that?

Any ideas would help.

Thanks,
S.

Comments

  • JedrzejTJedrzejT Member Posts: 267
    Hello,

    I have this problem some time ago.
    I solve this by reading stream before using xmlport
    First - replace in stream [<] with [<] and [>] with [>] , after that read stream by xmlport.
Sign In or Register to comment.