PDA

View Full Version : Map xml comments in flow


Tarek
02-27-2003, 10:05
Hello,

I'd like to map 'meaningless' xml comments in an xml document using flow or a wm service. Is it possible to do that or will I have to do it in Java?

Thx

Tarek

vinodravi
02-27-2003, 10:11
You can do this using very little java. You can take the xml document, tokenize it and then search for lines starting with <!--. you can delete this from the stringList (valuList) and get your good xml.
hope this helps and I am sure experts will pitch in with more ideas.
Thanks