| <?xml version="1.0" encoding="ISO-8859-1" ?> |
| <!-- |
| ~ Licensed to the Apache Software Foundation (ASF) under one |
| ~ or more contributor license agreements. See the NOTICE file |
| ~ distributed with this work for additional information |
| ~ regarding copyright ownership. The ASF licenses this file |
| ~ to you under the Apache License, Version 2.0 (the |
| ~ "License"); you may not use this file except in compliance |
| ~ with the License. You may obtain a copy of the License at |
| ~ |
| ~ http://www.apache.org/licenses/LICENSE-2.0 |
| ~ |
| ~ Unless required by applicable law or agreed to in writing, |
| ~ software distributed under the License is distributed on an |
| ~ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| ~ KIND, either express or implied. See the License for the |
| ~ specific language governing permissions and limitations |
| ~ under the License. |
| --> |
| |
| <document> |
| <properties> |
| <title>Apache Synapse - Sample 855</title> |
| </properties> |
| <body> |
| <section name="Sample 855: Introduction to Synapse Content Based Router eip function template"> |
| <div class="xmlConf"><!-- Introduction to Synapse Content Based Router eip function template --> |
| <definitions xmlns="http://ws.apache.org/ns/synapse"> |
| <import xmlns="http://ws.apache.org/ns/synapse" name="EipLibrary" package="synapse.lang.eip" /> |
| <proxy name="StockQuoteProxy" transports="https http" startOnLoad="true" trace="disable"> |
| <target> |
| <inSequence> |
| <call-template target="synapse.lang.eip.content_based_router"> |
| <with-param name="routing_exp" value="{{//m0:getQuote/m0:request/m0:symbol}}" xmlns:m0="http://services.samples"/> |
| <with-param name="match_content" value="IBM:cnd1_seq,MSFT:cnd2_seq;cnd3_seq"/> |
| </call-template> |
| </inSequence> |
| <outSequence> |
| <send/> |
| </outSequence> |
| </target> |
| </proxy> |
| <sequence name="send_seq"> |
| <log level="custom"> |
| <property name="DEBUG" value="Condition Satisfied"/> |
| </log> |
| <send> |
| <endpoint name="simple"> |
| <address uri="http://localhost:9000/services/SimpleStockQuoteService"/> |
| </endpoint> |
| </send> |
| </sequence> |
| |
| <sequence name="cnd1_seq"> |
| <log level="custom"> |
| <property name="MSG_FLOW" value="Condition (I) Satisfied"/> |
| </log> |
| <sequence key="send_seq"/> |
| </sequence> |
| <sequence name="cnd2_seq"> |
| <log level="custom"> |
| <property name="MSG_FLOW" value="Condition (II) Satisfied"/> |
| </log> |
| <sequence key="send_seq"/> |
| </sequence> |
| <sequence name="cnd3_seq"> |
| <log level="custom"> |
| <property name="MSG_FLOW" value="Condition (III) Satisfied"/> |
| </log> |
| <sequence key="send_seq"/> |
| </sequence> |
| </definitions></div> |
| <subsection name="Objective"> |
| <p> |
| This sample is an introduction Synapse Content Based Router eip function template. |
| </p> |
| </subsection> |
| <subsection name="Pre-requisites"> |
| <p> |
| <ul> |
| <li> |
| Deploy the SimpleStockQuoteService in the sample Axis2 server and start Axis2 |
| </li> |
| <li> |
| Start Synapse using the configuration numbered 855 (repository/conf/sample/synapse_sample_855.xml) |
| <div class="command"> |
| Unix/Linux: sh synapse.sh -sample 855<br/> |
| Windows: synapse.bat -sample 855 |
| </div> |
| </li> |
| </ul> |
| </p> |
| </subsection> |
| <subsection name="Executing the Client"> |
| <p> |
| In this sample, it routes the message by matching the specified Xpath to the regular expression. Execute the StockQuote client in the dumb client mode, specifying 'IBM', 'MSFT' and 'DELL' as the stock symbols. |
| </p> |
| <p>When the symbol IBM is requested, you will see cnd1_seq sequence is getting executed.</p> |
| <div class="command">ant stockquote -Dtrpurl=http://localhost:8280/services/StockQuoteProxy -Dsymbol=IBM</div> |
| <p>When the symbol MSFT is requested, you will see cnd2_seq sequence is getting executed.</p> |
| <div class="command">ant stockquote -Dtrpurl=http://localhost:8280/services/StockQuoteProxy -Dsymbol=MSFT</div> |
| <p>When the symbol DELL is requested, you will see cnd3_seq sequence is getting executed , which is the default sequence.</p> |
| <div class="command">ant stockquote -Dtrpurl=http://localhost:8280/services/StockQuoteProxy -Dsymbol=DELL</div> |
| |
| </subsection> |
| </section> |
| <p><a href="../samples.html">Back to Catalog</a></p> |
| </body> |
| </document> |