• 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
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

Help for XML gerneartion

 
Greenhorn
Posts: 14
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi
In my project I need to generate different XML pages dynamically for different request coming from my Mobile Client. As per request parameter I need to embed Data into these XML pages and send it back to client.
My question is: Which server side technology to use for this?
Currently i am using Servlet as controller and Dom for XML generation.
Is this much enough or any other better way for this?
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Well, if it works then it would seem to be enough

There are any number of ways to generate XML (DOM, XOM, JDOM, dom4j, XSLT, ...). The decision which one to use comes down to a variety of factors, including which one is already known or in use in the project, and maybe performance (if that proves to be a problem).

Does the current implementation meet your needs?
reply
    Bookmark Topic Watch Topic
  • New Topic