diff options
author | bdaniel <bdaniel@13f79535-47bb-0310-9956-ffa450edef68> | 2010-10-11 21:08:02 +0000 |
---|---|---|
committer | bdaniel <bdaniel@13f79535-47bb-0310-9956-ffa450edef68> | 2010-10-11 21:08:02 +0000 |
commit | 31518522e854468ca48bc5d687c50c7926fb14f4 (patch) | |
tree | b8ec2021e6eb20f6ad54bad04fbbea6f38f21022 | |
parent | 7d37d076034e272c23739bcd03540a594918e214 (diff) |
Fix URI in JMS sample composite and update README
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1021508 13f79535-47bb-0310-9956-ffa450edef68
2 files changed, 3 insertions, 3 deletions
diff --git a/sca-java-2.x/trunk/samples/learning-more/binding-jms/helloworld-contribution/README b/sca-java-2.x/trunk/samples/learning-more/binding-jms/helloworld-contribution/README index 88bbe9adcb..580d5e79c7 100644 --- a/sca-java-2.x/trunk/samples/learning-more/binding-jms/helloworld-contribution/README +++ b/sca-java-2.x/trunk/samples/learning-more/binding-jms/helloworld-contribution/README @@ -3,7 +3,7 @@ JMS HelloWorld Sample This sample demonstrates a simple webapp containing a hello world style client and service using the JMS binding for request-response style messaging. -The README in the samples directory (the directory above this) provides +The README in the samples directory (the directory three directories above this) provides general instructions about building and running samples. Take a look there first. @@ -128,4 +128,4 @@ Others... -
\ No newline at end of file + diff --git a/sca-java-2.x/trunk/samples/learning-more/binding-jms/helloworld-contribution/src/main/webapp/WEB-INF/web.composite b/sca-java-2.x/trunk/samples/learning-more/binding-jms/helloworld-contribution/src/main/webapp/WEB-INF/web.composite index c51985bc30..b5d8c70d14 100644 --- a/sca-java-2.x/trunk/samples/learning-more/binding-jms/helloworld-contribution/src/main/webapp/WEB-INF/web.composite +++ b/sca-java-2.x/trunk/samples/learning-more/binding-jms/helloworld-contribution/src/main/webapp/WEB-INF/web.composite @@ -30,7 +30,7 @@ <component name="HelloWorldClientComponent">
<implementation.java class="sample.HelloWorldClient"/>
<reference name="helloWorldRef">
- <binding.jms uri="jms:HelloWorldService"/>
+ <binding.jms uri="jms:queue:HelloWorldService"/>
</reference>
</component>
|