Re: XTag problem

2004-11-24 Thread Bill Siggelkow
Though I haven't used the xtags, it looks like to me that the tag is expecting a Reader not a String. You could probably make it work by doing something like this: <% StringReader xml = new StringReader((String) request.getAttribute("xmlString")); %> -Bill Siggelkow Nishant wrote: hi to all,

Re: XTag problem

2004-11-24 Thread Guillaume Cottenceau
"Nishant" writes: > "There is difference between knowing the Path and walking on the Path" Add "a" to make the beginning "There is a difference", and remove "on" from "on the path" to make the ending "walking the path", this will make the sentence correct, and your signature look way more awesom

Re: XTag problem

2004-11-24 Thread Guillaume Cottenceau
"Nishant" writes: > hi to all, > i am using Struts in tomcat apache server.. > i have a xml data which is stored in a form of string. > i am using XTags > when i use > ^^^ > then it is completely working... > but when this xml file i put into string and use > <% > String xml =

XTag problem

2004-11-23 Thread Nishant
hi to all, i am using Struts in tomcat apache server.. i have a xml data which is stored in a form of string. i am using XTags when i use then it is completely working... but when this xml file i put into string and use <% String xml = (String) request.getAttribute("xmlString"); %> <%= xml %> t