Author: ruwan Date: Thu Jun 5 04:40:27 2008 New Revision: 18009 URL: http://wso2.org/svn/browse/wso2?view=rev&revision=18009
Log: Adding the new configurations for samples Added: branches/esb/java/1.7/esb/java/repository/conf/sample/synapse_sample_155.xml (contents, props changed) branches/esb/java/1.7/esb/java/repository/conf/sample/synapse_sample_257.xml (contents, props changed) branches/esb/java/1.7/esb/java/repository/conf/sample/synapse_sample_258.xml (contents, props changed) Added: branches/esb/java/1.7/esb/java/repository/conf/sample/synapse_sample_155.xml URL: http://wso2.org/svn/browse/wso2/branches/esb/java/1.7/esb/java/repository/conf/sample/synapse_sample_155.xml?pathrev=18009 ============================================================================== --- (empty file) +++ branches/esb/java/1.7/esb/java/repository/conf/sample/synapse_sample_155.xml Thu Jun 5 04:40:27 2008 @@ -0,0 +1,34 @@ +<!-- + ~ Copyright (c) 2005-2008, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + ~ + ~ WSO2 Inc. 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. + ~ + --> +<!-- A proxy service with a dual channel invocation to the actual server --> +<definitions xmlns="http://ws.apache.org/ns/synapse"> + <proxy name="StockQuoteProxy"> + <target> + <endpoint> + <address uri="http://localhost:9000/soap/SimpleStockQuoteService"> + <enableAddressing separateListener="true"/> + </address> + </endpoint> + <outSequence> + <send/> + </outSequence> + </target> + <publishWSDL uri="file:repository/conf/sample/resources/proxy/sample_proxy_1.wsdl"/> + </proxy> +</definitions> \ No newline at end of file Added: branches/esb/java/1.7/esb/java/repository/conf/sample/synapse_sample_257.xml URL: http://wso2.org/svn/browse/wso2/branches/esb/java/1.7/esb/java/repository/conf/sample/synapse_sample_257.xml?pathrev=18009 ============================================================================== --- (empty file) +++ branches/esb/java/1.7/esb/java/repository/conf/sample/synapse_sample_257.xml Thu Jun 5 04:40:27 2008 @@ -0,0 +1,38 @@ +<!-- + ~ Copyright (c) 2005-2008, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + ~ + ~ WSO2 Inc. 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. + ~ + --> + +<!-- Introduction to FIX Proxy services in Synapse --> + +<definitions xmlns="http://ws.apache.org/ns/synapse"> + <proxy name="OrderProcesserProxy40" transports="fix"> + <target> + <endpoint> + <address uri="fix://localhost:19876?BeginString=FIX.4.0&SenderCompID=SYNAPSE&TargetCompID=EXEC"/> + </endpoint> + <inSequence><log level="full"/></inSequence> + <outSequence><log level="full"/><send/></outSequence> + </target> + + <parameter name="transport.fix.AcceptorConfigURL">file:/home/hiranya/Desktop/fix-config/fix-synapse.cfg</parameter> + <parameter name="transport.fix.AcceptorMessageStore">file</parameter> + <parameter name="transport.fix.InitiatorConfigURL">file:/home/hiranya/Desktop/fix-config/synapse-sender.cfg</parameter> + <parameter name="transport.fix.InitiatorMessageStore">file</parameter> + </proxy> +</definitions> + Added: branches/esb/java/1.7/esb/java/repository/conf/sample/synapse_sample_258.xml URL: http://wso2.org/svn/browse/wso2/branches/esb/java/1.7/esb/java/repository/conf/sample/synapse_sample_258.xml?pathrev=18009 ============================================================================== --- (empty file) +++ branches/esb/java/1.7/esb/java/repository/conf/sample/synapse_sample_258.xml Thu Jun 5 04:40:27 2008 @@ -0,0 +1,44 @@ +<!-- + ~ Copyright (c) 2005-2008, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + ~ + ~ WSO2 Inc. 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. + ~ + --> + +<!-- HTTP to FIX Proxy Service --> +<definitions xmlns="http://ws.apache.org/ns/synapse"> + <proxy name="FIXProxy"> + <target> + <endpoint> + <address uri="fix://localhost:19876?BeginString=FIX.4.0&SenderCompID=SYNAPSE&TargetCompID=EXEC"/> + </endpoint> + + <inSequence> + <property name="transport.fix.ServiceName" value="FIXProxy" scope="axis2-client" /> + <log level="full"/> + </inSequence> + + <outSequence> + <log level="full"/> + <send/> + </outSequence> + </target> + + <parameter name="transport.fix.InitiatorConfigURL">file:/home/hiranya/Desktop/fix-config/synapse-sender.cfg</parameter> + <parameter name="transport.fix.InitiatorMessageStore">file</parameter> + <parameter name="transport.fix.SendAllToInSequence">false</parameter> + </proxy> +</definitions> + _______________________________________________ Esb-java-dev mailing list [email protected] http://wso2.org/cgi-bin/mailman/listinfo/esb-java-dev
