You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ws.apache.org by Apache Wiki <wi...@apache.org> on 2005/09/25 01:28:12 UTC

[Ws Wiki] Update of "Synapse/200509F2F" by PaulFremantle

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Ws Wiki" for change notification.

The following page has been changed by PaulFremantle:
http://wiki.apache.org/ws/Synapse/200509F2F

------------------------------------------------------------------------------
   * '''Provider Endpoint''': The service endpoint which is being mediated. 
   * '''Listener''': A source of messages into Synapse.
   * '''Client''': The thing that sends messages (which end up at a Listener) to Synapse to be mediated and delivered to a Provider Endpoint.
+ 
+ 
+ ====XML==============
+ <sxl>
+ 	<match xpath="wsa:To/address=http://dims.com/tricky"/>
+ 	<mediation name="dims">
+ 		<param name="finalendpoint" value="http://paul.com/easy"/>
+ 	</mediation>
+ </sxl>
+ 
+ <wsp:PolicyAttachment>
+ 	<AppliesTo>
+ 		<synapse:xpath 		 
+ 		condition="synapse:message/wsa:To/address=http://dims.com/tricky"/>
+ 	</AppliesTo>
+ 	<Policy>
+ 			<synapse:mediation name="dims">
+ 				<param name="finalendpoint" value="http://paul.com/easy"/>
+ 			</synapse:mediation>
+ 	</Policy>
+ </wsp:PolicyAttachment>
+ 
+ 
+ 
   * '''Mediation''': The stuff that happens related to a message inside Synapse when in arrives via a Listener and until it goes out to a Provider Endpoint.
   * '''Mediation Component''': Implementation of some mediation: i.e., some action to or related to a message. The mediation component may be composed of lots of other mediation components or be an atomic mediation component which has some specific behavior.