Re: Using Axis2 Java with OSGi - some help appreciated

2009-01-09 Thread Saminda Abeyruwan
Hi, I am sorry not being able to reply soon. There is a undergoing work on fully supporting Axis2 in OSGi environment. You will be able to get more information from ( https://svn.apache.org/repos/asf/webservices/axis2/scratch/java/saminda/osgi_test/axis2_osgi_integration.pdf). Axis2 comes as a bu

Re: Using Axis2 Java with OSGi - some help appreciated

2009-01-07 Thread Sanjiva Weerawarana
Sameera, isn't the right thing to do to stub out the axis2 class loading stuff to be behind an interface? And then if axis2 is in an OSGi environment, the interface would be implemented by code that loads classes using OSGi calls instead of plain Java. Sanjiva. Sameera Jayasoma wrote: Yeah I

Re: Using Axis2 Java with OSGi - some help appreciated

2009-01-05 Thread Sameera Jayasoma
Yeah I also agree with the point "DynamicImport-Package: * is pretty evil". You cannot get some of the benefits of OSGi. But if you are working with Axis2-1.4.1, and you need your bundles work properly in other OSGi framework implemetations, you may have to use it at some point. Another solutions

Re: Using Axis2 Java with OSGi - some help appreciated

2009-01-05 Thread Raymond Feng
Raymond -- From: "David Illsley" Sent: Monday, January 05, 2009 9:41 AM To: Subject: Re: Using Axis2 Java with OSGi - some help appreciated Urgh, DynamicImport-Package: * is pretty evil. It is a pretty simple way to retrofit existing code into OSGI, but using it essential

Re: Using Axis2 Java with OSGi - some help appreciated

2009-01-05 Thread David Illsley
Urgh, DynamicImport-Package: * is pretty evil. It is a pretty simple way to retrofit existing code into OSGI, but using it essentially throws away the potential benefits. I *think* the best way is for the Tuscany MessageReceiver objects to be registered as OSGI services. It looks like the existing

Re: Using Axis2 Java with OSGi - some help appreciated

2009-01-05 Thread Mike Edwards
Sameera Jayasoma wrote: On Sat, Jan 3, 2009 at 12:56 PM, Mike Edwards > wrote: Folks, I am writing as a developer on the Apache Tuscany project. We are building a version of Tuscany that runs on OSGi - and we use Axis2 in our codebas

Re: Using Axis2 Java with OSGi - some help appreciated

2009-01-04 Thread Sameera Jayasoma
On Sat, Jan 3, 2009 at 12:56 PM, Mike Edwards < mike.edwards.inglen...@gmail.com> wrote: > Folks, > > I am writing as a developer on the Apache Tuscany project. > > We are building a version of Tuscany that runs on OSGi - and we use Axis2 > in our codebase. > > We're experiencing some problems ass

Using Axis2 Java with OSGi - some help appreciated

2009-01-02 Thread Mike Edwards
Folks, I am writing as a developer on the Apache Tuscany project. We are building a version of Tuscany that runs on OSGi - and we use Axis2 in our codebase. We're experiencing some problems associated with running Axis2 with Tuscany under OSGi and I'd appreciate any help you can give us. The