Re: Axis2 Spring integration Issues

2011-08-22 Thread seba.wag...@gmail.com
okay full stop: *operations :* If the service impl class is Java, then all the public methods in that service will be exposed. If the user wants to override it, he has to add the "operation" tag and override it. In a non-Java scenario or if you do not have a service class, then all the operations

Re: Axis2 Spring integration Issues

2011-08-22 Thread seba.wag...@gmail.com
Well but out of curiosity: Is the "operation" TAG needed to make a method available via Axis2: YES or NO? There must be one definitive answer to that isn't it? I am quite sure there is NO information regarding that on the documentation in the wiki. I am using Axis2 sind it was called Axis. I do

Re: Axis2 Spring integration Issues

2011-08-22 Thread robert lazarski
On Mon, Aug 22, 2011 at 4:09 PM, seba.wag...@gmail.com wrote: > Hi Robert, > > no the "useOriginalwsdl" doesn't work for me. What should it do actually? I > mean I don't want to specify a WSDL on my own manually I want Axis2 to > create one based on the Methods that are declared public the the Ser

Re: Axis2 Spring integration Issues

2011-08-22 Thread seba.wag...@gmail.com
Hi Robert, no the "useOriginalwsdl" doesn't work for me. What should it do actually? I mean I don't want to specify a WSDL on my own manually I want Axis2 to create one based on the Methods that are declared public the the Service Class. In Version 1.3 of Axis2 there was no need to write any addit

Re: Axis2 Spring integration Issues

2011-08-22 Thread robert lazarski
On Mon, Aug 22, 2011 at 3:23 PM, seba.wag...@gmail.com wrote: > Hi Robert, > > the initial exception on startup is gone now, > however the generated WSDL initially contained no method definitions. > > I had to manually add a "operation" tag in the service XML. > This is my new Service.xml definiti

Re: Axis2 Spring integration Issues

2011-08-22 Thread seba.wag...@gmail.com
Hi Robert, the initial exception on startup is gone now, however the generated WSDL initially contained no method definitions. I had to manually add a "operation" tag in the service XML. This is my new Service.xml definition (I only test with the UserService modified only): http://code.google.com

Re: Axis2 Spring integration Issues

2011-08-22 Thread seba.wag...@gmail.com
Hi Robert, I will test and give feedback. Thanks a lot! Sebastian 2011/8/21 robert lazarski > On Sun, Aug 21, 2011 at 3:58 PM, seba.wag...@gmail.com > wrote: > > service.xml including that service: > > > http://code.google.com/p/openmeetings/source/browse/branches/dev/injection/src/META-INF/s

Re: Axis2 Spring integration Issues

2011-08-21 Thread robert lazarski
On Sun, Aug 21, 2011 at 3:58 PM, seba.wag...@gmail.com wrote: > service.xml including that service: > http://code.google.com/p/openmeetings/source/browse/branches/dev/injection/src/META-INF/services.xml The docs indicate that for servlet context loading you should use SpringServletContextObjectSu

Re: Axis2 Spring integration Issues

2011-08-21 Thread seba.wag...@gmail.com
So here we go. I am testing the Service called *UserService* service.xml including that service: http://code.google.com/p/openmeetings/source/browse/branches/dev/injection/src/META-INF/services.xml The application-Context file from Spring that gets loaded and the link to the line of the xml wher

Re: Axis2 Spring integration Issues

2011-08-21 Thread seba.wag...@gmail.com
Thanks Robert, I will modify the sources aligned with the inital approach again and send you the details. Sebastian 2011/8/21 robert lazarski : > On Sun, Aug 21, 2011 at 1:58 PM, robert lazarski > wrote: >> On Sun, Aug 21, 2011 at 1:33 PM, seba.wag...@gmail.com >> wrote: >>> Hi Robert, >>> >>>

Re: Axis2 Spring integration Issues

2011-08-21 Thread robert lazarski
On Sun, Aug 21, 2011 at 1:58 PM, robert lazarski wrote: > On Sun, Aug 21, 2011 at 1:33 PM, seba.wag...@gmail.com > wrote: >> Hi Robert, >> >> I have exactly read and applied this one first. >> >> You mean: >> >>     >>        simple spring example >>     >>    > name="ServiceObjectSupplier">org.

Re: Axis2 Spring integration Issues

2011-08-21 Thread robert lazarski
On Sun, Aug 21, 2011 at 1:33 PM, seba.wag...@gmail.com wrote: > Hi Robert, > > I have exactly read and applied this one first. > > You mean: > >     >        simple spring example >     >     name="ServiceObjectSupplier">org.apache.axis2.extensions.spring.receivers.SpringServletContextObjectSuppl

Re: Axis2 Spring integration Issues

2011-08-21 Thread seba.wag...@gmail.com
Hi Robert, I have exactly read and applied this one first. You mean: simple spring example org.apache.axis2.extensions.spring.receivers.SpringServletContextObjectSupplier springAwareService => It results in a situation where the WSDL file is generat

Re: Axis2 Spring integration Issues

2011-08-21 Thread robert lazarski
On Sun, Aug 21, 2011 at 7:10 AM, seba.wag...@gmail.com wrote: > Hi, > > we are trying to inject Spring Services into an Axis2 Service Class. > Unfortunately the Spring application Context is loaded AFTER Webapp > initializes the Axis2 Servlet. > > My first approach was to use a SpringInit-Java Cla

Re: Axis2 Spring integration Issues

2011-08-21 Thread seba.wag...@gmail.com
One obvious way would be of course to manually grab the ServletContext and get the Bean from it like: public ServletContext getServletContext()     {         MessageContext mc = MessageContext.getCurrentMessageContext();         return (ServletContext) mc.getProperty(HTTPConstants.MC_HTTP_SERVLETCO

Re: Axis2 Spring integration

2011-01-13 Thread nch
d/11284 [2] http://wso2.org/files/test_1.zip [3] http://wso2.org/files/test2.zip De: Amila Suriarachchi Para: java-user@axis.apache.org Enviado: jue,13 enero, 2011 05:03 Asunto: Re: Axis2 Spring integration On Wed, Jan 12, 2011 at 9:18 PM, nch wrote: Hi, t

Re: Axis2 Spring integration

2011-01-12 Thread Amila Suriarachchi
On Wed, Jan 12, 2011 at 9:18 PM, nch wrote: > Hi, there. > > I have developed two Axis2 web services. Both integrate with Spring > following http://axis.apache.org/axis2/java/core/docs/spring.html#a26 > Both services work correctly when deployed alone but, if both are deployed, > only > the servi

Re: Axis2 Spring integration

2011-01-12 Thread Tharindu Mathew
gt; > Many thanks. > > - Mensaje original > De: robert lazarski > Para: java-user@axis.apache.org > Enviado: mié,12 enero, 2011 17:11 > Asunto: Re: Axis2 Spring integration > > On Wed, Jan 12, 2011 at 12:48 PM, nch wrote: > > Hi, there. > > >

Re: Axis2 Spring integration

2011-01-12 Thread nch
I'm following "Spring Inside an AAR". I checked configs many times already so I'll keep diving into logs and sources. Many thanks. - Mensaje original De: robert lazarski Para: java-user@axis.apache.org Enviado: mié,12 enero, 2011 17:11 Asunto: Re: Axis2 Spring

Re: Axis2 Spring integration

2011-01-12 Thread robert lazarski
On Wed, Jan 12, 2011 at 12:48 PM, nch wrote: > Hi, there. > > I have developed two Axis2 web services. Both integrate with Spring > following http://axis.apache.org/axis2/java/core/docs/spring.html#a26 > Both services work correctly when deployed alone but, if both are deployed, > only > the serv

Re: Axis2-Spring integration

2010-04-02 Thread Andreas Veithen
On Fri, Apr 2, 2010 at 06:29, indika kumara wrote: > Please forgive me if I am asking an idiot question.  I do not have > good knowledge about spring.. > > I just want to get to know. > > Does this spring integration support to obtain any qualities offered > by the Spring  (runtime system quality

Re: Axis2-Spring integration

2010-04-01 Thread Amila Suriarachchi
On Fri, Apr 2, 2010 at 1:47 AM, Andreas Veithen wrote: > One last message with java-user in copy: I've created a page on our > brand new Wiki: > > http://wiki.apache.org/axis/Axis2Spring > > Please feel free to edit and add your ideas. > Thanks Andreas for creating the wiki an initiating the this

Re: Axis2-Spring integration

2010-04-01 Thread indika kumara
Please forgive me if I am asking an idiot question.  I do not have good knowledge about spring.. I just want to get to know. Does this spring integration support to obtain any qualities offered by the Spring  (runtime system quality attributes , non runtime and architectural quality attributes) ?

Re: Axis2-Spring integration

2010-04-01 Thread Samisa Abeysinghe
So this thread mentions JAX-WS few times. I am wondering how complete out JAX-WS support is Samisa... On Fri, Apr 2, 2010 at 1:47 AM, Andreas Veithen wrote: > One last message with java-user in copy: I've created a page on our > brand new Wiki: > > http://wiki.apache.org/axis/Axis2Spring > > Pl

Re: Axis2-Spring integration

2010-04-01 Thread Andreas Veithen
One last message with java-user in copy: I've created a page on our brand new Wiki: http://wiki.apache.org/axis/Axis2Spring Please feel free to edit and add your ideas. Andreas On Thu, Apr 1, 2010 at 13:43, Glen Daniels wrote: > Quick comment, folks - do we really need to be cc'ing java-user f

Re: Axis2-Spring integration

2010-04-01 Thread Sagara Gunathunga
On Thu, Apr 1, 2010 at 10:53 AM, Amila Suriarachchi < amilasuriarach...@gmail.com> wrote: > > > On Thu, Apr 1, 2010 at 12:31 AM, Andreas Veithen < > andreas.veit...@gmail.com> wrote: > >> On Wed, Mar 31, 2010 at 19:59, Amila Suriarachchi >> wrote: >> > >> > >> > On Wed, Mar 31, 2010 at 1:40 PM, A

Re: Axis2-Spring integration

2010-04-01 Thread Sagara Gunathunga
Hi Tharindu, WSF/Spring contains two top level beans to handle Services and Configuration, Configuration bean is equivalent to axis2.xml behavior . As you mentioned in the [1] it is necessary to import default axis2Config.xml into user's bean definition file , if the user want to change some of t

Re: Axis2-Spring integration

2010-04-01 Thread Tharindu Mathew
A default axis2Config.xml (with Spring beans) was used in WSF/Spring mimicking the behavior of the axis2.xml. Thus, giving a default config file if the user wanted to run with default options. Sagara, may I know why you changed this back to the axis2.xml after you forked WSF/Spring? Regards, Th

Re: Axis2-Spring integration

2010-03-31 Thread Afkham Azeez
+1 for designing & building this from scratch while bringing in ideas from these different implmentations. Azeez On Thu, Apr 1, 2010 at 12:31 AM, Andreas Veithen wrote: > On Wed, Mar 31, 2010 at 19:59, Amila Suriarachchi > wrote: > > > > > > On Wed, Mar 31, 2010 at 1:40 PM, Andreas Veithen < >

Re: Axis2-Spring integration

2010-03-31 Thread Samisa Abeysinghe
On Thu, Apr 1, 2010 at 10:53 AM, Amila Suriarachchi < amilasuriarach...@gmail.com> wrote: > > > On Thu, Apr 1, 2010 at 12:31 AM, Andreas Veithen < > andreas.veit...@gmail.com> wrote: > >> On Wed, Mar 31, 2010 at 19:59, Amila Suriarachchi >> wrote: >> > >> > >> > On Wed, Mar 31, 2010 at 1:40 PM, A

Re: Axis2-Spring integration

2010-03-31 Thread Amila Suriarachchi
On Thu, Apr 1, 2010 at 12:31 AM, Andreas Veithen wrote: > On Wed, Mar 31, 2010 at 19:59, Amila Suriarachchi > wrote: > > > > > > On Wed, Mar 31, 2010 at 1:40 PM, Andreas Veithen < > andreas.veit...@gmail.com> > > wrote: > >> > >> All, > >> > >> Recently there have been some questions and discussi

Re: Axis2-Spring integration

2010-03-31 Thread robert lazarski
On Wed, Mar 31, 2010 at 4:01 PM, Andreas Veithen wrote: > > If everybody proposes his own code as a starting point, we will get > nowhere. I think we should start from scratch, and then as we progress > through the different areas we want to cover, take over those > components from the three codeb

Re: Axis2-Spring integration

2010-03-31 Thread Andreas Veithen
On Wed, Mar 31, 2010 at 19:59, Amila Suriarachchi wrote: > > > On Wed, Mar 31, 2010 at 1:40 PM, Andreas Veithen > wrote: >> >> All, >> >> Recently there have been some questions and discussions about Spring >> support in Axis2 [1] [2] [3] [4]. As mentioned in these references, >> WSO2 has develop

Re: Axis2-Spring integration

2010-03-31 Thread Amila Suriarachchi
On Wed, Mar 31, 2010 at 1:40 PM, Andreas Veithen wrote: > All, > > Recently there have been some questions and discussions about Spring > support in Axis2 [1] [2] [3] [4]. As mentioned in these references, > WSO2 has developed a framework that provides Axis2-Spring integration > [5]. Also, Sagara

Re: Axis2-Spring integration

2010-03-31 Thread Tharindu Mathew
Link [1] that Andreas points to, explains both frameworks well. Regards, Tharindu On Wed, Mar 31, 2010 at 10:45 PM, Samisa Abeysinghe < samisa.abeysin...@gmail.com> wrote: > > > On Wed, Mar 31, 2010 at 8:24 PM, Tharindu Mathew wrote: > >> Hi Everyone, >> >> Let me first introduce myself. I'm T

Re: Axis2-Spring integration

2010-03-31 Thread Samisa Abeysinghe
On Wed, Mar 31, 2010 at 8:24 PM, Tharindu Mathew wrote: > Hi Everyone, > > Let me first introduce myself. I'm Tharindu from WSO2 and I was part of the > intial WSF/Spring effort some years ago. > San you explain how WSF/Spring does it? Samisa... > I've gone through a few of the links pointed

Re: Axis2-Spring integration

2010-03-31 Thread Samisa Abeysinghe
What if WSO2 is willing to integrate their effort as well with this? Samisa... On Wed, Mar 31, 2010 at 1:40 PM, Andreas Veithen wrote: > All, > > Recently there have been some questions and discussions about Spring > support in Axis2 [1] [2] [3] [4]. As mentioned in these references, > WSO2 has

Re: Axis2-Spring integration

2010-03-31 Thread Chinmoy Chakraborty
Andreas, I was going through your mail and the idea seems interesting. I want to get involved into this project. Let me know what are things I need to look into as starting point. Chinmoy On Wed, Mar 31, 2010 at 1:40 PM, Andreas Veithen wrote: > All, > > Recently there have been some question