RE: How best to incorporate xml from a string into XSP

2001-12-11 Thread Christopher Watson
Marvellous. I hoped it would be that easy! -Original Message- From: David Rosenstrauch [mailto:[EMAIL PROTECTED]] Sent: 11 December 2001 02:52 To: [EMAIL PROTECTED] Subject: Re: How best to incorporate xml from a string into XSP Someone else had this same problem recently. Use . It

Re: How best to incorporate xml from a string into XSP

2001-12-10 Thread David Rosenstrauch
Someone else had this same problem recently. Use . It will parse the text that you pass in to it, and generate SAX calls from it (as opposed to writing the text straight to the output - after escaping all the control chars - like it's doing now). 1) Include the namespace xmlns:util="http://ap

How best to incorporate xml from a string into XSP

2001-12-10 Thread Christopher Watson
Could someone help I have a method on an object that produces XML as a string. I wish to incorporate it into an XSP page. myString doesn't work, since it kindly changes < into < etc. I have tried various approaches, each with various unwanted side effects. Could someone tell me what is the BE