On Dec 6, 2007 5:12 PM, BradS <[EMAIL PROTECTED]> wrote: > > I am trying to get the wsdl-first-sa to deploy, but am having no luck. I > have the servicemix container running, but when I copy the > wsdl-first-sa-3.2.1.zip into <servicemix_home>/deploy, > <servicemix_home>/install, <servicemix_home>/bin/deploy or > <servicemix_home>/bin/install I get no activity from the service. I was > able to deploy once using the mvn jbi:projectDeploy target, but have not > been able to recreate it using any combination of actions. > > Is there something simple missing here? I am beginning to wonder if this > product is WAY too complicated for what we need (simple messagin/queuing).
There are instructions for the wsdl-first example in the README.txt file, did you try to use those yet? The README.txt file is only one path to deploying a SA. Based on what you're describing, you should know that ServiceMix has changed a bit just recently to make deployment easier and there is no longer separate install and deploy directories. There is now a single hotdeploy directory where you copy your SAs for deployment. >From the wsdl-first directory, you need to build the project using the following command (which requires Maven 2.0.4 or greater) from the command line: $ mvn install This will build and package everything into the wsdl-first-sa/target directory. Then copy the wsdl-first-sa/target/wsdl-first-sa-<version>.jar into the hotdeploy directory. This will deploy the wsdl-first example into ServiceMix. It seems like you're having a difficult time getting started. To get started, I'd usally recommend the Quick Start (http://servicemix.apache.org/1-quick-start.html) but it appears to be slightly out of date. In addition, you should take a walk through the first two Beginner Guides: 1) http://servicemix.apache.org/1-beginner-guided-tour-and-core-concepts.html 2) http://servicemix.apache.org/2-beginner-using-maven-to-develop-jbi-applications.html Then move on to the following: 1) http://servicemix.apache.org/what-is-jbi.html 2) http://servicemix.apache.org/what-is-a-jbi-su-and-how-do-i-create-one.html All of this info should give you a better foothold before proceeding further. Bruce -- perl -e 'print unpack("u30","D0G)[EMAIL PROTECTED]&5R\"F)R=6-E+G-N>61E<D\!G;6%I;\"YC;VT*" );' Apache ActiveMQ - http://activemq.org/ Apache Camel - http://activemq.org/camel/ Apache ServiceMix - http://servicemix.org/ Apache Geronimo - http://geronimo.apache.org/ Blog: http://bruceblog.org/
