• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

parse xml response in Jersey (RESTful webservice)

 
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all,

I am using Jersey web services for RESTful based calls. Here i want to use xml representation. it returns xml representation. but here if i want to extract the data(parse) and display in jsp means , how can i acoomplish this?

Please advise me,

Thanks & Regards,
thilsen
 
Author and all-around good cowpoke
Posts: 13078
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
That is an XML question, not a REST question.

The standard Java library for XML parsing is quite sufficient to handle this but there are so many options. I suggest you start with parsing local XML files and only proceed to web service plus JSP when you are comfortable with XML parsing.

Harold's online book is very complete and free.

Bill

 
Ranch Hand
Posts: 2198
1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi!
My document http://faq.javaranch.com/content/Exam-Objectives-5.pdf contains description and examples of how to use the JAXP APIs and JAXB to process XML.
See sections 5.5, 5.6 and 9.2.
Best wishes!
 
reply
    Bookmark Topic Watch Topic
  • New Topic