Hi All
Following is the build script that i am using. I am not seeing the wscompile
or the wsdeploy generate the _Tie classes. I am not sure at which point are
the Tie classes and Serializers are going to be generated. I am using the
nodatabinding option for document/literal type
<target name="generate-server-from-wsdl" depends="compile-server"
description="Runs wscompile to generate the client stub classes">
<echo message="Running wscompile...."/>
<exec executable="${wscompile}">
<arg line="-gen:server"/>
<arg line="-f:documentliteral"/>
<arg line="-f:nodatabinding"/>
<arg line="-mapping ${mapping.file}" />
<!-- arg line="-model ${buildhome}/${appname}/model.gz"/ -->
<arg line="-f:wsi"/>
<arg line="-d ${buildhome}/web/WEB-INF/classes"/>
<arg line="-classpath ${buildhome}/web/WEB-INF/classes"/>
<arg line="${config.wsdl}"/>
<arg line="-keep"/>
</exec>
</target>
<target name="process-war" depends="init,create-war"
description="Runs wsdeploy to generate the ties and create a
deployable WAR file">
<echo message="Running wsdeploy...."/>
<wsdeploy
keep="true"
inWarFile="${dist.dir}/${appname}-raw.war"
outWarFile="${dist.dir}/${appname}.war"
verbose="true" source="1.1">
<classpath refid="compile.classpath"/>
</wsdeploy>
Please let me know if am missing something
-- M