diff options
author | edwardsmj <edwardsmj@13f79535-47bb-0310-9956-ffa450edef68> | 2008-10-30 14:17:56 +0000 |
---|---|---|
committer | edwardsmj <edwardsmj@13f79535-47bb-0310-9956-ffa450edef68> | 2008-10-30 14:17:56 +0000 |
commit | a678ab883636487c691d1c4d8212f499a432f58f (patch) | |
tree | 2d5ba6ed020948757ece5181f27b0231ff29f2c5 /sandbox/event/samples | |
parent | 9902583f830b403dfeb6928c7134f91b752c4690 (diff) |
Updated the composite files so that the Producer and Consumer elements have @eventType attributes
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@709167 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox/event/samples')
-rw-r--r-- | sandbox/event/samples/event-jms/src/main/resources/weatherPublisher.composite | 2 | ||||
-rw-r--r-- | sandbox/event/samples/event-jms/src/main/resources/weatherSubscriber.composite | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sandbox/event/samples/event-jms/src/main/resources/weatherPublisher.composite b/sandbox/event/samples/event-jms/src/main/resources/weatherPublisher.composite index 8c1e84adfc..9eb7e6c880 100644 --- a/sandbox/event/samples/event-jms/src/main/resources/weatherPublisher.composite +++ b/sandbox/event/samples/event-jms/src/main/resources/weatherPublisher.composite @@ -30,7 +30,7 @@ </service>
- <producer name="weatherPublisher">
+ <producer name="weatherPublisher" eventTypes="WeatherEvent">
<binding.jms initialContextFactory="org.apache.activemq.jndi.ActiveMQInitialContextFactory"
jndiURL="tcp://localhost:61619">
<destination name="WeatherQueue" create="ifnotexist"/>
diff --git a/sandbox/event/samples/event-jms/src/main/resources/weatherSubscriber.composite b/sandbox/event/samples/event-jms/src/main/resources/weatherSubscriber.composite index b4fcae1565..2166def160 100644 --- a/sandbox/event/samples/event-jms/src/main/resources/weatherSubscriber.composite +++ b/sandbox/event/samples/event-jms/src/main/resources/weatherSubscriber.composite @@ -27,7 +27,7 @@ <implementation.java class="weather.WeatherSubscriberComponent"/>
- <consumer name="weatherSubscriber">
+ <consumer name="weatherSubscriber" eventTypes="WeatherEvent">
<binding.jms initialContextFactory="org.apache.activemq.jndi.ActiveMQInitialContextFactory"
jndiURL="tcp://localhost:61619">
<destination name="WeatherQueue" create="ifnotexist"/>
|