On Nov 19, 2007 2:48 AM, martymusk <[EMAIL PROTECTED]> wrote:
>
> Hi,
> in ws-notification example what is the job that is runned by execute()
> method of ServiceMixJob class?

I believe what you need is in this file:

http://svn.apache.org/viewvc/servicemix/trunk/distributions/apache-servicemix/src/main/release/examples/ws-notification/instance3/servicemix3.xml?view=markup

The following snippet from that file creates the triggers using the
org.quartz.JobDetail object:

            <property name="triggers">
              <map>
                <entry>
                  <key>
                    <bean class="org.quartz.SimpleTrigger">
                      <property name="repeatInterval" value="2000"/>
                      <property name="repeatCount" value="20"/>
                    </bean>
                  </key>
                    <bean class="org.quartz.JobDetail">
                      <property name="name" value="My Example Job"/>
                      <property name="group" value="ServiceMix"/>
                    </bean>
                </entry>
              </map>
            </property>

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/

Reply via email to