RE: Jaxb representation (HELP!)

2008-02-07 Thread Jerome Louvel
:[EMAIL PROTECTED] Envoyé : jeudi 7 février 2008 09:20 À : discuss@restlet.tigris.org Objet : Re: Jaxb representation (HELP!) OK. Thanks Jerome. I'm using version 1.1-M2 BTW. It's a bit weird since i don't see this exception if i use StringRepresentation. It happens right after i switch

Re: Jaxb representation (HELP!)

2008-02-06 Thread Florian Schwarz
representation (HELP!) After playing with it a bit, we will go with jibx instead (Thanks Florian) mainly because of performance and its java-centric XML mapping approach. That said, how come we don't see jibx on http://maven.restlet.org/org/restlet/. I do

Re: Jaxb representation (HELP!)

2008-02-06 Thread dev dev
representation (HELP!) After playing with it a bit, we will go with jibx instead (Thanks Florian) mainly because of performance and its java-centric XML mapping approach. That said, how come we don't see jibx on http://maven.restlet.org/org/restlet/. I do

Re: Jaxb representation (HELP!)

2008-02-06 Thread Florian Schwarz
À : discuss@restlet.tigris.org mailto:discuss@restlet.tigris.org mailto:discuss@restlet.tigris.org mailto:discuss@restlet.tigris.org Objet : Re: Jaxb representation (HELP!) After playing with it a bit, we will go with jibx

Re: Jaxb representation (HELP!)

2008-02-05 Thread dev dev
PROTECTED] Envoyé : samedi 2 février 2008 03:10 À : discuss@restlet.tigris.org Objet : Re: Jaxb representation (HELP!) After playing with it a bit, we will go with jibx instead (Thanks Florian) mainly because of performance and its java-centric XML mapping approach. That said, how

Re: Jaxb representation (HELP!)

2008-02-04 Thread dev dev
- De : dev dev [mailto:[EMAIL PROTECTED] Envoyé : samedi 2 février 2008 03:10 À : discuss@restlet.tigris.org Objet : Re: Jaxb representation (HELP!) After playing with it a bit, we will go with jibx instead (Thanks Florian) mainly because of performance and its java-centric XML mapping

RE: Jaxb representation (HELP!)

2008-02-02 Thread Jerome Louvel
@restlet.tigris.org Objet : Re: Jaxb representation (HELP!) After playing with it a bit, we will go with jibx instead (Thanks Florian) mainly because of performance and its java-centric XML mapping approach. That said, how come we don't see jibx on http://maven.restlet.org/org/restlet

Re: Jaxb representation (HELP!)

2008-02-01 Thread dev dev
After playing with it a bit, we will go with jibx instead (Thanks Florian) mainly because of performance and its java-centric XML mapping approach. That said, how come we don't see jibx on http://maven.restlet.org/org/restlet/. I do see jaxb there. Thanks dev On Jan 27, 2008 10:22 AM, dev dev

Re: Jaxb representation (HELP!)

2008-01-27 Thread Florian Schwarz
Hi dev, the usage of JaxbRepresentation is quite simple: Java - XML public Representation represent(Variant variant) { ... Flight flight = ... JaxbRepresentation jaxbRepOfMyFlight = new JaxbRepresentation(MediaType.TEXT_XML, flight); ... return jaxbRepOfMyFlight } XML -

Re: Jaxb representation (HELP!)

2008-01-27 Thread dev dev
Great help Florian. We will definitely take a look at Jibx representation before considering JAXB. Thank you. dev On Jan 27, 2008 1:17 AM, Florian Schwarz [EMAIL PROTECTED] wrote: Hi dev, the usage of JaxbRepresentation is quite simple: Java - XML public Representation represent(Variant

Jaxb representation (HELP!)

2008-01-26 Thread dev dev
Hi folks, has anybody already used the JAXB XML binding framework with Restlet? Are there any sample codes we can take a look at on how it's being used in Restlet? Any performance issues we should seriously consider before using JAXB? Thanks in advance for all the help. dev