Re: WSDL2Java tool generating invalid package name

2009-09-06 Thread Venkatesh Audinarayanan
> > Hi, > Am using Axis 1.4 version. Have attached the WSDL file. > I use the following command to generate proxy and stub classes > java org.apache.axis.wsdl.WSDL2Java -o > C:\ddrive\10.3\soap_test\axis14_latest\axis-1_4\sigan c:\Sigan.wsdl > > If you look at the attached WSDL (Rename file exten

Re: Axis2 with ADB for input message but not for response message?

2009-09-06 Thread Amila Suriarachchi
On Fri, Sep 4, 2009 at 8:45 PM, VanIngen, Erik (FIES) wrote: > Situation: > I have a WSDL with complete specification of input and response messages. I > would like to use Axis2 with ADB for the input message and would like to > generate the service layer. > > However the return message is a pro

WSDL2Java tool generating invalid package name

2009-09-06 Thread Venkatesh Audinarayanan
Hi, Am using Axis 1.4 version. Have attached the WSDL file. I use the following command to generate proxy and stub classes java org.apache.axis.wsdl.WSDL2Java -o C:\ddrive\10.3\soap_test\axis14_latest\axis-1_4\sigan c:\Sigan.wsdl If you look at the attached WSDL (Rename file extension to zip and

Re: Sharing data between web services

2009-09-06 Thread Amila Suriarachchi
On Sun, Sep 6, 2009 at 11:17 PM, Ramya K Grama wrote: > Thanks! I will try these suggestions and keep you posted. > > However, I still need to know how to call a web service from a Servlet. > Is it as simple as any other POJO client or is there more to it? > you can call AxisServelet from your se

allowedMethods: what about overloaded methods (Axis 1.4)

2009-09-06 Thread Bauer Horscht
Hi everybody, I'm looking for a way to exclude some overloaded methods from deployment, while others (with the same method name) are to be deployed. Is this possible with Axis 1.4? Here is an open issued about this from 2004, which unfortunately hasn't been updated since then: http://issues

RE: AccessControlException from HttpClient - Causes ServiceClient instance to fail

2009-09-06 Thread Martin Gainty
that would be my suggestion // Here are permissions to connect to noaa.gov on Port 80 grant codeBase "file:${catalina.home}/webapps/examples/-" { permission java.net.SocketPermission "*.noaa.gov:80", "connect,resolve"; }; you'll need those same permissions (connect,resolve) to connect to

AccessControlException from HttpClient - Causes ServiceClient instance to fail

2009-09-06 Thread Yashwanth
Hi All: Have you used Axis2 web services on WebSphere with security turned on so you have to use was.policy file to grant the required permissions? If so you might be able to help. We have a Web Service (WS1) calling another WebService (WS2) using ServiceClient. However we get the following exc

Re: Sharing data between web services

2009-09-06 Thread Deepal Jayasinghe
> Thanks! I will try these suggestions and keep you posted. > > However, I still need to know how to call a web service from a Servlet. > You do not need to worry about that AxisServlet does that for you. > Is it as simple as any other POJO client or is there more to it? > > Thanks, > wsNewbie

Re: Sharing data between web services

2009-09-06 Thread Ramya K Grama
Thanks! I will try these suggestions and keep you posted. However, I still need to know how to call a web service from a Servlet. Is it as simple as any other POJO client or is there more to it? Thanks, wsNewbie On Sun, Sep 6, 2009 at 9:39 AM, Deepal Jayasinghe wrote: > If it is run time data I

Re: Sharing data between web services

2009-09-06 Thread Deepal Jayasinghe
If it is run time data I would suggest to store in ConfigurationContext (if there are not belong to the same servie group), if they belong to the same service group then you can store in the service group context. If you deploy the service in transport session you will get access to the HTTP sessi