Hi Angel,
I'm taking a guess that you are asking how to deploy the services....
I do it via an ant task. You can also do it via the command line:
org.apache.axis.utils.Admin -Dserver=[PATH_TO_YOUR_WSDL]
If you use the template below just make sure you have axis-ant.jar on your
classpath.
<!--
## AXIS-DEPLOY ##
-->
<target name="axis-deploy">
<taskdef resource="axis-tasks.properties" classpathref="build.classpath"/>
<!-- Remove any existing wsdd file -->
<delete file="[OUTPUT_DIRECTORY_PROBABLY_WEB-INF]/server-config.wsdd"
quiet="true"/>
<java classname="org.apache.axis.utils.Admin" fork="true" failonerror="true"
dir="[OUTPUT_DIRECTORY_PROBABLY_WEB-INF]">
<arg value="server"/>
<arg value="[PATH_TO_WSDD_1]"/>
<arg value="[PATH_TO_WSDD_2]"/>
...
<classpath refid="build.classpath"/>
</java>
</target>
Hope this helps,
Doug
-----Original Message-----
From: Angel Cervera Claudio [mailto:[EMAIL PROTECTED]
Sent: Thu 8/24/2006 4:07 AM
To: [email protected]
Cc:
Subject: How could generate *only* deploy.wsdd?
Hello people.
I'm developing a web service.
I have generate wsdl using axis-java2wsdl.
Now i need generate a deploy.wsdd to deploy service.
If i use axis-wsdl2java, task generate deploy.wsdd and client/server
stub.
How could generate *only* deploy.wsdd?
Thanks and apologies for my poor english.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]