Re: HTML embedded in XML

2005-09-04 Thread Leszek Gawron
footh wrote: In Javaflow, I call out to a web service (Google's, to be specific) and get a bunch of results returned. Then, I combine these results into my own XML DOM object, stuff the object into a Parameter map and send it off to a JX page. As a result, I can easily inject the XML fragment i

Re: HTML embedded in XML

2005-08-25 Thread Thomas Lutz
Maybe you'd be successfull with a small service pipeline, that uses xml/xslt instead of jx. I did this once, the basic idea was: - writing a custom generator, that parsed the string to a DOM Document (in your case I think this could be done by simply wrap your service response with a tag). I

HTML embedded in XML

2005-08-24 Thread footh
In Javaflow, I call out to a web service (Google's, to be specific) and get a bunch of results returned. Then, I combine these results into my own XML DOM object, stuff the object into a Parameter map and send it off to a JX page. As a result, I can easily inject the XML fragment into my page by m