I have DTD files of web service, now I need to map database to this web services and I need Java classes to create my entities. But doing this manually from DTD files would be very hard and long process. Is there any tools for this?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Isn't it a job for JAXB ?

link|improve this answer
+1, You can use the -dtd flag on the Metro JAXB XJC tool to generate Java classes from a DTD. – Blaise Doughan Jan 24 '11 at 16:49
feedback

The problem is usually more than entity binding however. What about the transport or representing the services themselves? My preference depends on the 'flavor': for SOAP, I'd use the Axis Ant/Maven tasks or the Eclipse web service tools. REST, I wouldn't go past Jersey.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.