blob: a76e68935302b5dd24768d224d8f1260d59aa04c [file]
<?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 440</title>
</properties>
<body>
<section name="Sample 440: Respond Mediator - Echo Service with a Proxy Service">
<div class="xmlConf">&lt;definitions xmlns=&quot;http://ws.apache.org/ns/synapse&quot;&gt;
&lt;proxy name=&quot;EchoService&quot;&gt;
&lt;target&gt;
&lt;inSequence&gt;
&lt;respond/&gt;
&lt;/inSequence&gt;
&lt;/target&gt;
&lt;/proxy&gt;
&lt;/definitions&gt;</div>
<subsection name="Objective">
<p>
Demonstrate how to use respond mediator to create a simple echo service
</p>
</subsection>
<subsection name="Pre-requisites">
<p>
<ul>
<li>
Start Synapse using the configuration numbered 440 (repository/conf/sample/synapse_sample_440.xml)
<div class="command">
Unix/Linux: sh synapse.sh -sample 440<br/>
Windows: synapse.bat -sample 440
</div>
</li>
</ul>
</p>
</subsection>
<subsection name="Executing the Client">
<p>
Invoke the EchoService proxy service with a payload.
Following is how we can use curl as the client.
</p>
<div class="command">curl -v -X POST -H "Content-type: application/xml" -d '&lt;test&gt;foo&lt;/test&gt;' 'http://localhost:8280/services/EchoService'</div>
</subsection>
</section>
<p><a href="../samples.html">Back to Catalog</a></p>
</body>
</document>