send mediator does not send to the implecit endpoint when there are two send 
mediators 
---------------------------------------------------------------------------------------

                 Key: SYNAPSE-87
                 URL: https://issues.apache.org/jira/browse/SYNAPSE-87
             Project: Synapse
          Issue Type: Bug
          Components: Core
         Environment: Linux JDK 1.5
            Reporter: Kasun Samarasinghe
            Priority: Minor


When there are two send mediators one with explicit end point declaration and 
another without, send mediator which 
does not have a expecilt endpoint also sends the message to the same end point 
in the expecit declaration, not to the 
implicit endpoint.

E.g.
In following configuration synapse loops between two send mediators since 
implicit send also happens to the same endpoint 
declared in first send mediator.
<definitions xmlns="http://ws.apache.org/ns/synapse";>
   
  <log level="full">
   <property name="incoming-property" value="This is incoming message"/>
   </log>
   
     <send>
   <endpoint>
   <address uri="http://localhost:9000/axis2/services/SimpleStockQuoteService"; 
/>
   </endpoint>
   </send>

<out>
<log level="full">
   <parameter name="outgoing-property" value="This is outgoing message"/>
   </log>
        <send/>(implicit send)
</out>

</definitions>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to