You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@synapse.apache.org by he...@apache.org on 2011/03/09 11:13:04 UTC

svn commit: r1079725 - /synapse/trunk/java/repository/conf/sample/synapse_sample_156.xml

Author: heshan
Date: Wed Mar  9 10:13:04 2011
New Revision: 1079725

URL: http://svn.apache.org/viewvc?rev=1079725&view=rev
Log:
Patch for SYNAPSE-732
Thanks Kasun Indrasiri for the contribution. 

Added:
    synapse/trunk/java/repository/conf/sample/synapse_sample_156.xml

Added: synapse/trunk/java/repository/conf/sample/synapse_sample_156.xml
URL: http://svn.apache.org/viewvc/synapse/trunk/java/repository/conf/sample/synapse_sample_156.xml?rev=1079725&view=auto
==============================================================================
--- synapse/trunk/java/repository/conf/sample/synapse_sample_156.xml (added)
+++ synapse/trunk/java/repository/conf/sample/synapse_sample_156.xml Wed Mar  9 10:13:04 2011
@@ -0,0 +1,100 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~  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.
+  -->
+
+<definitions xmlns="http://ws.apache.org/ns/synapse">
+
+    <localEntry key="sec_policy" src="file:repository/conf/sample/resources/policy/policy_3.xml"/>
+
+    <proxy name="StockQuoteProxy">
+        <target>
+            <inSequence>
+                <enrich>
+                    <source type="body"/>
+                    <target type="property" property="REQUEST"/>
+                </enrich>
+
+                <send receive="SimpleServiceSeq">
+                    <endpoint name="secure">
+                        <address uri="http://localhost:9000/services/SecureStockQuoteService">
+                            <enableSec policy="sec_policy"/>
+                        </address>
+                    </endpoint>
+                </send>
+            </inSequence>
+            <outSequence>
+                <drop/>
+            </outSequence>
+        </target>
+    </proxy>
+
+
+    <sequence name="SimpleServiceSeq">
+        <property name="SECURE_SER_AMT" expression="//ns:getQuoteResponse/ns:return/ax21:last"
+                xmlns:ns="http://services.samples" xmlns:ax21="http://services.samples/xsd"/>
+        <log level="custom">
+            <property name="SecureStockQuoteService-Amount" expression="get-property('SECURE_SER_AMT')"/>
+        </log>
+        <enrich>
+            <source type="body"/>
+            <target type="property" property="SecureService_Res"/>
+        </enrich>
+        <enrich>
+            <source type="property" property="REQUEST"/>
+            <target type="body"/>
+        </enrich>
+        <send receive="ClientOutSeq">
+            <endpoint name="SimpleStockQuoteService">
+                <address uri="http://localhost:9000/services/SimpleStockQuoteService"/>
+            </endpoint>
+        </send>
+    </sequence>
+
+    <sequence name="ClientOutSeq">
+        <property name="SIMPLE_SER_AMT" expression="//ns:getQuoteResponse/ns:return/ax21:last"
+                       xmlns:ns="http://services.samples" xmlns:ax21="http://services.samples/xsd"/>
+        <log level="custom">
+            <property name="SimpleStockQuoteService-Amount" expression="get-property('SIMPLE_SER_AMT')"/>
+        </log>
+        <enrich>
+            <source type="body"/>
+            <target type="property" property="SimpleService_Res"/>
+        </enrich>
+
+        <filter xpath="fn:number(get-property('SIMPLE_SER_AMT')) > fn:number(get-property('SECURE_SER_AMT'))">
+            <then>
+                <log>
+                    <property name="StockQuote" value="SecureStockQuoteService"/>
+                </log>
+                <enrich>
+                    <source type="property" property="SecureService_Res"/>
+                    <target type="body"/>
+                </enrich>
+            </then>
+            <else>
+                <log>
+                    <property name="StockQuote" value="SimpleStockQuoteService"/>
+                </log>
+            </else>
+        </filter>
+
+        <send/>
+    </sequence>
+
+</definitions>