Actually I want to get the results in xml and then show the xml on my jsp with the help of xstl. I do not like to save the xml.
________________________________ From: Giovanni D'Addabbo [mailto:[EMAIL PROTECTED] Sent: Thursday, October 25, 2007 3:58 AM To: [email protected] Subject: Re: XML Ouput from IBatis i suggest to work with ibatis + jdom for the best xml support so for example you can have an object (or a list of objects), then you can define xml document structure easily with jdom and then you can save all as a well formed xml with an handful of code. byeeeeezzzzzzz 2007/10/25, Chetan Nayak <[EMAIL PROTECTED]>: Sangeetha , I have used it in my project ,this is what i do.I will give you a sample query <select id="queryName" parameterClass="java..util.Map" resultClass="xml" xmlResultName="PERSON"> select firstname from person </select> When you call IBATIS API'S ,Call the queryForListing method ,It return me the result as String object ,But i kinda feel it's slow. Thanks Chetan On 10/25/07, Larry Meadors <[EMAIL PROTECTED] > wrote: The XML support in iBATIS is kinda...limited. I'd suggest using something like XStream to generate XML from java objects instead. It's pretty much dirt simple. Larry On 10/24/07, Kosaraju, Sangeeta <[EMAIL PROTECTED] > wrote: > > > Hi everyone, > > I want to know if anyone has ever worked with IBatis and got the XML as > output. > The documentation is very brief about it. > > It would be a great benefit for me if you can share the info. > > Thanks. > Sangeeta. -- Giovanni D'Addabbo UIN: 22490534
