


Views
Replies
Total Likes
Views
Replies
Total Likes
This took me a while to figure out.
Those Classes listed needs to be generated.
Create a project then add build.xml to the project
<?xml version="1.0"?>
<project name="axis-wsdl2java">
<path id="axis.classpath">
<fileset dir="C:\<your own path>axis-bin-1_4\axis-1_4\lib" >
<include name="**/*.jar" />
</fileset>
</path>
<taskdef resource="axis-tasks.properties" classpathref="axis.classpath" />
<target name="encryption-wsdl2java-client" description="task">
<axis-wsdl2java
output="<your project path>\src"
testcase="false"
serverside="false"
verbose="true"
username="<user>"
password="<password>"
url="<your host>/soap/services/FormsService?wsdl&lc_version=9.0.1" >
</axis-wsdl2java>
</target>
</project>
Hope this helps.
Views
Replies
Total Likes