You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@servicemix.apache.org by Jaime Fernández <jj...@gmail.com> on 2006/03/16 11:47:23 UTC

soap-binding example

I'm trying soap-binding example on servicemix-3.0-SNAPSHOT. I've copied
soap-binding source folder into examples folder and executed "ant setup" to
build the sample. The problem is that there is no "components" directory in
my servicemix-3.0 binary distribution so the ant task fails:
  ---------------------------
  <target name="setup" depends="build-sa" description="Setup servicemix">
    <mkdir dir="install"/>
    <mkdir dir="deploy"/>
    <copy todir="install">
      <fileset dir="../../components" includes="*jsr181*"/>
      <fileset dir="../../components" includes="*http*"/>
    </copy>
    <copy file="${build.dir}/soap-demo-sa.zip" todir="deploy"/>
  </target>
  ---------------------------
Although I can create this directory in order to run correctly ant, I don't
know how to create the components referenced there: jsr181 and http.
What am I doing bad?