Author: veithen
Date: Sat Nov 22 14:40:58 2008
New Revision: 719934
URL: http://svn.apache.org/viewvc?rev=719934&view=rev
Log:
Documentation: Service parameters are specified using <parameter>, not
<property>.
Modified:
synapse/trunk/java/src/site/xdoc/Synapse_Samples.xml
Modified: synapse/trunk/java/src/site/xdoc/Synapse_Samples.xml
URL:
http://svn.apache.org/viewvc/synapse/trunk/java/src/site/xdoc/Synapse_Samples.xml?rev=719934&r1=719933&r2=719934&view=diff
==============================================================================
--- synapse/trunk/java/src/site/xdoc/Synapse_Samples.xml (original)
+++ synapse/trunk/java/src/site/xdoc/Synapse_Samples.xml Sat Nov 22 14:40:58
2008
@@ -2038,9 +2038,9 @@
is necessary to allow the JMS transport to determine the content type of
incoming messages. With the given configuration
it will first try to read the content type from the 'contentType' message
property and fall back to 'application/xml'
(i.e. POX) if this property is not set. Note that the JMS client used in this
example doesn't send any content type information.</p>
-<p>Note: It is possible to instruct a JMS proxy service to listen to an
already existing destination without creating a new one. To do this, use the
property elements on the proxy service definition to specify the destination
and connection factory etc. </p>
+<p>Note: It is possible to instruct a JMS proxy service to listen to an
already existing destination without creating a new one. To do this, use the
parameter elements on the proxy service definition to specify the destination
and connection factory etc. </p>
<p>e.g. </p>
-<pre xml:space="preserve"><property
name="transport.jms.Destination"
value="dynamicTopics/something.TestTopic"/></pre>
+<pre xml:space="preserve"><parameter
name="transport.jms.Destination">dynamicTopics/something.TestTopic</parameter></pre>
<h2>
<a name="Sample251" id="Sample251">Sample 251: Switching from http/s to
JMS</a></h2>
<pre xml:space="preserve"><definitions
xmlns="http://ws.apache.org/ns/synapse">