RE: AXIS": Problem deploying web service

2006-09-12 Thread Kedar, Shahar
Subject: AXIS": Problem deploying web service Hello, I am trying to deploy my first web service using AXIS2. But every time I start tomcat, the deploy mechanism fails. AXIS2 is not able to detect the services.xml file, although I placed it in the META-INF directory. Here is the structure o

AXIS": Problem deploying web service

2006-09-09 Thread Thorsten Kraus
Hello, I am trying to deploy my first web service using AXIS2. But every time I start tomcat, the deploy mechanism fails. AXIS2 is not able to detect the services.xml file, although I placed it in the META-INF directory. Here is the structure of the HelloWorld.aar: HelloWorld |-MET

RE: Problem deploying web service

2006-06-20 Thread Miller, Janet
ssage- From: Ben Ethridge [mailto:[EMAIL PROTECTED] Sent: Monday, June 19, 2006 5:56 PM To: axis-user@ws.apache.org Subject: RE: Problem deploying web service It is my understanding that this is not a show-stopper error unless you are using soap with attachments. If you are using attachments, you

RE: Problem deploying web service

2006-06-19 Thread Ben Ethridge
From: Miller, Janet [mailto:[EMAIL PROTECTED] Sent: Monday, June 19, 2006 5:18 PM To: axis-user@ws.apache.org Subject: Problem deploying web service I'm trying to deploy a web service that I had deployed a few months ago. My machine, however, got re-imaged, so I had to reinstall everything an

Problem deploying web service

2006-06-19 Thread Miller, Janet
I'm trying to deploy a web service that I had deployed a few months ago. My machine, however, got re-imaged, so I had to reinstall everything and set up my paths, etc. Now I can't get it to work. When I tried to deploy my WS, I got the following: Jun 19, 2006 5:13:38 PM org.apache.axis.utils.Jav

Error while deploying Web Service

2005-09-29 Thread Prashant Bhalesain
I am getting this error no matter whatever I do. I appreciate if someone could help me in understanding where I might be making mistakes. Even though I try to define this attribute as http://schemas.xmlsoap.org/soap/envelope/}Server.generalException faultSubcode: faultString: Bean attribute mes

RE: Deploying web service with more then one class

2005-08-16 Thread Grossberger, Guenter
> Subject: RES: Deploying web service with more then one class > > Guy, > > Do you know if there is any SOAP Framework engine that this feature is > possible? I need to start some threads when invoking my web > service. And > thread definition is in another java class. As

RES: Deploying web service with more then one class

2005-08-16 Thread Fabrício
cture. I'm thinking in give up this idea. :'-( Thanks a lot, Fabrício. -Mensagem original- De: Guy Rixon [mailto:[EMAIL PROTECTED] Enviada em: terça-feira, 16 de agosto de 2005 05:31 Para: axis-user@ws.apache.org Assunto: Re: Deploying web service with more then one class H

Re: Deploying web service with more then one class

2005-08-16 Thread Guy Rixon
Hi, this is the default situation. Axis makes the methods of exactly one class, which you choose, visible as web-service operations. Anything that class calls is not exposed as part of the web-service. In WSDD, the className parameter of the service element nominates the class exposed as the web s

Deploying web service with more then one class

2005-08-15 Thread Fabrício
Hi folks,   Let me explain... I have a java class (my_class.class) that uses methods from other classes (another_class_1.class, another_class2.class,..) created by me. I want to let only the my_class.class available as a web service. How can I do this? Using the simple deploy (.jws) in ax

Re: deploying web service

2005-06-13 Thread Kanchana Welagedara
Thanks for any help > > > > > > > > > > > > > > >From: Woodchuck <[EMAIL PROTECTED]> > >Reply-To: axis-user@ws.apache.org > >To: axis-user@ws.apache.org > >Subject: Re: deploying web service > >Date: Fri, 10 Jun 200

Re: deploying web service

2005-06-13 Thread Plorks mail
From: Woodchuck <[EMAIL PROTECTED]> Reply-To: axis-user@ws.apache.org To: axis-user@ws.apache.org Subject: Re: deploying web service Date: Fri, 10 Jun 2005 12:55:35 -0700 (PDT) hihi, the deploy/undeploy.wsdd are not needed in production. they are used to generate the server-conf

Re: deploying web service

2005-06-13 Thread Plorks mail
hi I keep reading about a war file - do i need to create this as well? Thanks for your help From: Woodchuck <[EMAIL PROTECTED]> Reply-To: axis-user@ws.apache.org To: axis-user@ws.apache.org Subject: Re: deploying web service Date: Fri, 10 Jun 2005 12:55:35 -0700 (PDT) hihi, the

deploying web service from remote

2005-06-13 Thread Gerardo
Hi, I finished the implementation of my web services, and i´m trying to install web service in othr machine to check the services. I install Tomcat in the machine, import war file from tomcat. i try to deploy the service from my machine changing in build.xml localhost to 192.168.0.x , ip of r

Re: deploying web service

2005-06-12 Thread zhangyu
- 原邮件 - 从: Plorks mail <[EMAIL PROTECTED]> 日期: 星期五, 六月 10日, 2005 下午11:48 主题: Re: deploying web service > > > Hi > > Thanks for your reply > > Something like this > > java org.apache.axis.client.AdminClient deploy.wsdd > > I would have top copy

Re: deploying web service

2005-06-11 Thread Plorks mail
Many thanks for your help Very helpful From: Woodchuck <[EMAIL PROTECTED]> Reply-To: axis-user@ws.apache.org To: axis-user@ws.apache.org Subject: Re: deploying web service Date: Fri, 10 Jun 2005 12:55:35 -0700 (PDT) hihi, the deploy/undeploy.wsdd are not needed in production. th

Re: deploying web service

2005-06-10 Thread Woodchuck
hihi, the deploy/undeploy.wsdd are not needed in production. they are used to generate the server-config.wsdd the server-config.wsdd goes into your webapp/WEB-INF folder (same as your web.xml deployment descriptor file) if you have web services working on your local machine, deploying it on 'th

Re: deploying web service

2005-06-10 Thread Plorks mail
ct: Re: deploying web service Date: Fri, 10 Jun 2005 17:35:02 +0200 Hi, you can use the ant tasks supplied with axis to deploy/undeploy your service. Regards, Tom Plorks mail wrote: Hi all I've developeed a web service on my local PC. I now need to deploy this to our network so it can be

Re: deploying web service

2005-06-10 Thread Tom Ziemer
Hi, you can use the ant tasks supplied with axis to deploy/undeploy your service. Regards, Tom Plorks mail wrote: Hi all I've developeed a web service on my local PC. I now need to deploy this to our network so it can be used. Can someone point to an example of deploying a webservice to

deploying web service

2005-06-10 Thread Plorks mail
Hi all I've developeed a web service on my local PC. I now need to deploy this to our network so it can be used. Can someone point to an example of deploying a webservice to tomcat. I've read a few articles but they don't seem to be relevant/quite complex to understand I have my deploy/u

Re: Error: deploying Web service to Axis runtime

2005-05-05 Thread Anne Thomas Manes
enlighten me to what this means and how i fix it > > I've had no response from eclipse forums > > Many thanks for your help > > IWAB0489E Error when deploying Web service to Axis runtime > axis-admin failed with {http://xml.apache.o

Error: deploying Web service to Axis runtime

2005-05-05 Thread Plorks mail
I get this error when creating a web service using eclipse wtp tools Can anyone enlighten me to what this means and how i fix it I've had no response from eclipse forums Many thanks for your help IWAB0489E Error when deploying Web service to Axis runtime axis-admin failed with