users@jax-rpc.java.net

Re: Not able to generate _Tie classes with wscompile and wsdeploy

From: Mohan Davuluri <mohan.great_at_gmail.com>
Date: Mon, 11 Dec 2006 16:13:04 -0500

All
Does any one know the solution for my problem. I am not sure if this forum
is still active. Please let me know if any one knows why i am not able to
generate _Tie and Serializer classes when i use wscompile. Please read the
below email for more on my question


On 12/7/06, Mohan Davuluri <mohan.great_at_gmail.com> wrote:
>
> 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
>