On 9/5/07, hotcool <[EMAIL PROTECTED]> wrote: > > > In fact. > I am trying to build a JMS Web service using SOAP over JMS! > > I have successed in bulid a http web service using soap over http using > servicemix. > > but when i build a JMS Web service using SOAP over JMS,I don't know where to > place the web service location such as: > <wsdl11soap11:address location="jms:myQueue?targetService=stockquote"/>
I'm not quite sure what the XML above is. For ServiceMix, you need to create a Service Unit (SU) to hold the configuration for the servicemix-jms component. This can be done using either the servicemix-jms-consumer-service-unit Maven archetype or the servicemix-jms-provider-service-unit Maven archetype depending on whether you need a consumer or a provider. This SU consists mainly of the src/main/resources/xbean.xml file. This is the Spring configuration file for the servicemix-jms component. Once the SU is created, then you will need to create a Service Assembly (SA) to wrap up the SU. I suggest you begin by reading the following two FAQ entries: http://incubator.apache.org/servicemix/what-is-a-jbi-su-and-how-do-i-create-one.html http://incubator.apache.org/servicemix/what-is-a-jbi-sa-and-how-do-i-create-one.html 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 ServiceMix - http://servicemix.org/ Apache Geronimo - http://geronimo.apache.org/ Castor - http://castor.org/
