Uses of Class
org.mule.api.MessagingException

Packages that use MessagingException
org.mule The Mule implementation of the Universal Message Objects(tm) API specification. 
org.mule.api.routing Interfaces that define inbound and outbound routing API. 
org.mule.api.security Security API for authentication and authorisation. 
org.mule.api.service   
org.mule.api.transport Contains the interfaces that comprise a provider implementation. 
org.mule.model.seda   
org.mule.routing Defines the core routing patterns supported by mule. 
org.mule.routing.binding   
org.mule.routing.inbound Inbound router implementation as described in the Enterprise Integration Patterns book. 
org.mule.routing.outbound Outbound router implementation as described in the Enterprise Integration Patterns book. 
org.mule.service   
org.mule.transport Contains Abstract classes providing common functionality for all Mule providers. 
org.mule.transport.cxf.security   
org.mule.transport.file Provides file transport in the form of a directory listeners and file dispatchers. 
org.mule.transport.http Provides http transport including proxy support. 
org.mule.transport.http.components   
org.mule.transport.jms Provides Jms transport connectivity with support for all Jms features. 
 

Uses of MessagingException in org.mule
 

Subclasses of MessagingException in org.mule
 class FailedToQueueEventException
          FailedToQueueEventException is thrown when an event cannot be put on an internal service queue.
 

Uses of MessagingException in org.mule.api.routing
 

Subclasses of MessagingException in org.mule.api.routing
 class CouldNotRouteInboundEventException
          CouldNotRouteInboundEventException thrown if the current service cannot accept the inbound event.
 class CouldNotRouteOutboundMessageException
          CouldNotRouteOutboundMessageException thrown if Mule fails to route the current outbound event.
 class ResponseTimeoutException
          ResponseTimeoutException is thrown when a response is not received in a given timeout in the Response Router.
 class RoutePathNotFoundException
          RoutePathNotFoundException is thrown if a routing path for an event cannot be found.
 class RoutingException
          RoutingException is a base class for all routing exceptions.
 class ServiceRoutingException
          ServiceRoutingException is thrown due to a routing exception between the endpoint the event was received on and the service receiving the event.
 

Methods in org.mule.api.routing that throw MessagingException
 boolean InboundRouter.isMatch(MuleEvent event)
          Determines if the event should be processed by this router.
 boolean OutboundRouter.isMatch(MuleMessage message)
          Determines if the event should be processed by this router.
 MuleEvent[] InboundRouter.process(MuleEvent event)
          A received MuleEvent is passed to this method for processing.
 MuleMessage InboundRouterCollection.route(MuleEvent event)
           
 MuleMessage OutboundRouterCollection.route(MuleMessage message, MuleSession session)
          Prepares one or more events to be dispached by a Message Dispatcher.
 MuleMessage InterfaceBinding.route(MuleMessage message, MuleSession session)
          This method is responsible for routing the Message via the MuleSession.
 MuleMessage OutboundRouter.route(MuleMessage message, MuleSession session)
          This method is responsible for routing the Message via the MuleSession.
 

Uses of MessagingException in org.mule.api.security
 

Subclasses of MessagingException in org.mule.api.security
 class CredentialsNotSetException
          CredentialsNotSetException is thrown when user credentials cannot be obtained from the current message
 class EncryptionNotSupportedException
          EncryptionNotSupportedException is thrown if an algorithm is set in the MULE_USER header but it doesn't match the algorithm set on the security filter
 class SecurityException
          SecurityException is a generic security exception
 class UnauthorisedException
          UnauthorisedException is thrown if authentication fails
 class UnsupportedAuthenticationSchemeException
          UnsupportedAuthenticationSchemeException is thrown when a authentication scheme is being used on the message that the Security filter does not understand
 

Uses of MessagingException in org.mule.api.service
 

Subclasses of MessagingException in org.mule.api.service
 class ServiceException
          ServiceException should be thrown when some action on a service fails, such as starting or stopping
 

Uses of MessagingException in org.mule.api.transport
 

Subclasses of MessagingException in org.mule.api.transport
 class DispatchException
          DispatchException is thrown when an endpoint dispatcher fails to send, dispatch or receive a message.
 

Uses of MessagingException in org.mule.model.seda
 

Methods in org.mule.model.seda that throw MessagingException
protected  void SedaService.dispatchToOutboundRouter(MuleEvent event, MuleMessage result)
           
 

Uses of MessagingException in org.mule.routing
 

Subclasses of MessagingException in org.mule.routing
 class AggregationException
          TODO document
 class CorrelationTimeoutException
          TODO
 

Uses of MessagingException in org.mule.routing.binding
 

Methods in org.mule.routing.binding that throw MessagingException
 MuleMessage DefaultInterfaceBinding.route(MuleMessage message, MuleSession session)
           
 

Uses of MessagingException in org.mule.routing.inbound
 

Methods in org.mule.routing.inbound that throw MessagingException
protected  String IdempotentReceiver.getIdForEvent(MuleEvent event)
           
protected  String IdempotentSecureHashReceiver.getIdForEvent(MuleEvent event)
           
 boolean SelectiveConsumer.isMatch(MuleEvent event)
           
 boolean WireTap.isMatch(MuleEvent event)
           
 boolean IdempotentReceiver.isMatch(MuleEvent event)
           
 MuleEvent[] SelectiveConsumer.process(MuleEvent event)
           
 MuleEvent[] WireTap.process(MuleEvent event)
           
 MuleEvent[] ForwardingConsumer.process(MuleEvent event)
           
 MuleEvent[] IdempotentReceiver.process(MuleEvent event)
           
 MuleEvent[] CorrelationEventResequencer.process(MuleEvent event)
           
 MuleEvent[] AbstractEventAggregator.process(MuleEvent event)
           
 MuleMessage DefaultInboundRouterCollection.route(MuleEvent event)
           
 

Uses of MessagingException in org.mule.routing.outbound
 

Methods in org.mule.routing.outbound that throw MessagingException
 boolean TransformerRouter.isMatch(MuleMessage message)
           
 MuleMessage DefaultOutboundRouterCollection.route(MuleMessage message, MuleSession session)
           
 MuleMessage TransformerRouter.route(MuleMessage message, MuleSession session)
           
 

Uses of MessagingException in org.mule.service
 

Methods in org.mule.service that throw MessagingException
protected  void AbstractService.dispatchToOutboundRouter(MuleEvent event, MuleMessage result)
           
protected  MuleMessage AbstractService.sendToOutboundRouter(MuleEvent event, MuleMessage result)
           
 

Uses of MessagingException in org.mule.transport
 

Methods in org.mule.transport that throw MessagingException
 MessageAdapter AbstractConnector.getMessageAdapter(Object message, MessageAdapter originalMessageAdapter)
           
 

Uses of MessagingException in org.mule.transport.cxf.security
 

Subclasses of MessagingException in org.mule.transport.cxf.security
 class WebServiceSecurityException
           
 

Uses of MessagingException in org.mule.transport.file
 

Methods in org.mule.transport.file that throw MessagingException
protected  void FileMessageAdapter.setFileMessage(File message)
           
protected  void FileMessageAdapter.setStreamMessage(org.mule.transport.file.ReceiverFileInputStream message)
           
 

Uses of MessagingException in org.mule.transport.http
 

Methods in org.mule.transport.http that throw MessagingException
protected  void HttpMessageReceiver.HttpWorker.preRouteMessage(MuleMessage message)
           
 

Uses of MessagingException in org.mule.transport.http.components
 

Subclasses of MessagingException in org.mule.transport.http.components
 class RestServiceException
           
 

Uses of MessagingException in org.mule.transport.jms
 

Subclasses of MessagingException in org.mule.transport.jms
 class MessageRedeliveredException
           
 



Copyright © 2003-2009 MuleSource, Inc.. All Rights Reserved.