Author: asankaa Date: Sun Jan 11 12:29:54 2009 New Revision: 28675 URL: http://wso2.org/svn/browse/wso2?view=rev&revision=28675
Log: adding sample 503 - remote registry subscription manager Added: trunk/esb/java/modules/samples/src/main/conf/synapse/synapse_sample_503.xml Added: trunk/esb/java/modules/samples/src/main/conf/synapse/synapse_sample_503.xml URL: http://wso2.org/svn/browse/wso2/trunk/esb/java/modules/samples/src/main/conf/synapse/synapse_sample_503.xml?pathrev=28675 ============================================================================== --- (empty file) +++ trunk/esb/java/modules/samples/src/main/conf/synapse/synapse_sample_503.xml Sun Jan 11 12:29:54 2009 @@ -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. + --> + +<!-- Remote registry configuration --> +<definitions xmlns="http://ws.apache.org/ns/synapse"> + <eventSource name="SampleEventSource"> + <subscriptionManager class="org.wso2.carbon.eventing.impl.RemoteRegistryBasedSubscriptionManager"> + <property name="registryURL" value="https://localhost:9446/registry/"/> + <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" > + <log level="full"/> + <eventPublisher eventSourceName="SampleEventSource"/> + </sequence> + + <proxy name="EventingProxy"> + <target inSequence="PublicEventSource" /> + </proxy> +</definitions> _______________________________________________ Esb-java-dev mailing list [email protected] https://wso2.org/cgi-bin/mailman/listinfo/esb-java-dev
