| <?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 14</title> |
| </properties> |
| <body> |
| <section name="Sample 14: Sequences and Endpoints as local registry items"> |
| <div class="xmlConf"><definitions xmlns="http://ws.apache.org/ns/synapse" |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| xsi:schemaLocation="http://ws.apache.org/ns/synapse http://synapse.apache.org/ns/2010/04/configuration/synapse_config.xsd"> |
| |
| <localEntry key="local-enrty-ep-key" |
| src="file:repository/conf/sample/resources/endpoint/dynamic_endpt_1.xml"/> |
| |
| <localEntry key="local-enrty-sequence-key"> |
| <sequence name="dynamic_sequence"> |
| <log level="custom"> |
| <property name="message" value="*** Test Message 1 ***"/> |
| </log> |
| </sequence> |
| </localEntry> |
| |
| <sequence name="main"> |
| <in> |
| <sequence key="local-enrty-sequence-key"/> |
| <send> |
| <endpoint key="local-enrty-ep-key"/> |
| </send> |
| </in> |
| <out> |
| <send/> |
| </out> |
| </sequence> |
| |
| </definitions></div> |
| <subsection name="Objective"> |
| <p> |
| Objective: Sequence and Endpoints as local registry entries |
| </p> |
| </subsection> |
| |
| <subsection name="Pre-requisites"> |
| <p> |
| <ul> |
| <li> |
| Start the Synapse configuration numbered 14: i.e. synapse |
| -sample 14 |
| </li> |
| <li> |
| Start the Axis2 server and deploy the SimpleStockQuoteService if |
| not already done |
| </li> |
| </ul> |
| </p> |
| </subsection> |
| <subsection name="Executing the Client"> |
| <p> |
| Execute the client as follows. |
| </p> |
| <div class="command">ant stockquote -Dtrpurl=http://localhost:8280/</div> |
| <p>This example shows sequences and endpoints fetched from local |
| registry. Thus it is possible to have endpoints sequences as |
| local registry entries including file entries.Execute the |
| following command to see the sample working, where you will be |
| able to see the log statement from the fetched sequence from the |
| local entry and the endpoint will be fetched from the specified |
| file at runtime and be cached in the system |
| </p> |
| |
| </subsection> |
| |
| </section> |
| <p> |
| <a href="../samples.html">Back to Catalog</a> |
| </p> |
| </body> |
| </document> |