Henrik, I was unable to reproduce this. I have changed the config a little bit because those services are not with me and I don't think that will affect the problem.
Here is the modified configuration that I have tried. <?xml version="1.0" encoding="UTF-8"?> <syn:definitions xmlns:syn="http://ws.apache.org/ns/synapse"> <syn:registry provider="org.wso2.esb.registry.ESBRegistry"> <syn:parameter name="cachableDuration">60000</syn:parameter> <syn:parameter name="root">file:registry/</syn:parameter> </syn:registry> <syn:proxy name="MFProxy" startOnLoad="true"> <syn:target inSequence="MFSeq" outSequence="main" faultSequence="fault"/> </syn:proxy> <syn:sequence name="MFSeq"> <syn:clone> <syn:target sequence="MOD1"/> <syn:target sequence="MOD2"/> </syn:clone> </syn:sequence> <syn:sequence name="MOD1"> <!--<syn:send> <syn:endpoint> <syn:wsdl service="TestReqRes" port="TestReqResSOAP" uri="http://localhost:9000/axis2/services/TestReqRes?wsdl" format="soap11"> <syn:enableAddressing/> </syn:wsdl> </syn:endpoint> </syn:send>--> <syn:log level="full"/> <syn:drop/> </syn:sequence> <syn:sequence name="MOD2"> <!--<syn:send> <syn:endpoint> <syn:wsdl service="TestReqRes2" port="TestReqResSOAP" uri="http://localhost:9000/axis2/services/TestReqRes2?wsdl" format="soap11"> <syn:enableAddressing/> </syn:wsdl> </syn:endpoint> </syn:send>--> <syn:log level="full"/> <syn:drop/> </syn:sequence> <syn:sequence name="fault"> <syn:log/> </syn:sequence> <syn:sequence name="main"> <syn:in> <syn:log level="full"/> <syn:filter source="get-property('To')" regex="http://localhost:9000.*"> <syn:send/> </syn:filter> </syn:in> <syn:out> <syn:send/> </syn:out> </syn:sequence> </syn:definitions> But I am not getting the error that you pointed. Can you try this config and let me know your results. Can you change the log level of org.apache.synapseto DEBUG in the log4j.properties found at webapp/WEB-INF/classes/conf folder and send me the full debug log. Thanks, Ruwan On Nov 12, 2007 6:09 PM, Henrik Plate <[EMAIL PROTECTED]> wrote: > > Hi Ruwan, > > I don't think it's related to the proxy not finding sth. > > If I replace the clone mediator by two sequence mediators sequentially > calling MOD1 and MOD2, it works (even though I have the initial problems > related to the closed HTTP connection when each service sends a response > message). Please find the complete config below. > > Kind regards, > Henrik > ______________________________________ > > <?xml version="1.0" encoding="UTF-8"?> > <syn:definitions xmlns:syn="http://ws.apache.org/ns/synapse"> > <syn:registry provider="org.wso2.esb.registry.ESBRegistry"> > <syn:parameter name="cachableDuration">60000</syn:parameter> > <syn:parameter name="root">file:registry/</syn:parameter> > </syn:registry> > <syn:proxy name="MFProxy" startOnLoad="true"> > <syn:target inSequence="MFSeq" outSequence="main" > faultSequence="fault"/> > </syn:proxy> > <syn:sequence name="MFSeq"> > <syn:clone> > <syn:target sequence="MOD1"/> > <syn:target sequence="MOD2"/> > </syn:clone> > </syn:sequence> > <syn:sequence name="MOD1"> > <syn:send> > <syn:endpoint> > <syn:wsdl service="TestReqRes" port="TestReqResSOAP" > uri="http://localhost:9000/axis2/services/TestReqRes?wsdl" > format="soap11"> > <syn:enableAddressing/> > </syn:wsdl> > </syn:endpoint> > </syn:send> > </syn:sequence> > <syn:sequence name="MOD2"> > <syn:send> > <syn:endpoint> > <syn:wsdl service="TestReqRes2" port="TestReqResSOAP" > uri="http://localhost:9000/axis2/services/TestReqRes2?wsdl" > format="soap11"> > <syn:enableAddressing/> > </syn:wsdl> > </syn:endpoint> > </syn:send> > </syn:sequence> > <syn:sequence name="fault"> > <syn:log/> > </syn:sequence> > <syn:sequence name="main"> > <syn:in> > <syn:log level="full"/> > <syn:filter source="get-property('To')" > regex="http://localhost:9000.*"> > <syn:send/> > </syn:filter> > </syn:in> > <syn:out> > <syn:send/> > </syn:out> > </syn:sequence> > </syn:definitions> > > > -- > View this message in context: > http://www.nabble.com/Multiple-responses-tf4651525.html#a13704899 > Sent from the Synapse - Dev mailing list archive at Nabble.com. > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- Ruwan Linton http://www.wso2.org - "Oxygenating the Web Services Platform"
