Re: [Axis2] JSR181 and ServiceObjectSupplier

2010-04-25 Thread bruce
Hi Sagara, Yes, I found your blog post very useful indeed, as mentioned below. Thanks! Did you ever have any thoughts about the particular problem I describe - how to configure axis2 to use Guice in jsr181 annotations, without using a services.xml file? Bruce. Quoting Sagara Gunathunga : H

Re: RPC SOAP

2010-04-25 Thread Demetris
Would the Axis2 engine accept proper SOAP messages (Envelope + Body) that do not carry the ? Also is the soapenv: prefix for the Envelope and the Body tags required? Thanks again Demetris wrote: OK I think I got it. Thanks Andreas Andreas Veithen wrote: All this is by design: * toStrin

Re: [Axis2] JSR181 and ServiceObjectSupplier

2010-04-25 Thread Sagara Gunathunga
Hope this [1] also help out. [1] - http://ssagara.blogspot.com/2009/05/guice-axis2-integration.html Thanks, On Mon, Apr 26, 2010 at 9:19 AM, wrote: > Hi Martin, > > Guice code came from maven central, but should be the same as your link, > yes. > > org.apache.axis2.ServiceObjectSupplier is in

RE: [Axis2] JSR181 and ServiceObjectSupplier

2010-04-25 Thread bruce
Hi Martin, Guice code came from maven central, but should be the same as your link, yes. org.apache.axis2.ServiceObjectSupplier is in axis2-1.5.1.jar, so from http://ws.apache.org/axis2/download/1_5/download.cgi My implementation of ServiceObjectSupplier is GuiceServiceObjectSupplier (attached)

Re: RPC SOAP

2010-04-25 Thread Demetris
OK I think I got it. Thanks Andreas Andreas Veithen wrote: All this is by design: * toString is designed to produce an XML fragment that is valid with respect to namespaces. Thus, when applied to the SOAP body, it needs to add a namespace declaration for the http://schemas.xmlsoap.org/soap/env

RE: [Axis2] JSR181 and ServiceObjectSupplier

2010-04-25 Thread Martin Gainty
Hi Bruce experiencing difficulty tracking your guice injection effort did you get your Guice code here? http://code.google.com/p/google-guice/downloads/list can you provide the link for the jars or source which contain ServiceObjectSupplier? thanks! Martin Gainty ___

[Axis2] JSR181 and ServiceObjectSupplier

2010-04-25 Thread bruce
Hi, I'm using axis2-1.5.1. What is the JSR181 equivalent of the parameter "ServiceObjectSupplier" in services.xml? Is it sensible to write a custom POJODeployer? I'm trying to integrate Google Guice and Axis2 using JSR181 annotated POJOs to define my web service. a) I can make Guice inje

Re: trying to access axis server from intranet...

2010-04-25 Thread Prateek Asthana
Azeez, Thanks...the firewall did the trick...earlier the firewall had the setting to display the requests that were blocked but still the blocked requests were not getting listed..hence earlier i never thought about the firewall..but when i set the firewall as per your suggestion below...it all wor

Re: trying to access axis server from intranet...

2010-04-25 Thread Afkham Azeez
Just go back to a basic Axis2 installation without any modifications to the axis2.xml file, and try to access Axis2 by giving the IP address & not the name. Also check whether you have a firewall running on that machine & open up the relevant ports if so. Azeez On Sun, Apr 25, 2010 at 6:48 PM, P

RE: trying to access axis server from intranet...

2010-04-25 Thread Martin Gainty
check these parameters in axis2.xml myhost.com https://someotherhost/context http://www.myApp.com/ws ... tcp://myApp.com/ws .

Re: could some one give me a xml schema example that axis2 can't process ?

2010-04-25 Thread Xuepeng Li
"It does not support mixed attribute SubstitutionGruop etc .." could you give me a example ? thinks. ---Xuepeng 2010/4/25 Amila Suriarachchi > > > On Wed, Apr 21, 2010 at 9:22 PM, Xuepeng Li wrote: > >> en... >> I write a simpleType called "intRange" >> >> >>

Re: trying to access axis server from intranet...

2010-04-25 Thread Prateek Asthana
That was a good point..yes, I am able to ping it... Prateek On Sun, Apr 25, 2010 at 9:15 AM, Afkham Azeez wrote: > Are you able to ping that machine from other machines using the name > haileejo ? > > Azeez > > > On Sun, Apr 25, 2010 at 6:08 PM, Prateek Ast

Re: trying to access axis server from intranet...

2010-04-25 Thread Afkham Azeez
Are you able to ping that machine from other machines using the name haileejo ? Azeez On Sun, Apr 25, 2010 at 6:08 PM, Prateek Asthana wrote: > From XP, I am accessing the Windows Home Server as: > > http://haileejo:8080/axis2/services > >

Re: trying to access axis server from intranet...

2010-04-25 Thread Prateek Asthana
>From XP, I am accessing the Windows Home Server as: http://haileejo:8080/axis2/services Prateek On Sun, Apr 25, 2010 at 8:33 AM, Afkham Azeez wrote: > What is the URL you are using to access this machine? > > Azeez > > > On Sun, Apr 25, 2010 at 5:55 PM, P

Re: trying to access axis server from intranet...

2010-04-25 Thread Afkham Azeez
What is the URL you are using to access this machine? Azeez On Sun, Apr 25, 2010 at 5:55 PM, Prateek Asthana wrote: > Hi, > The Axis2 standalone server can be accessed using http://localhost:8080. > However, I am trying to access it using machines on the intranet. In order > to achieve this, I

trying to access axis server from intranet...

2010-04-25 Thread Prateek Asthana
Hi, The Axis2 standalone server can be accessed using http://localhost:8080. However, I am trying to access it using machines on the intranet. In order to achieve this, I tried modifying the conf/axis2.xml's, hostname parameter but still could not access this machine. Any advise would be helpful.

Re: Starting axis2server.sh in a different port

2010-04-25 Thread Andreas Veithen
On Sun, Apr 25, 2010 at 10:39, Afkham Azeez wrote: > Anyway, what I think Kasun was referring to was a usability enhancement, > which will enable you to start, say multiple Axis2 servers without having to > make copies of the axis2.xml file & editing the ports. > e.g. to start a cluster of Axis2 s

Re: RPC SOAP

2010-04-25 Thread Andreas Veithen
All this is by design: * toString is designed to produce an XML fragment that is valid with respect to namespaces. Thus, when applied to the SOAP body, it needs to add a namespace declaration for the http://schemas.xmlsoap.org/soap/envelope/ namespace. * getText returns the results as specified i

Re: Starting axis2server.sh in a different port

2010-04-25 Thread Afkham Azeez
Anyway, what I think Kasun was referring to was a usability enhancement, which will enable you to start, say multiple Axis2 servers without having to make copies of the axis2.xml file & editing the ports. e.g. to start a cluster of Axis2 servers on the same machine you could do, /home/foo/axis2/axi

Re: Starting axis2server.sh in a different port

2010-04-25 Thread Kasun Indrasiri
You can change the parameter under ' in axis2.xml. To change default port to 7070. -> 7070 regards, Kasun On Sat, Apr 24, 2010 at 11:54 PM, D G wrote: > So the only way is to modify the baseline? Then why not just fix the > configurable -p option? > > Kasoun why is editing the ax