<!-- Generate WSDL -->
<target name="generateAuthenticationWSDL" depends="compile">
<axis-java2wsdl
classname="com.hmco.morse.authentication.service.RemoteAuthenticationService"
namespace="urn:AuthenticationWS"
location="${soap.service}/AuthenticationWS"
output="${project.config.dir}/AuthenticationWS.wsdl">
<mapping namespace="urn:AuthenticationWS" package="com.hmco.morse.authentication.service"/>
</axis-java2wsdl>
</target>
<!-- Generate WSDL -->
<target name="generateAuthenticationWrappedWSDL" depends="compile">
<axis-java2wsdl
classname="com.hmco.morse.authentication.service.RemoteAuthenticationService"
namespace="urn:AuthenticationWS"
location="${soap.service}/AuthenticationWS"
output="${project.config.dir}/AuthenticationWS.wsdl"
style="wrapped">
<mapping namespace="urn:AuthenticationWS" package="com.hmco.morse.authentication.service"/>
</axis-java2wsdl>
</target>
<!-- Generate Client And Move Descriptors -->
<target name="generateAuthenticationClient">
<axis-wsdl2java
url="${project.config.dir}/AuthenticationWS.wsdl"
output="${java2wsdl.output.dir}"
deployscope="request"
serverSide="yes"
verbose="true"
helpergen="false">
<mapping namespace="urn:AuthenticationWS" package="com.hmco.morse.authentication.service"/>
</axis-wsdl2java>
<antcall target="moveAxisDescriptors"/>
</target>
<target name="moveAxisDescriptors">
<echo message="moving: ${java2wsdl.output.dir}/com/hmco/morse/authentication/service/deploy.wsdd"/>
<move file="${java2wsdl.output.dir}/com/hmco/morse/authentication/service/deploy.wsdd" todir="${project.deploy.dir}" failonerror="false"/>
<echo message="moving: ${java2wsdl.output.dir}/com/hmco/morse/authentication/service/undeploy.wsdd"/>
<move file="${java2wsdl.output.dir}/com/hmco/morse/authentication/service/undeploy.wsdd" todir="${project.deploy.dir}" failonerror="false"/>
</target>
This notebook is a collection of code snippets and technical "how to" instructions.
Search This Blog
Axis: building using ant
by: Uki D. Lucas
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment