Bean -> DOM

2002-03-01 Thread Roman V. Petrov
Did anyone write JavaBean->XML DOM converter that can be used with Struts? Sources, URLs and ideas will be appreciated. Sincerely yours, Roman Petrov Software EngineerActimind, Inc. Software Development Department http://www.actimind.com E-mail: [EM

Re: Bean -> DOM

2002-03-01 Thread James Mitch
http://castor.exolab.org/ James --- "Roman V. Petrov" <[EMAIL PROTECTED]> wrote: > Did anyone write JavaBean->XML DOM converter that > can be used with Struts? Sources, URLs and ideas > will be appreciated. > > Sincerely yours, Roman Petrov > > > Software Engineer

Re: Bean -> DOM

2002-03-01 Thread Incze Lajos
On Fri, Mar 01, 2002 at 02:38:20PM +0300, Roman V. Petrov wrote: > Did anyone write JavaBean->XML DOM converter that > can be used with Struts? Sources, URLs and ideas > will be appreciated. > 1. domify.sourceforge.net. 2. jakarta-commons/jxpath (xpath access to bean and/or xml resources) Not DO

Re: Bean -> DOM

2002-03-01 Thread Arron Bates
How about the mechanism that comes with JDK 1.4?... They've added an XML marshalling system to provide an alternative to serializing objects. You can just pump a bean through the XMLEncoder and you'll end up with an XML document. Get the same document and run it through the XMLDecoder and viol

RE: Bean -> DOM

2002-03-03 Thread Bernard D'Have
see article in javaworld Struts and XSL (january orfebruary 2002) Bernard > -Original Message- > From: Roman V. Petrov [mailto:[EMAIL PROTECTED]] > Sent: Friday, March 01, 2002 12:38 > To: [EMAIL PROTECTED] > Subject: Bean -> DOM > > > Did anyone write

Re: Bean -> DOM

2002-03-05 Thread Jon Ferguson
I'm using Castor.. which is cool since you can also just write a XML Schema and have the thing build your classes.. It's quicker to write a schema or even use a standard schema from places like RosettaNet. ..alas there are a few snags which I haven't sorted yet.. For example, I haven't been able