Author: asankaa Date: Thu Dec 11 00:13:47 2008 New Revision: 26775 URL: http://wso2.org/svn/browse/wso2?view=rev&revision=26775
Log: adding sample 500 Added: trunk/esb/java/modules/samples/src/main/conf/synapse/synapse_sample_500.xml Added: trunk/esb/java/modules/samples/src/main/conf/synapse/synapse_sample_500.xml URL: http://wso2.org/svn/browse/wso2/trunk/esb/java/modules/samples/src/main/conf/synapse/synapse_sample_500.xml?pathrev=26775 ============================================================================== --- (empty file) +++ trunk/esb/java/modules/samples/src/main/conf/synapse/synapse_sample_500.xml Thu Dec 11 00:13:47 2008 @@ -0,0 +1,40 @@ +<!-- + ~ 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. + --> + +<!-- Simple Eventing configuration --> +<definitions xmlns="http://ws.apache.org/ns/synapse"> + <eventSource name="SampleEventSource"> + <subscriptionManager class="org.apache.synapse.eventing.managers.DefaultInMemorySubscriptionManager"> + <!--property name="registryURL" value="http://localhost:8180/wso2registry"/> + <property name="username" value="admin"/> + <property name="password" value="admin"/--> + <property name="topicHeaderName" value="Topic"/> + <property name="topicHeaderNS" value="http://apache.org/aip"/> + </subscriptionManager> + </eventSource> + + <sequence name="PublicEventSource" > + <eventPublisher eventSourceName="SampleEventSource"/> + </sequence> + + <proxy name="EventingProxy"> + <log level="full"/> + <target inSequence="PublicEventSource" /> + </proxy> +</definitions> \ No newline at end of file _______________________________________________ Esb-java-dev mailing list [email protected] https://wso2.org/cgi-bin/mailman/listinfo/esb-java-dev
