2 Replies Latest reply on Oct 25, 2007 1:44 PM by jboss_82

    JBoss equivalent of clientGen of WL

    jboss_82

      Hi,
      I am using the top-down approach by starting with the WSDL. I am trying to figure out a mechanism in JBoss 4.2.1 with jbossws-native2.0.1 which is equivalent of WL's clientgen. Objective is to generate a client-jar which can be used by the client program to consume the web service.

      Sample WL clietgen task:

      <taskdef name="clientgen" classname="weblogic.ant.taskdefs.webservices.clientgen.ClientGenTask"
       classpathref="clientgen.class.path"/>
      
       <target name="McAfee">
       <clientgen wsdl="macafeeAdapterContract.wsdl"
       packageName="com.covad.vendororder"
       typePackageName="com.covad.vendororder.xsd"
       clientJar=".\mcafeeadapter-client.jar">
       <classpath refid="clientgen.class.path" />
       </clientgen>
       </target>
      
      



      Quote:
      I know there is a crude way of using the client artifacts generated by "wsconsume", zip those class files and create a client-jar, but I want to know if there's a better way to do this.