Good Morning, Just to be sure I understand you correctly, you deployed your axis2 services similar to what is described here: http://wso2.org/node/90/print
And you are able to go to http://localhost:8080/axis2-/services/listServices and see a list of deployed services? My deployment doesn't seem to work like yours. Is there any additional configuration (other than modifying the web.xml and supplying a services.xml file) that you did? Thanks, Joshua On 3/22/07, Martin Gainty <[EMAIL PROTECTED]> wrote:
Good Morning Josh- my index.jsp references the following listing of services <a href="services/listServices">Services</a> so if I want to list all of the Services for axis2- I would supply this URL http://localhost:8080/axis2-/services/listServices HTH Martin-- --------------------------------------------------------------------------- This e-mail message (including attachments, if any) is intended for the use of the individual or entity to which it is addressed and may contain information that is privileged, proprietary , confidential and exempt from disclosure. If you are not the intended recipient, you are notified that any dissemination, distribution or copying of this communication is strictly prohibited. --------------------------------------------------------------------------- Le présent message électronique (y compris les pièces qui y sont annexées, le cas échéant) s'adresse au destinataire indiqué et peut contenir des renseignements de caractère privé ou confidentiel. Si vous n'êtes pas le destinataire de ce document, nous vous signalons qu'il est strictement interdit de le diffuser, de le distribuer ou de le reproduire. ----- Original Message ----- *From:* Josh <[EMAIL PROTECTED]> *To:* [email protected] *Sent:* Thursday, March 22, 2007 7:38 AM *Subject:* Re: [AXIS2] AXIS war deployment Martin, I have tried the same "bare bones" configuration that you mentioned. Trouble is, when you hit http://yourhost:port/yourappname/services/, you don't see a list of deployed services anymore. Any idea how to add this back in? Regards, Joshua On 3/21/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Hi Shimpa, > > we had the same problem and we do it like this: > > 1) we add AxisServlet to web.xml > > <web-app> > <servlet> > <servlet-name>AxisServlet</servlet-name> > <display-name>Apache-Axis Servlet</display-name> > <servlet-class> > org.apache.axis2.transport.http.AxisServlet</servlet-class> > <load-on-startup>1</load-on-startup> > </servlet> > <servlet-mapping> > <servlet-name>AxisServlet</servlet-name> > <url-pattern>/services/*</url-pattern> > </servlet-mapping> > </web-app> > > 2) we use the services.xml generated by WSDL2java > > <serviceGroup> > <service name="ServiceOne" > <!-- everything else here --> > </service> > </serviceGroup> > > 3) we deploy the java classes like any other class in our webapp and add > services.xml like this: > > \---WEB-INF > | web.xml > | > \---services > \---ServiceOne > \---META-INF > services.xml > > 4) We do not deploy a wsdd file > > Good luck > Martin > > -------- Original-Nachricht -------- > Datum: Tue, 20 Mar 2007 10:33:33 -0700 (PDT) > Von: Shimpa Mithal <[EMAIL PROTECTED]> > An: [email protected] > Betreff: AXIS war deployment > > > I have deployed a web service in AXIS under Tomcat and it works well. > Now, > > I want to deploy the same service as a deployable application in > > production where I do not have AXIS. For this I created a war with lib > and web.xml > > from AXIS. When I start Tomcat it comes up without any errors, but how > do I > > deploy this application in Tomcat? > > Do I need a server-config.wsdd? > > What should go in the web.xml ( currently it is AXIS default web.xml). > > Do I need to use java org.apache.axis.client.AdminClient for > deployment? > > If yes, then how? Right now it gives me a 404 , I am not sure if the > URL I > > am giving is correct ... > > > > Thanks > > Shimpa > > > > > > > > > > --------------------------------- > > It's here! Your new message! > > Get new email alerts with the free Yahoo! Toolbar. > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > >
