RE: How to configure axis2-1.1 to support JAXB-RI

2006-12-06 Thread Sanjiva Weerawarana
On Fri, 2006-12-01 at 16:46 -0800, Brennan Spies wrote:
 Jim,
 
  
 
 The official implementation that will be supported by Axis 2 is
 Apache’s own JaxMe. JaxMe is not “1.0” yet (0.5.2—of course, version
 numbers are not always an indicator of quality ;-), so I imagine that
 Axis 2 support will follow an official stable release…but this
 question would be best answered by someone else…

Axis2 1.1.1 (to be released soon from the 1.1 branch) does support
JAXB-RI as Dims pointed out. We treat JaxMe and JAXB-RI as two different
data binding technologies even though they both implement the same spec.

Sanjiva.
-- 
Sanjiva Weerawarana, Ph.D.
Founder  Director; Lanka Software Foundation; http://www.opensource.lk/
Founder, Chairman  CEO; WSO2, Inc.; http://www.wso2.com/
Director; Open Source Initiative; http://www.opensource.org/
Member; Apache Software Foundation; http://www.apache.org/
Visiting Lecturer; University of Moratuwa; http://www.cse.mrt.ac.lk/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: How to configure axis2-1.1 to support JAXB-RI

2006-12-06 Thread Davanum Srinivas

s/both implement the same spec/both implement different versions of
the same spec/ :)

-- dims

On 12/6/06, Sanjiva Weerawarana [EMAIL PROTECTED] wrote:

On Fri, 2006-12-01 at 16:46 -0800, Brennan Spies wrote:
 Jim,



 The official implementation that will be supported by Axis 2 is
 Apache's own JaxMe. JaxMe is not 1.0 yet (0.5.2—of course, version
 numbers are not always an indicator of quality ;-), so I imagine that
 Axis 2 support will follow an official stable release…but this
 question would be best answered by someone else…

Axis2 1.1.1 (to be released soon from the 1.1 branch) does support
JAXB-RI as Dims pointed out. We treat JaxMe and JAXB-RI as two different
data binding technologies even though they both implement the same spec.

Sanjiva.
--
Sanjiva Weerawarana, Ph.D.
Founder  Director; Lanka Software Foundation; http://www.opensource.lk/
Founder, Chairman  CEO; WSO2, Inc.; http://www.wso2.com/
Director; Open Source Initiative; http://www.opensource.org/
Member; Apache Software Foundation; http://www.apache.org/
Visiting Lecturer; University of Moratuwa; http://www.cse.mrt.ac.lk/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





--
Davanum Srinivas : http://www.wso2.net (Oxygen for Web Service Developers)

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: How to configure axis2-1.1 to support JAXB-RI

2006-12-01 Thread Davanum Srinivas

Jim,

If you pull the 1.1 branch of Axis2 and build it yourself, you can use
the JAXB-RI with minimal effort, Just have to run WSDL2Java with -d
jaxbri.

thanks,
dims

On 11/30/06, jim ma [EMAIL PROTECTED] wrote:

Great thanks, Brennan.

This feature will be supported in the next release ?

Jim


On 11/30/06, Brennan Spies  [EMAIL PROTECTED] wrote:




 Jim,



 Your best bet is to generate databinding using some other supported tech
(i.e., XmlBeans). Then alter the generated classes (the MessageReceiver and
Skeleton) so that you use JAXB-RI. This generally involves going to and from
Axiom (OMElement) as the information is passed from and back to the SOAP
body—this shouldn't involve much effort since the StAX api is supported by
JAXB.



 


 From: jim ma [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, November 28, 2006 10:00 PM
 To: axis-user@ws.apache.org
 Subject: How to configure axis2-1.1 to support JAXB-RI




 Hi all ,

 I noticed aixs2 1.1 can support JAXB-RI databinding experimentally. I have
copied all the jar files related to jaxb ri under lib directory(in axis2-std
kit). But wsdl2java complains JAX-B RI binding extension not in classpath.
 Is there something need to configure or codegen tool can not generate jaxb
ri databinding code  ?

 I also want to know runtime can support jaxb ri databinding.

 Thanks

 Jim





--
Davanum Srinivas : http://www.wso2.net (Oxygen for Web Service Developers)

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: How to configure axis2-1.1 to support JAXB-RI

2006-12-01 Thread Brennan Spies
Jim,

 

The official implementation that will be supported by Axis 2 is Apache's own
JaxMe. JaxMe is not 1.0 yet (0.5.2-of course, version numbers are not
always an indicator of quality ;-), so I imagine that Axis 2 support will
follow an official stable release.but this question would be best answered
by someone else.

 

  _  

From: jim ma [mailto:[EMAIL PROTECTED] 
Sent: Thursday, November 30, 2006 6:25 PM
To: axis-user@ws.apache.org; [EMAIL PROTECTED]
Subject: Re: How to configure axis2-1.1 to support JAXB-RI

 

Great thanks, Brennan.

This feature will be supported in the next release ?

Jim

On 11/30/06, Brennan Spies  mailto:[EMAIL PROTECTED]
[EMAIL PROTECTED] wrote:

Jim,

 

Your best bet is to generate databinding using some other supported tech
(i.e., XmlBeans). Then alter the generated classes (the MessageReceiver and
Skeleton) so that you use JAXB-RI. This generally involves going to and from
Axiom (OMElement) as the information is passed from and back to the SOAP
body-this shouldn't involve much effort since the StAX api is supported by
JAXB. 

 

  _  

From: jim ma [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 28, 2006 10:00 PM
To: axis-user@ws.apache.org
Subject: How to configure axis2-1.1 to support JAXB-RI

 

Hi all , 

I noticed aixs2 1.1 can support JAXB-RI databinding experimentally. I have
copied all the jar files related to jaxb ri under lib directory(in axis2-std
kit). But wsdl2java complains JAX-B RI binding extension not in classpath.
Is there something need to configure or codegen tool can not generate jaxb
ri databinding code  ? 

I also want to know runtime can support jaxb ri databinding.

Thanks 

Jim

 



Re: How to configure axis2-1.1 to support JAXB-RI

2006-11-30 Thread jim ma

Great thanks, Brennan.

This feature will be supported in the next release ?

Jim

On 11/30/06, Brennan Spies [EMAIL PROTECTED] wrote:


 Jim,



Your best bet is to generate databinding using some other supported tech (
i.e., XmlBeans). Then alter the generated classes (the MessageReceiver and
Skeleton) so that you use JAXB-RI. This generally involves going to and from
Axiom (OMElement) as the information is passed from and back to the SOAP
body—this shouldn't involve much effort since the StAX api is supported by
JAXB.


 --

*From:* jim ma [mailto:[EMAIL PROTECTED]
*Sent:* Tuesday, November 28, 2006 10:00 PM
*To:* axis-user@ws.apache.org
*Subject:* How to configure axis2-1.1 to support JAXB-RI



Hi all ,

I noticed aixs2 1.1 can support JAXB-RI databinding experimentally. I have
copied all the jar files related to jaxb ri under lib directory(in axis2-std
kit). But wsdl2java complains JAX-B RI binding extension not in
classpath.  Is there something need to configure or codegen tool can not
generate jaxb ri databinding code  ?

I also want to know runtime can support jaxb ri databinding.

Thanks

Jim



RE: How to configure axis2-1.1 to support JAXB-RI

2006-11-29 Thread Brennan Spies
Jim,

 

Your best bet is to generate databinding using some other supported tech
(i.e., XmlBeans). Then alter the generated classes (the MessageReceiver and
Skeleton) so that you use JAXB-RI. This generally involves going to and from
Axiom (OMElement) as the information is passed from and back to the SOAP
body-this shouldn't involve much effort since the StAX api is supported by
JAXB. 

 

  _  

From: jim ma [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 28, 2006 10:00 PM
To: axis-user@ws.apache.org
Subject: How to configure axis2-1.1 to support JAXB-RI

 

Hi all , 

I noticed aixs2 1.1 can support JAXB-RI databinding experimentally. I have
copied all the jar files related to jaxb ri under lib directory(in axis2-std
kit). But wsdl2java complains JAX-B RI binding extension not in classpath.
Is there something need to configure or codegen tool can not generate jaxb
ri databinding code  ? 

I also want to know runtime can support jaxb ri databinding.

Thanks 

Jim