This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Web Services and the fly likes benefits of a serialization framwork like castor Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Web Services
Reply Bookmark "benefits of a serialization framwork like castor" Watch "benefits of a serialization framwork like castor" New topic
Author

benefits of a serialization framwork like castor

Pankaj Kumarkk
Ranch Hand

Joined: Apr 17, 2011
Posts: 108
I want to know why you would use castor as a serialization framework when developing web services.

I understand that you can develop a web service without using an external serialization framework like castor. I would just like to know when it is recommended to use a external serialization framework like castor.
Jesper de Jong
Java Cowboy
Bartender

Joined: Aug 16, 2005
Posts: 12920
    
    3

Nowadays we have JAXB, the standard Java API for XML binding. I would prefer to use that, just because it's the standard, instead of something like Castor. A few years ago JAXB didn't exist yet, so Castor was a good choice.

Especially if you use JAX-RS (Jersey) for RESTful webservices, JAXB is a great choice, because it understands JAXB annotations and makes it easy to create RESTful webservices - it can also serialize to JSON instead of XML, using the JAXB annotations.


Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: benefits of a serialization framwork like castor
 
Similar Threads
how to get information from a XML file?
concerning serialization
I would like to know the difference between castor and hibernate Mapppings
Best XML/OBJ framework
XML to Java object using JAXB