You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@servicemix.apache.org by sandeep reddy <sa...@in2m.com> on 2008/08/28 16:48:20 UTC

Servicemix-Bean hangs during load testing

Hi Servicemix-guys,

Message Flow:

    Client --> Http Consumer SU(in-out) ------> Camel SU
(in-only)----------------> JMS Provider SU (topic)
                                                                               
|
                                                                               
| (in-out)
                                                                               
| 
                                                                          
Bean SU 
                                                      (Generating response
and send back to Http Consumer SU)    

    I am doing load testing for my Service Assembly which contains above
SU's.
    During load testing we found that there is a problem with
ResponseGeneratorService class (which works fine with single requests).
After processing some requests Camel SU is in waiting state which is
expecting response from Response Generator which is not sending.

Response Generator Class:

    import java.io.IOException;
    import java.io.StringWriter;
    import javax.annotation.Resource;
    import javax.jbi.messaging.DeliveryChannel;
    import javax.jbi.messaging.ExchangeStatus;
    import javax.jbi.messaging.MessageExchange;
    import javax.jbi.messaging.MessagingException;
    import javax.jbi.messaging.NormalizedMessage;
    import org.apache.commons.logging.Log;
    import org.apache.commons.logging.LogFactory;
    import org.apache.servicemix.MessageExchangeListener;
    import org.apache.servicemix.jbi.jaxp.SourceTransformer;
    import org.apache.servicemix.jbi.jaxp.StringSource;
    import org.w3c.dom.Document;
    import com.sun.org.apache.xml.internal.serialize.OutputFormat;
    import com.sun.org.apache.xml.internal.serialize.XMLSerializer;
    import com.thoughtworks.xstream.XStream;
    import com.in2m.servicemix.common.errorhandling.ErrorConstants;


        public class ResponseGenerator implements MessageExchangeListener {
    
            @Resource
            private DeliveryChannel channel;
            private static final Log logger =
LogFactory.getLog(ResponseGenerator.class);
            private final static String RESPONSE_MESSAGE_ROOT = "response";
            private static final String REQUEST_MESSAGE_ROOT = "request";
    
            public void onMessageExchange(MessageExchange exchange) throws
MessagingException {
        try{
            if (exchange.getStatus() == ExchangeStatus.ACTIVE) {
                NormalizedMessage normalizedMessageIn =
exchange.getMessage("in");
                String outMessage =
getResponseToClientFromInMessage(normalizedMessageIn);
                NormalizedMessage normalizedMessageOut=
exchange.createMessage();
                normalizedMessageOut.setContent(new
StringSource(outMessage));
                exchange.setMessage(normalizedMessageOut,"out");
                channel.send(exchange);
            }
            } catch(Exception e){
            logger.error(e);
            }
        }
    
        private String getResponseToClientFromInMessage(NormalizedMessage
normalizedMessage) throws Exception {
        // if nothing comes to response generator send system error
        if(normalizedMessage.getContent() == null){
            return createResponseMessage(ErrorConstants.SYSTEM_ERROR,"System
Error");
        }
        SourceTransformer sourceTransformer = new SourceTransformer();
        Document inDocument =
sourceTransformer.toDOMDocument(normalizedMessage);
        inDocument.normalize();
        String response=getResponseMessageFromInMessage(inDocument);
        return response;
    }
        
    private String getResponseMessageFromInMessage(Document inDoc) throws
Exception{
        String documentElement=inDoc.getDocumentElement().getNodeName();
        //send same message as response
        if(documentElement.equals(RESPONSE_MESSAGE_ROOT)){
            return createXMLMessageFromDocument(inDoc);
        }
        //if message goes to jms provider in case of update profile send
succsess
        if(documentElement.equals(REQUEST_MESSAGE_ROOT)){
            return createResponseMessage(ErrorConstants.SUCCESS,"success");
        }
        return null;
    }
    
    private static String createResponseMessage(String status, String
message) {
        XStream xstream = new XStream();
        xstream.alias(RESPONSE_MESSAGE_ROOT, ResponseMessage.class);
        ResponseMessage response =  new ResponseMessage();
        response.setStatus(status);
        response.setMessage(message);
        return xstream.toXML(response);
    }
    
    private String createXMLMessageFromDocument(Document document) throws
IOException{
        OutputFormat format    = new OutputFormat (document);
        StringWriter stringOut = new StringWriter ();    
        XMLSerializer serial   = new XMLSerializer (stringOut, format);
        serial.serialize(document);
        String message=  stringOut.toString().replace("<?xml version=\"1.0\"
encoding=\"UTF-8\"?>", "");
        return message;
    }
}


I think something is missing in this class. What am I missing? What causes
this class to hang?
This happens in case of load testing only.

Please help...

Sandeep.

-- 
View this message in context: http://www.nabble.com/Servicemix-Bean-hangs-during-load-testing-tp19202218p19202218.html
Sent from the ServiceMix - User mailing list archive at Nabble.com.


Re: Servicemix-Bean hangs during load testing

Posted by pratibhaG <pr...@in2m.com>.
Another problem is that the messages are lost in between during the
processing.
1)I hit 600 requests with 200 parallel request at a time 
2)http consumer dispatches all the 600 requests but messageEnricher bean
consumes only 
3)Message Enricher processes about 400 messages 
4)Validation service gets only about 250 
5)RService gets 230
6)Jms provider gets 230

So about 370 messages are lost.
-- 
View this message in context: http://www.nabble.com/Servicemix-Bean-hangs-during-load-testing-tp19202218p19309031.html
Sent from the ServiceMix - User mailing list archive at Nabble.com.


Re: Servicemix-Bean hangs during load testing

Posted by pratibhaG <pr...@in2m.com>.
One more thing I found that it is not the ResponseGenerator bean which causes
problem. But When I put two beans in an opeartion that time it hangs.

Currently I put two beans in an operation.

What is the problem?

Here is the other bean:
package com.in2m.servicemix.common.bean;

import java.security.Principal;

/**
 * @author sreddy
 *
 */
public class MessageEnricher implements MessageExchangeListener {
	
	private static final Log logger = LogFactory.getLog(MessageEnricher.class);
	private String validateService;
	
	/* (non-Javadoc)
	 * @see
org.apache.servicemix.MessageExchangeListener#onMessageExchange(javax.jbi.messaging.MessageExchange)
	 */
	
	public void setValidateService(String validateService) {
		this.validateService = validateService;
	}
	
	public String getValidateService() {
		return this.validateService;
	}
	
	@Resource
	private ComponentContext context;
	private static ServiceMixClient client = null; 
	@Resource
	private DeliveryChannel channel;
	
	public void onMessageExchange (MessageExchange exchange ) throws
MessagingException {
		
		if ( client == null ) {
			client = new ServiceMixClientFacade(context);
		}
		
		if (exchange.getStatus() == ExchangeStatus.ACTIVE) {
			
			if (exchange instanceof InOut == true) {
				
				try {
					NormalizedMessage inMessage = exchange.getMessage("in");
					
					Set<Principal> principals =
inMessage.getSecuritySubject().getPrincipals();
					String roleString = "";
					Iterator<Principal> principalIterator = principals.iterator();
					
					while (principalIterator.hasNext()) {
						Principal element = (Principal) principalIterator.next();
						roleString += element.getName();
						if(principalIterator.hasNext()) {
							roleString += ",";
						}
					}
					//Destination destination =
client.createDestination(getValidateService());
					/*QName service = new QName(getValidateService());
					exchange.setService(service);
					NormalizedMessage normalizedMessageOut= exchange.createMessage();
					normalizedMessageOut.setContent(inMessage.getContent());
					normalizedMessageOut.setProperty("userPrincipals",roleString);
					exchange.setMessage(normalizedMessageOut,"out");
					channel.send(exchange);
					*/
					
					Destination destination =
client.createDestination(getValidateService());
                    // Create New MessageExchange
                    InOut inOutExchange = destination.createInOutExchange();
                    
                    // Get object of In Message
                    NormalizedMessage request =
inOutExchange.getInMessage();
                    request.setContent(inMessage.getContent());
                    request.setProperty("userPrincipals",roleString);
                    
                    // Send the new exchange and wait for the anwer
                    client.sendSync(inOutExchange);
                    
                    // Set the out of the inOutExchange into the out of the
current exchange and send back the current exchange
                   
MessageUtil.transferToOut(inOutExchange.getMessage("out"), exchange);
                    client.done(inOutExchange);
                    channel.send(exchange);
					
					
				} catch (Exception e) {
					logger.error("Error in processing message ",e);
				}
			}
		}
	}
}

-- 
View this message in context: http://www.nabble.com/Servicemix-Bean-hangs-during-load-testing-tp19202218p19308817.html
Sent from the ServiceMix - User mailing list archive at Nabble.com.


Re: Servicemix-Bean hangs during load testing

Posted by Guillaume Nodet <gn...@gmail.com>.
Maybe you can attach the source code instead so that we can build it ?

On Thu, Sep 4, 2008 at 7:55 AM, pratibhaG <pr...@in2m.com> wrote:
>
> I created a jira issue but could not attach all the files which I have to put
> in hotdeploy. The problem is the jar file has size 10.9 MB. How can I attach
> it.
> Issue # SM-1552
>
> Pratibha
> --
> View this message in context: http://www.nabble.com/Servicemix-Bean-hangs-during-load-testing-tp19202218p19303815.html
> Sent from the ServiceMix - User mailing list archive at Nabble.com.
>
>



-- 
Cheers,
Guillaume Nodet
------------------------
Blog: http://gnodet.blogspot.com/

Re: Servicemix-Bean hangs during load testing

Posted by pratibhaG <pr...@in2m.com>.
I created a jira issue but could not attach all the files which I have to put
in hotdeploy. The problem is the jar file has size 10.9 MB. How can I attach
it.
Issue # SM-1552

Pratibha
-- 
View this message in context: http://www.nabble.com/Servicemix-Bean-hangs-during-load-testing-tp19202218p19303815.html
Sent from the ServiceMix - User mailing list archive at Nabble.com.


Re: Servicemix-Bean hangs during load testing

Posted by Guillaume Nodet <gn...@gmail.com>.
The "exchange not found" exception is a problem occuring when the http
request times out before the JBI exchange has been successfully
processed.
If you sometimes have correct responses, I would suggest increasing
the timeout on the HTTP consumer endpoint (you can also configure a
default timeout on the servicemix-http component through the JMX
console or properties file in conf/components.properties).  If you
never have a correct processing, it may means that the exchanges are
not sent back correctly, in which case there is a problem in the flow
definition / implementation somehow ...

I suspect the second reason (a problem in the flow), as I can see lots
of Active exchanges in the log, but not many Done exchanges.  Each JBI
exchange must be terminated by a Done status or Error status and it
does not seem to be the case.

On Mon, Sep 1, 2008 at 9:27 AM, pratibhaG <pr...@in2m.com> wrote:
>
> Please help me understand what this log says:
> For this I have also removed the response generator configuration from my
> message flow. it works for first 50 requests and then fails for more
> requests.
>  This I see on logs for long time and then get Exchange not found:
>
> DEBUG - DeliveryChannelImpl            - SendSync
> ID:192.168.2.64-11c1cd13138-2:109 in DeliveryChannel{servicemix-camel}
> DEBUG - SecuredBroker                  - send exchange with secure broker
> DEBUG - SecuredBroker                  - service name
> :{http://servicemix.in2m.com/operations/updateprofile}RoutingService
> DEBUG - SecuredBroker                  - operation name :null
> DEBUG - SedaFlow                       - Called Flow send
> DEBUG - DeliveryChannelImpl            - Waiting for exchange
> ID:192.168.2.64-11c1cd13138-2:109 (158517d) to be answered in
> DeliveryChannel{servicemix-camel} from sendSync
> DEBUG - DeliveryChannelImpl            - Waiting for exchange
> ID:192.168.2.64-11c1cd13138-2:108 (132781b) to be answered in
> DeliveryChannel{servicemix-camel} from sendSync
>
>
> After some time:
>
> DEBUG - JettyContextManager            - Dispatching job:
> RetryContinuation@16981272,pending,expired
> DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
> /updateUserProfile/ HTTP/1.1
> Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
> User-Agent: Jakarta Commons-HttpClient/3.1
> Host: 192.168.2.64:8193
> Content-Length: 260
>
>
> WARN  - jetty                          - /updateUserProfile/
> java.lang.IllegalStateException: Exchange not found
>        at
> org.apache.servicemix.http.processors.ConsumerProcessor.process(ConsumerProcessor.java:190)
>        at
> org.apache.servicemix.http.HttpBridgeServlet.doPost(HttpBridgeServlet.java:71)
>        at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
>        at javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
>        at
> org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
>        at
> org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:362)
>        at
> org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
>        at
> org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:722)
>        at
> org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:206)
>        at
> org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
>        at
> org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:139)
>        at org.mortbay.jetty.Server.handle(Server.java:324)
>        at
> org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:505)
>        at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:374)
>        at
> org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:395)
>        at
> org.mortbay.jetty.nio.SelectChannelConnector$RetryContinuation.run(SelectChannelConnector.java:506)
>        at
> org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:450)
> DEBUG - JettyContextManager            - Dispatching job:
> RetryContinuation@3311766,pending,expired
> DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
> /updateUserProfile/ HTTP/1.1
> Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
> User-Agent: Jakarta Commons-HttpClient/3.1
> Host: 192.168.2.64:8193
> Content-Length: 260
>
>
> --
> View this message in context: http://www.nabble.com/Servicemix-Bean-hangs-during-load-testing-tp19202218p19250048.html
> Sent from the ServiceMix - User mailing list archive at Nabble.com.
>
>



-- 
Cheers,
Guillaume Nodet
------------------------
Blog: http://gnodet.blogspot.com/

Re: Servicemix-Bean hangs during load testing

Posted by Gert Vanthienen <ge...@skynet.be>.
Pratibha,

We suspect it might be related to the Camel routes you are using.  Could 
you provide us with a SA or a unit test to reproduce the problem?  If 
you can, please open a JIRA issue and attach the SA or test there and we 
will look into it.

Regards,

Gert

pratibhaG wrote:
> Please help me understand what this log says:
> For this I have also removed the response generator configuration from my
> message flow. it works for first 50 requests and then fails for more
> requests. 
>  This I see on logs for long time and then get Exchange not found:
>
> DEBUG - DeliveryChannelImpl            - SendSync
> ID:192.168.2.64-11c1cd13138-2:109 in DeliveryChannel{servicemix-camel}
> DEBUG - SecuredBroker                  - send exchange with secure broker
> DEBUG - SecuredBroker                  - service name
> :{http://servicemix.in2m.com/operations/updateprofile}RoutingService
> DEBUG - SecuredBroker                  - operation name :null
> DEBUG - SedaFlow                       - Called Flow send
> DEBUG - DeliveryChannelImpl            - Waiting for exchange
> ID:192.168.2.64-11c1cd13138-2:109 (158517d) to be answered in
> DeliveryChannel{servicemix-camel} from sendSync
> DEBUG - DeliveryChannelImpl            - Waiting for exchange
> ID:192.168.2.64-11c1cd13138-2:108 (132781b) to be answered in
> DeliveryChannel{servicemix-camel} from sendSync
>
>
> After some time:
>
> DEBUG - JettyContextManager            - Dispatching job:
> RetryContinuation@16981272,pending,expired
> DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
> /updateUserProfile/ HTTP/1.1
> Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
> User-Agent: Jakarta Commons-HttpClient/3.1
> Host: 192.168.2.64:8193
> Content-Length: 260
>
>
> WARN  - jetty                          - /updateUserProfile/
> java.lang.IllegalStateException: Exchange not found
>         at
> org.apache.servicemix.http.processors.ConsumerProcessor.process(ConsumerProcessor.java:190)
>         at
> org.apache.servicemix.http.HttpBridgeServlet.doPost(HttpBridgeServlet.java:71)
>         at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
>         at javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
>         at
> org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
>         at
> org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:362)
>         at
> org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
>         at
> org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:722)
>         at
> org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:206)
>         at
> org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
>         at
> org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:139)
>         at org.mortbay.jetty.Server.handle(Server.java:324)
>         at
> org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:505)
>         at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:374)
>         at
> org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:395)
>         at
> org.mortbay.jetty.nio.SelectChannelConnector$RetryContinuation.run(SelectChannelConnector.java:506)
>         at
> org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:450)
> DEBUG - JettyContextManager            - Dispatching job:
> RetryContinuation@3311766,pending,expired
> DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
> /updateUserProfile/ HTTP/1.1
> Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
> User-Agent: Jakarta Commons-HttpClient/3.1
> Host: 192.168.2.64:8193
> Content-Length: 260
>
>
>   


Re: Servicemix-Bean hangs during load testing

Posted by pratibhaG <pr...@in2m.com>.
Please help me understand what this log says:
For this I have also removed the response generator configuration from my
message flow. it works for first 50 requests and then fails for more
requests. 
 This I see on logs for long time and then get Exchange not found:

DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1cd13138-2:109 in DeliveryChannel{servicemix-camel}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}RoutingService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1cd13138-2:109 (158517d) to be answered in
DeliveryChannel{servicemix-camel} from sendSync
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1cd13138-2:108 (132781b) to be answered in
DeliveryChannel{servicemix-camel} from sendSync


After some time:

DEBUG - JettyContextManager            - Dispatching job:
RetryContinuation@16981272,pending,expired
DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


WARN  - jetty                          - /updateUserProfile/
java.lang.IllegalStateException: Exchange not found
        at
org.apache.servicemix.http.processors.ConsumerProcessor.process(ConsumerProcessor.java:190)
        at
org.apache.servicemix.http.HttpBridgeServlet.doPost(HttpBridgeServlet.java:71)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
        at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
        at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:362)
        at
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
        at
org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:722)
        at
org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:206)
        at
org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
        at
org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:139)
        at org.mortbay.jetty.Server.handle(Server.java:324)
        at
org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:505)
        at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:374)
        at
org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:395)
        at
org.mortbay.jetty.nio.SelectChannelConnector$RetryContinuation.run(SelectChannelConnector.java:506)
        at
org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:450)
DEBUG - JettyContextManager            - Dispatching job:
RetryContinuation@3311766,pending,expired
DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


-- 
View this message in context: http://www.nabble.com/Servicemix-Bean-hangs-during-load-testing-tp19202218p19250048.html
Sent from the ServiceMix - User mailing list archive at Nabble.com.


Re: Servicemix-Bean hangs during load testing

Posted by pratibhaG <pr...@in2m.com>.
Now I did following in the catch block:
logger.error(e);
exchange.setError(new Exception("myexception"));
exchange.setStatus(ExchangeStatus.ERROR
channel.send(exchange);	

So the whole class is like this:
package com.in2m.servicemix.common.bean;

import java.io.IOException;
import java.io.StringWriter;
import javax.annotation.Resource;
import javax.jbi.messaging.DeliveryChannel;
import javax.jbi.messaging.ExchangeStatus;
import javax.jbi.messaging.MessageExchange;
import javax.jbi.messaging.MessagingException;
import javax.jbi.messaging.NormalizedMessage;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.servicemix.MessageExchangeListener;
import org.apache.servicemix.jbi.jaxp.SourceTransformer;
import org.apache.servicemix.jbi.jaxp.StringSource;
import org.w3c.dom.Document;
import com.sun.org.apache.xml.internal.serialize.OutputFormat;
import com.sun.org.apache.xml.internal.serialize.XMLSerializer;
import com.thoughtworks.xstream.XStream;
import com.in2m.servicemix.common.errorhandling.ErrorConstants;


/**
 * @author pghogale
 *
 */
public class ResponseGenerator implements MessageExchangeListener {
	
	@Resource
	private DeliveryChannel channel;
	private static final Log logger =
LogFactory.getLog(ResponseGenerator.class);
	private final static String RESPONSE_MESSAGE_ROOT = "response";
	private static final String REQUEST_MESSAGE_ROOT = "request";
	
	public void onMessageExchange(MessageExchange exchange) throws
MessagingException {
		try{
			if (exchange.getStatus() == ExchangeStatus.ACTIVE) {
				NormalizedMessage normalizedMessageIn = exchange.getMessage("in");
				String outMessage =
getResponseToClientFromInMessage(normalizedMessageIn);
				NormalizedMessage normalizedMessageOut= exchange.createMessage();
				normalizedMessageOut.setContent(new StringSource(outMessage));
				exchange.setMessage(normalizedMessageOut,"out");
				channel.send(exchange);
			}
		} catch(Exception e){
			logger.error(e);
			exchange.setError(new Exception("myexception"));
	                exchange.setStatus(ExchangeStatus.ERROR);
	                 channel.send(exchange);			
			
		}
	}
	
	private String getResponseToClientFromInMessage(NormalizedMessage
normalizedMessage) throws Exception {
		// if nothing comes to response generator send system error
		if(normalizedMessage.getContent() == null){
			return createResponseMessage(ErrorConstants.SYSTEM_ERROR,"System Error");
		}
		SourceTransformer sourceTransformer = new SourceTransformer();
		Document inDocument = sourceTransformer.toDOMDocument(normalizedMessage);
		inDocument.normalize();
		String response=getResponseMessageFromInMessage(inDocument);
		return response;
	}
		
	private String getResponseMessageFromInMessage(Document inDoc) throws
Exception{
		String documentElement=inDoc.getDocumentElement().getNodeName();
		//send same message as response
		if(documentElement.equals(RESPONSE_MESSAGE_ROOT)){
			return createXMLMessageFromDocument(inDoc);
		}
		//if message goes to jms provider in case of update profile send succsess
		if(documentElement.equals(REQUEST_MESSAGE_ROOT)){
			return createResponseMessage(ErrorConstants.SUCCESS,"success");
		}
		return null;
	}
	
	private static String createResponseMessage(String status, String message)
{
		XStream xstream = new XStream();
		xstream.alias(RESPONSE_MESSAGE_ROOT, ResponseMessage.class);
		ResponseMessage response =  new ResponseMessage();
		response.setStatus(status);
		response.setMessage(message);
		return xstream.toXML(response);
	}
	
	private String createXMLMessageFromDocument(Document document) throws
IOException{
		OutputFormat format    = new OutputFormat (document); 
		StringWriter stringOut = new StringWriter ();    
		XMLSerializer serial   = new XMLSerializer (stringOut, format);
		serial.serialize(document);
		String message=  stringOut.toString().replace("<?xml version=\"1.0\"
encoding=\"UTF-8\"?>", "");
		return message;		
	}
}

But still the problem is same:
Here is what I am doing in my camel SUs, I am using two camel SUs, and here
are the contents:
1st camel SU
public void configure() {
	    	exception(java.lang.Throwable.class)
	    	.setBody(constant("<response><status>"+ ErrorConstants.SYSTEM_ERROR
+"</status><message>System                      
Error</message></response>"))
		
.to("jbi:service:http://servicemix.in2m.com/operations/updateprofile/ResponseGeneratorService?mep=in-out");
	    	
	    
exception(org.apache.camel.processor.validation.SchemaValidationException.class)
	    		    			
.setBody(constant("<response><status>"+ErrorConstants.VALIDATION_ERROR+"</status><message>Validation
Error</message></response>"))
		
.to("jbi:service:http://servicemix.in2m.com/operations/updateprofile/ResponseGeneratorService?mep=in-out");
			
		
from("jbi:service:http://servicemix.in2m.com/operations/updateprofile/ValidateService")
			.to("validator:updateprofile.xsd")  
		
.to("jbi:service:http://servicemix.in2m.com/operations/updateprofile/RoutingService?mep=in-out");
	    }

2nd camel SU:
public void configure() {  
    	
    	errorHandler(deadLetterChannel().maximumRedeliveryDelay(3600000L));
    	
    	exception(java.lang.Throwable.class)
        .intercept(new
CustomDelegateProcessor(ErrorConstants.SYSTEM_ERROR));                
       
    	exception(java.net.SocketException.class)
        .maximumRedeliveries(5)
        .useExponentialBackOff()
        .initialRedeliveryDelay(300000L)
        .backOffMultiplier(2.0)
        .intercept(new
CustomDelegateProcessor(ErrorConstants.SOCKET_ERROR));
            
       
from("jbi:service:http://servicemix.in2m.com/operations/updateprofile/RoutingService")
       
.to("jbi:service:http://servicemix.in2m.com/operations/updateprofile/JMSProviderService?mep=in-only")     
        
       
.to("jbi:service:http://servicemix.in2m.com/operations/updateprofile/ResponseGeneratorService?mep=in-out");
       

       
from("jbi:service:http://servicemix.in2m.com/operations/updateprofile/DirectorConsumerService")  
setHeader(ErrorConstants.APPLICATION_NAME,constant("jbi:service:http://servicemix.in2m.com/operations/updateprofile/DirectorService"))
        .intercept(new CustomDelegateProcessor())         
       
.to("jbi:service:http://servicemix.in2m.com/operations/updateprofile/DirectorService?mep=in-out");
       
       
from("jbi:service:http://servicemix.in2m.com/operations/updateprofile/PortalConsumerService")       
.setHeader(ErrorConstants.APPLICATION_NAME,constant("jbi:service:http://servicemix.in2m.com/operations/updateprofile/PortalService"))
        .intercept(new CustomDelegateProcessor())     
       
.to("jbi:service:http://servicemix.in2m.com/operations/updateprofile/PortalService?mep=in-out");
    }

It did not have any effect on the problem that i face.  

The message flow is like this:
1)HTTP Consumer takes a message from client and sends message to Message
Enricher
2)Message enricher sends the message to validate service. After validation
the message is sent to routing service. 
3)Routing service puts the message in a topic, jms providerservice. 
4)If message is successfully sent to jms provider service, response
generator sends  a success message to client.
5)There are two jms consumers which consumes message from jms provider and
send them to different applications through http providers.
6)In the whole flow if any thing goes wrong before putting the message in a
topic then error/exception is caught, response generator sends appropriate
message to client.
7)If message flow fails after putting the message in a topic
CustomDelegateProcessor takes care of it.

Here are the logs when I put 
logger.error(e);
			exchange.setError(new Exception("myexception"));
	                exchange.setStatus(ExchangeStatus.ERROR);
	                 channel.send(exchange);			
			 
in response generator class. It is same as before.
I hitted 20 concurrent requests. If you see logs, it misses two things,
after putting the message in a topic (jmsProviderService), responseGenerator
Service is not called and the jms Consumers do not consume the message.

All this works fine if I hit single request.

Please Help.......

DEBUG - JettyContextManager            - Dispatching job:
SCEP@17021954[d=true,io=0,w=true,b=false|false]
DEBUG - JettyContextManager            - Dispatching job:
SCEP@17419733[d=true,io=0,w=true,b=false|false]
DEBUG - JettyContextManager            - Dispatching job:
SCEP@32354062[d=true,io=0,w=true,b=false|false]
DEBUG - JettyContextManager            - Dispatching job:
SCEP@11751836[d=true,io=0,w=true,b=false|false]
DEBUG - JettyContextManager            - Dispatching job:
SCEP@24793104[d=true,io=0,w=true,b=false|false]
DEBUG - JettyContextManager            - Dispatching job:
SCEP@25074514[d=true,io=0,w=true,b=false|false]
DEBUG - JettyContextManager            - Dispatching job:
SCEP@32589160[d=true,io=0,w=true,b=false|false]
DEBUG - JAASAuthenticationService      - Authenticating 'portal' with
'portalpass'
DEBUG - JettyContextManager            - Dispatching job:
SCEP@1572415[d=true,io=0,w=true,b=false|false]
DEBUG - JAASAuthenticationService      - Authenticating 'portal' with
'portalpass'
DEBUG - JAASAuthenticationService      - Authenticating 'portal' with
'portalpass'
DEBUG - JAASAuthenticationService      - Authenticating 'portal' with
'portalpass'
DEBUG - JAASAuthenticationService      - Authenticating 'portal' with
'portalpass'
DEBUG - JAASAuthenticationService      - Authenticating 'portal' with
'portalpass'
DEBUG - JAASAuthenticationService      - Authenticating 'portal' with
'portalpass'
DEBUG - JettyContextManager            - Dispatching job:
SCEP@21063974[d=true,io=0,w=true,b=false|false]
DEBUG - JAASAuthenticationService      - Authenticating 'portal' with
'portalpass'
DEBUG - JettyContextManager            - Dispatching job:
SCEP@29329942[d=true,io=0,w=true,b=false|false]
DEBUG - JAASAuthenticationService      - Authenticating 'portal' with
'portalpass'
DEBUG - JAASAuthenticationService      - Authenticating 'portal' with
'portalpass'
DEBUG - JettyContextManager            - Dispatching job:
SCEP@28132671[d=true,io=0,w=true,b=false|false]
DEBUG - JettyContextManager            - Dispatching job:
SCEP@14390956[d=true,io=0,w=true,b=false|false]
DEBUG - JAASAuthenticationService      - Authenticating 'portal' with
'portalpass'
DEBUG - JettyContextManager            - Dispatching job:
SCEP@12579692[d=true,io=0,w=true,b=false|false]
DEBUG - JAASAuthenticationService      - Authenticating 'portal' with
'portalpass'
DEBUG - JettyContextManager            - Dispatching job:
SCEP@17232014[d=true,io=0,w=true,b=false|false]
DEBUG - JAASAuthenticationService      - Authenticating 'portal' with
'portalpass'
DEBUG - JettyContextManager            - Dispatching job:
SCEP@32648167[d=true,io=0,w=true,b=false|false]
DEBUG - JAASAuthenticationService      - Authenticating 'portal' with
'portalpass'
DEBUG - JettyContextManager            - Dispatching job:
SCEP@32763263[d=true,io=0,w=true,b=false|false]
DEBUG - JAASAuthenticationService      - Authenticating 'portal' with
'portalpass'
DEBUG - JettyContextManager            - Dispatching job:
SCEP@24958637[d=true,io=0,w=true,b=false|false]
DEBUG - JAASAuthenticationService      - Authenticating 'portal' with
'portalpass'
DEBUG - JettyContextManager            - Dispatching job:
SCEP@25880470[d=true,io=0,w=true,b=false|false]
DEBUG - JAASAuthenticationService      - Authenticating 'portal' with
'portalpass'
DEBUG - JettyContextManager            - Dispatching job:
SCEP@31395956[d=true,io=0,w=true,b=false|false]
DEBUG - JAASAuthenticationService      - Authenticating 'portal' with
'portalpass'
DEBUG - JettyContextManager            - Dispatching job:
SCEP@9124824[d=true,io=0,w=true,b=false|false]
DEBUG - JAASAuthenticationService      - Authenticating 'portal' with
'portalpass'
DEBUG - JAASAuthenticationService      - Authenticating 'portal' with
'portalpass'
DEBUG - JAASAuthenticationService      - Authenticating portal successfully
DEBUG - JAASAuthenticationService      - Authenticating portal successfully
DEBUG - JAASAuthenticationService      - Authenticating portal successfully
DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


DEBUG - JAASAuthenticationService      - Authenticating portal successfully
DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


DEBUG - JAASAuthenticationService      - Authenticating portal successfully
DEBUG - JAASAuthenticationService      - Authenticating portal successfully
DEBUG - JAASAuthenticationService      - Authenticating portal successfully
DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


DEBUG - JAASAuthenticationService      - Authenticating portal successfully
DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


DEBUG - JAASAuthenticationService      - Authenticating portal successfully
DEBUG - JAASAuthenticationService      - Authenticating portal successfully
DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


DEBUG - JAASAuthenticationService      - Authenticating portal successfully
DEBUG - JAASAuthenticationService      - Authenticating portal successfully
DEBUG - JAASAuthenticationService      - Authenticating portal successfully
DEBUG - JAASAuthenticationService      - Authenticating portal successfully
DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


DEBUG - JAASAuthenticationService      - Authenticating portal successfully
DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


DEBUG - JAASAuthenticationService      - Authenticating portal successfully
DEBUG - JAASAuthenticationService      - Authenticating portal successfully
DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


DEBUG - JAASAuthenticationService      - Authenticating portal successfully
DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


DEBUG - JAASAuthenticationService      - Authenticating portal successfully
DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


DEBUG - JAASAuthenticationService      - Authenticating portal successfully
DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


DEBUG - HttpComponent                  - Created correlation id:
ID:192.168.2.64-11c1c45df6b-4:1
DEBUG - DeliveryChannelImpl            - Send
ID:192.168.2.64-11c1c45df6b-4:1 in DeliveryChannel{servicemix-http}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}MessageEnricherService
DEBUG - HttpComponent                  - Created correlation id:
ID:192.168.2.64-11c1c45df6b-4:5
DEBUG - HttpComponent                  - Created correlation id:
ID:192.168.2.64-11c1c45df6b-4:18
DEBUG - HttpComponent                  - Created correlation id:
ID:192.168.2.64-11c1c45df6b-4:7
DEBUG - HttpComponent                  - Created correlation id:
ID:192.168.2.64-11c1c45df6b-4:2
DEBUG - HttpComponent                  - Created correlation id:
ID:192.168.2.64-11c1c45df6b-4:3
DEBUG - DeliveryChannelImpl            - Send
ID:192.168.2.64-11c1c45df6b-4:7 in DeliveryChannel{servicemix-http}
DEBUG - DeliveryChannelImpl            - Send
ID:192.168.2.64-11c1c45df6b-4:3 in DeliveryChannel{servicemix-http}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}MessageEnricherService
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}MessageEnricherService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SecuredBroker                  - operation name :null
DEBUG - DeliveryChannelImpl            - Send
ID:192.168.2.64-11c1c45df6b-4:2 in DeliveryChannel{servicemix-http}
DEBUG - SedaFlow                       - Called Flow send
DEBUG - SedaFlow                       - Called Flow send
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - HttpComponent                  - Created correlation id:
ID:192.168.2.64-11c1c45df6b-4:6
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}MessageEnricherService
DEBUG - ConsumerProcessor              - Suspending continuation for
exchange: ID:192.168.2.64-11c1c45df6b-4:7
DEBUG - SecuredBroker                  - operation name :null
DEBUG - DeliveryChannelImpl            - Send
ID:192.168.2.64-11c1c45df6b-4:6 in DeliveryChannel{servicemix-http}
DEBUG - SedaFlow                       - Called Flow send
DEBUG - DeliveryChannelImpl            - Send
ID:192.168.2.64-11c1c45df6b-4:18 in DeliveryChannel{servicemix-http}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - ConsumerProcessor              - Suspending continuation for
exchange: ID:192.168.2.64-11c1c45df6b-4:2
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}MessageEnricherService
DEBUG - ConsumerProcessor              - Suspending continuation for
exchange: ID:192.168.2.64-11c1c45df6b-4:3
DEBUG - DeliveryChannelImpl            - Send
ID:192.168.2.64-11c1c45df6b-4:5 in DeliveryChannel{servicemix-http}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}MessageEnricherService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@6c4a07 dequeued
exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-4:2
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}MessageEnricherService
  endpoint: messageEnricherEndpoint
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - BeanComponent                  - Received exchange: status: Active,
role: provider
DEBUG - BeanComponent                  - Retrieved correlation id:
ID:192.168.2.64-11c1c45df6b-4:2
DEBUG - ConsumerProcessor              - Suspending continuation for
exchange: ID:192.168.2.64-11c1c45df6b-4:5
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}MessageEnricherService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - SedaFlow                       - Called Flow send
DEBUG - ConsumerProcessor              - Suspending continuation for
exchange: ID:192.168.2.64-11c1c45df6b-4:6
DEBUG - HttpComponent                  - Created correlation id:
ID:192.168.2.64-11c1c45df6b-4:4
DEBUG - HttpComponent                  - Created correlation id:
ID:192.168.2.64-11c1c45df6b-4:0
DEBUG - DeliveryChannelImpl            - Send
ID:192.168.2.64-11c1c45df6b-4:0 in DeliveryChannel{servicemix-http}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - ConsumerProcessor              - Suspending continuation for
exchange: ID:192.168.2.64-11c1c45df6b-4:18
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - DeliveryChannelImpl            - Send
ID:192.168.2.64-11c1c45df6b-4:4 in DeliveryChannel{servicemix-http}
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}MessageEnricherService
DEBUG - HttpComponent                  - Created correlation id:
ID:192.168.2.64-11c1c45df6b-4:8
DEBUG - DeliveryChannelImpl            - Send
ID:192.168.2.64-11c1c45df6b-4:8 in DeliveryChannel{servicemix-http}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}MessageEnricherService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - ConsumerProcessor              - Suspending continuation for
exchange: ID:192.168.2.64-11c1c45df6b-4:1
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}MessageEnricherService
DEBUG - ConsumerProcessor              - Suspending continuation for
exchange: ID:192.168.2.64-11c1c45df6b-4:8
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - HttpComponent                  - Created correlation id:
ID:192.168.2.64-11c1c45df6b-4:10
DEBUG - HttpComponent                  - Created correlation id:
ID:192.168.2.64-11c1c45df6b-4:9
DEBUG - DeliveryChannelImpl            - Send
ID:192.168.2.64-11c1c45df6b-4:9 in DeliveryChannel{servicemix-http}
DEBUG - ConsumerProcessor              - Suspending continuation for
exchange: ID:192.168.2.64-11c1c45df6b-4:0
DEBUG - SedaFlow                       - Called Flow send
DEBUG - ConsumerProcessor              - Suspending continuation for
exchange: ID:192.168.2.64-11c1c45df6b-4:4
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@194279 dequeued
exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-4:0
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}MessageEnricherService
  endpoint: messageEnricherEndpoint
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - BeanComponent                  - Received exchange: status: Active,
role: provider
DEBUG - BeanComponent                  - Retrieved correlation id:
ID:192.168.2.64-11c1c45df6b-4:0
DEBUG - BeanComponent                  - Correlation id retrieved from
ThreadLocal: ID:192.168.2.64-11c1c45df6b-4:0
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-3:1 in DeliveryChannel{servicemix-bean}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}ValidateService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@e522a0 dequeued
exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-4:4
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}MessageEnricherService
  endpoint: messageEnricherEndpoint
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - BeanComponent                  - Received exchange: status: Active,
role: provider
DEBUG - BeanComponent                  - Retrieved correlation id:
ID:192.168.2.64-11c1c45df6b-4:4
DEBUG - BeanComponent                  - Correlation id retrieved from
ThreadLocal: ID:192.168.2.64-11c1c45df6b-4:4
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-3:2 in DeliveryChannel{servicemix-bean}
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@70b02c dequeued
exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-4:1
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}MessageEnricherService
  endpoint: messageEnricherEndpoint
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - BeanComponent                  - Received exchange: status: Active,
role: provider
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@db6c61 dequeued
exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-4:3
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}MessageEnricherService
  endpoint: messageEnricherEndpoint
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - BeanComponent                  - Received exchange: status: Active,
role: provider
DEBUG - BeanComponent                  - Retrieved correlation id:
ID:192.168.2.64-11c1c45df6b-4:3
DEBUG - BeanComponent                  - Retrieved correlation id:
ID:192.168.2.64-11c1c45df6b-4:1
DEBUG - BeanComponent                  - Correlation id retrieved from
ThreadLocal: ID:192.168.2.64-11c1c45df6b-4:3
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}ValidateService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-3:2 (19658db) to be answered in
DeliveryChannel{servicemix-bean} from sendSync
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@1ae9171 dequeued
exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-3:2
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}ValidateService
  endpoint: camel192-168-2-64-11c1c45df6b-6-6
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - CamelJbiComponent              - Received exchange: status: Active,
role: provider
DEBUG - CamelJbiComponent              - Retrieved correlation id:
ID:192.168.2.64-11c1c45df6b-4:4
DEBUG - CamelJbiEndpoint               - Received exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-3:2
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}ValidateService
  endpoint: camel192-168-2-64-11c1c45df6b-6-6
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@162efd8 dequeued
exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-4:7
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}MessageEnricherService
  endpoint: messageEnricherEndpoint
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - BeanComponent                  - Received exchange: status: Active,
role: provider
DEBUG - BeanComponent                  - Retrieved correlation id:
ID:192.168.2.64-11c1c45df6b-4:7
DEBUG - BeanComponent                  - Correlation id retrieved from
ThreadLocal: ID:192.168.2.64-11c1c45df6b-4:7
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-3:5 in DeliveryChannel{servicemix-bean}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}ValidateService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-3:5 (1b3d787) to be answered in
DeliveryChannel{servicemix-bean} from sendSync
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@d25883 dequeued
exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-4:5
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}MessageEnricherService
  endpoint: messageEnricherEndpoint
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - BeanComponent                  - Received exchange: status: Active,
role: provider
DEBUG - BeanComponent                  - Retrieved correlation id:
ID:192.168.2.64-11c1c45df6b-4:5
DEBUG - BeanComponent                  - Correlation id retrieved from
ThreadLocal: ID:192.168.2.64-11c1c45df6b-4:5
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-3:6 in DeliveryChannel{servicemix-bean}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}ValidateService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-3:6 (1db0505) to be answered in
DeliveryChannel{servicemix-bean} from sendSync
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@8786e7 dequeued
exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-4:6
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}MessageEnricherService
  endpoint: messageEnricherEndpoint
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - BeanComponent                  - Received exchange: status: Active,
role: provider
DEBUG - BeanComponent                  - Retrieved correlation id:
ID:192.168.2.64-11c1c45df6b-4:6
DEBUG - BeanComponent                  - Correlation id retrieved from
ThreadLocal: ID:192.168.2.64-11c1c45df6b-4:6
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-3:7 in DeliveryChannel{servicemix-bean}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}ValidateService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-3:3 in DeliveryChannel{servicemix-bean}
DEBUG - BeanComponent                  - Correlation id retrieved from
ThreadLocal: ID:192.168.2.64-11c1c45df6b-4:1
DEBUG - BeanComponent                  - Correlation id retrieved from
ThreadLocal: ID:192.168.2.64-11c1c45df6b-4:2
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-3:0 in DeliveryChannel{servicemix-bean}
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@101a031 dequeued
exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-4:18
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}MessageEnricherService
  endpoint: messageEnricherEndpoint
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - BeanComponent                  - Received exchange: status: Active,
role: provider
DEBUG - BeanComponent                  - Retrieved correlation id:
ID:192.168.2.64-11c1c45df6b-4:18
DEBUG - BeanComponent                  - Correlation id retrieved from
ThreadLocal: ID:192.168.2.64-11c1c45df6b-4:18
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-3:8 in DeliveryChannel{servicemix-bean}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}ValidateService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@186b077 dequeued
exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-3:7
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}ValidateService
  endpoint: camel192-168-2-64-11c1c45df6b-6-6
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - CamelJbiComponent              - Received exchange: status: Active,
role: provider
DEBUG - CamelJbiComponent              - Retrieved correlation id:
ID:192.168.2.64-11c1c45df6b-4:6
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}ValidateService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@26ad0a dequeued
exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-3:5
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}ValidateService
  endpoint: camel192-168-2-64-11c1c45df6b-6-6
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - CamelJbiComponent              - Received exchange: status: Active,
role: provider
DEBUG - CamelJbiComponent              - Retrieved correlation id:
ID:192.168.2.64-11c1c45df6b-4:7
DEBUG - CamelJbiEndpoint               - Received exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-3:5
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}ValidateService
  endpoint: camel192-168-2-64-11c1c45df6b-6-6
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-2:1 in DeliveryChannel{servicemix-camel}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}RoutingService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-2:1 (178f7a8) to be answered in
DeliveryChannel{servicemix-camel} from sendSync
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@257ce0 dequeued
exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-2:1
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}RoutingService
  endpoint: camel192-168-2-64-11c1c45df6b-6-7
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - CamelJbiComponent              - Received exchange: status: Active,
role: provider
DEBUG - CamelJbiComponent              - Retrieved correlation id: null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - CamelJbiEndpoint               - Received exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-3:7
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}ValidateService
  endpoint: camel192-168-2-64-11c1c45df6b-6-6
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-3:8 (1bf0f5b) to be answered in
DeliveryChannel{servicemix-bean} from sendSync
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-3:7 (1b56b0b) to be answered in
DeliveryChannel{servicemix-bean} from sendSync
DEBUG - SedaFlow                       - Called Flow send
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@893f08 dequeued
exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-3:8
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}ValidateService
  endpoint: camel192-168-2-64-11c1c45df6b-6-6
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - CamelJbiComponent              - Received exchange: status: Active,
role: provider
DEBUG - CamelJbiComponent              - Retrieved correlation id:
ID:192.168.2.64-11c1c45df6b-4:18
DEBUG - CamelJbiEndpoint               - Received exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-3:8
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}ValidateService
  endpoint: camel192-168-2-64-11c1c45df6b-6-6
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-2:0 in DeliveryChannel{servicemix-camel}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-3:4 in DeliveryChannel{servicemix-bean}
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}ValidateService
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}ValidateService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-2:2 in DeliveryChannel{servicemix-camel}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}RoutingService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@2567a6 dequeued
exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-3:3
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}ValidateService
  endpoint: camel192-168-2-64-11c1c45df6b-6-6
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - CamelJbiEndpoint               - Received exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-2:1
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}RoutingService
  endpoint: camel192-168-2-64-11c1c45df6b-6-7
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}RoutingService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - SedaFlow                       - Called Flow send
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@da0e76 dequeued
exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-3:6
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}ValidateService
  endpoint: camel192-168-2-64-11c1c45df6b-6-6
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-2:2 (eeea3f) to be answered in
DeliveryChannel{servicemix-camel} from sendSync
DEBUG - CamelJbiComponent              - Received exchange: status: Active,
role: provider
DEBUG - CamelJbiComponent              - Retrieved correlation id:
ID:192.168.2.64-11c1c45df6b-4:5
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@154e317 dequeued
exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-2:2
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}RoutingService
  endpoint: camel192-168-2-64-11c1c45df6b-6-7
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - CamelJbiComponent              - Received exchange: status: Active,
role: provider
DEBUG - CamelJbiComponent              - Retrieved correlation id: null
DEBUG - CamelJbiEndpoint               - Received exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-3:6
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}ValidateService
  endpoint: camel192-168-2-64-11c1c45df6b-6-6
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-2:4 in DeliveryChannel{servicemix-camel}
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@92adf dequeued exchange:
InOut[
  id: ID:192.168.2.64-11c1c45df6b-2:0
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}RoutingService
  endpoint: camel192-168-2-64-11c1c45df6b-6-7
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - CamelJbiComponent              - Received exchange: status: Active,
role: provider
DEBUG - CamelJbiComponent              - Retrieved correlation id: null
DEBUG - CamelJbiEndpoint               - Received exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-2:0
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}RoutingService
  endpoint: camel192-168-2-64-11c1c45df6b-6-7
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-2:5 in DeliveryChannel{servicemix-camel}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}JMSProviderService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - CamelJbiEndpoint               - Received exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-2:2
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}RoutingService
  endpoint: camel192-168-2-64-11c1c45df6b-6-7
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-2:0 (2fdf53) to be answered in
DeliveryChannel{servicemix-camel} from sendSync
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-2:6 in DeliveryChannel{servicemix-camel}
DEBUG - CamelJbiComponent              - Received exchange: status: Active,
role: provider
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-2:5 (911b9f) to be answered in
DeliveryChannel{servicemix-camel} from sendSync
DEBUG - CamelJbiComponent              - Retrieved correlation id:
ID:192.168.2.64-11c1c45df6b-4:3
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-3:3 (16d4a3e) to be answered in
DeliveryChannel{servicemix-bean} from sendSync
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@ac9126 dequeued
exchange: InOnly[
  id: ID:192.168.2.64-11c1c45df6b-2:5
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}JMSProviderService
  endpoint: JMSProviderEndpoint
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}JMSProviderService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@16811df dequeued
exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-3:4
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}ValidateService
  endpoint: camel192-168-2-64-11c1c45df6b-6-6
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}JMSProviderService
DEBUG - CamelJbiComponent              - Received exchange: status: Active,
role: provider
DEBUG - SecuredBroker                  - operation name :null
DEBUG - CamelJbiEndpoint               - Received exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-3:3
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}ValidateService
  endpoint: camel192-168-2-64-11c1c45df6b-6-6
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - CamelJbiComponent              - Retrieved correlation id:
ID:192.168.2.64-11c1c45df6b-4:1
DEBUG - JmsComponent                   - Received exchange: status: Active,
role: provider
DEBUG - SedaFlow                       - Called Flow send
DEBUG - CamelJbiEndpoint               - Received exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-3:4
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}ValidateService
  endpoint: camel192-168-2-64-11c1c45df6b-6-6
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-3:4 (1fe96f2) to be answered in
DeliveryChannel{servicemix-bean} from sendSync
DEBUG - JmsComponent                   - Retrieved correlation id: null
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-2:3 in DeliveryChannel{servicemix-camel}
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-2:6 (725f5) to be answered in
DeliveryChannel{servicemix-camel} from sendSync
DEBUG - SedaFlow                       - Called Flow send
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}RoutingService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-2:7 in DeliveryChannel{servicemix-camel}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}RoutingService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-2:3 (1a7da17) to be answered in
DeliveryChannel{servicemix-camel} from sendSync
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-2:7 (d8bf42) to be answered in
DeliveryChannel{servicemix-camel} from sendSync
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-2:9 in DeliveryChannel{servicemix-camel}
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-2:8 in DeliveryChannel{servicemix-camel}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}RoutingService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@124588d dequeued
exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-2:7
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}RoutingService
  endpoint: camel192-168-2-64-11c1c45df6b-6-7
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-2:4 (48c85b) to be answered in
DeliveryChannel{servicemix-camel} from sendSync
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@124c22f dequeued
exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-2:8
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}RoutingService
  endpoint: camel192-168-2-64-11c1c45df6b-6-7
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - CamelJbiComponent              - Received exchange: status: Active,
role: provider
DEBUG - CamelJbiComponent              - Retrieved correlation id: null
DEBUG - CamelJbiEndpoint               - Received exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-2:8
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}RoutingService
  endpoint: camel192-168-2-64-11c1c45df6b-6-7
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-2:10 in DeliveryChannel{servicemix-camel}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}JMSProviderService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - CamelJbiComponent              - Received exchange: status: Active,
role: provider
DEBUG - CamelJbiComponent              - Retrieved correlation id: null
DEBUG - CamelJbiEndpoint               - Received exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-2:7
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}RoutingService
  endpoint: camel192-168-2-64-11c1c45df6b-6-7
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-2:11 in DeliveryChannel{servicemix-camel}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}JMSProviderService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-2:8 (157f347) to be answered in
DeliveryChannel{servicemix-camel} from sendSync
DEBUG - SedaFlow                       - Called Flow send
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-2:10 (13e4dd9) to be answered in
DeliveryChannel{servicemix-camel} from sendSync
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@1a45c84 dequeued
exchange: InOnly[
  id: ID:192.168.2.64-11c1c45df6b-2:10
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}JMSProviderService
  endpoint: JMSProviderEndpoint
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - JmsComponent                   - Received exchange: status: Active,
role: provider
DEBUG - JmsComponent                   - Retrieved correlation id: null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@b8ed23 dequeued
exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-2:3
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}RoutingService
  endpoint: camel192-168-2-64-11c1c45df6b-6-7
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@14cf7d6 dequeued
exchange: InOnly[
  id: ID:192.168.2.64-11c1c45df6b-2:6
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}JMSProviderService
  endpoint: JMSProviderEndpoint
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - JmsComponent                   - Received exchange: status: Active,
role: provider
DEBUG - JmsComponent                   - Retrieved correlation id: null
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@47411c dequeued
exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-3:1
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}ValidateService
  endpoint: camel192-168-2-64-11c1c45df6b-6-6
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - CamelJbiComponent              - Received exchange: status: Active,
role: provider
DEBUG - CamelJbiComponent              - Retrieved correlation id:
ID:192.168.2.64-11c1c45df6b-4:0
DEBUG - CamelJbiEndpoint               - Received exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-3:1
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}ValidateService
  endpoint: camel192-168-2-64-11c1c45df6b-6-6
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-3:1 (f247ca) to be answered in
DeliveryChannel{servicemix-bean} from sendSync
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-2:12 in DeliveryChannel{servicemix-camel}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}RoutingService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@dfb3be dequeued
exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-4:8
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}MessageEnricherService
  endpoint: messageEnricherEndpoint
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - BeanComponent                  - Received exchange: status: Active,
role: provider
DEBUG - BeanComponent                  - Retrieved correlation id:
ID:192.168.2.64-11c1c45df6b-4:8
DEBUG - BeanComponent                  - Correlation id retrieved from
ThreadLocal: ID:192.168.2.64-11c1c45df6b-4:8
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-3:9 in DeliveryChannel{servicemix-bean}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}ValidateService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}MessageEnricherService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}RoutingService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - CamelJbiComponent              - Received exchange: status: Active,
role: provider
DEBUG - CamelJbiComponent              - Retrieved correlation id: null
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-3:0 (17fd60d) to be answered in
DeliveryChannel{servicemix-bean} from sendSync
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-3:9 (165b174) to be answered in
DeliveryChannel{servicemix-bean} from sendSync
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@1a431fd dequeued
exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-3:0
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}ValidateService
  endpoint: camel192-168-2-64-11c1c45df6b-6-6
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - CamelJbiComponent              - Received exchange: status: Active,
role: provider
DEBUG - CamelJbiComponent              - Retrieved correlation id:
ID:192.168.2.64-11c1c45df6b-4:2
DEBUG - CamelJbiEndpoint               - Received exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-3:0
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}ValidateService
  endpoint: camel192-168-2-64-11c1c45df6b-6-6
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@9c6fd8 dequeued
exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-4:9
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}MessageEnricherService
  endpoint: messageEnricherEndpoint
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - BeanComponent                  - Received exchange: status: Active,
role: provider
DEBUG - BeanComponent                  - Retrieved correlation id:
ID:192.168.2.64-11c1c45df6b-4:9
DEBUG - BeanComponent                  - Correlation id retrieved from
ThreadLocal: ID:192.168.2.64-11c1c45df6b-4:9
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-3:10 in DeliveryChannel{servicemix-bean}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}ValidateService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-3:10 (554af0) to be answered in
DeliveryChannel{servicemix-bean} from sendSync
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@1657803 dequeued
exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-2:12
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}RoutingService
  endpoint: camel192-168-2-64-11c1c45df6b-6-7
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - CamelJbiComponent              - Received exchange: status: Active,
role: provider
DEBUG - CamelJbiComponent              - Retrieved correlation id: null
DEBUG - CamelJbiEndpoint               - Received exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-2:12
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}RoutingService
  endpoint: camel192-168-2-64-11c1c45df6b-6-7
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-2:14 in DeliveryChannel{servicemix-camel}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}JMSProviderService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-2:14 (100c56) to be answered in
DeliveryChannel{servicemix-camel} from sendSync
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@1960c9e dequeued
exchange: InOnly[
  id: ID:192.168.2.64-11c1c45df6b-2:14
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}JMSProviderService
  endpoint: JMSProviderEndpoint
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - JmsComponent                   - Received exchange: status: Active,
role: provider
DEBUG - JmsComponent                   - Retrieved correlation id: null
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@1f06863 dequeued
exchange: InOnly[
  id: ID:192.168.2.64-11c1c45df6b-2:11
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}JMSProviderService
  endpoint: JMSProviderEndpoint
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - CamelJbiEndpoint               - Received exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-2:3
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}RoutingService
  endpoint: camel192-168-2-64-11c1c45df6b-6-7
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-2:15 in DeliveryChannel{servicemix-camel}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}JMSProviderService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-2:11 (12c7bf6) to be answered in
DeliveryChannel{servicemix-camel} from sendSync
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-2:12 (918ac0) to be answered in
DeliveryChannel{servicemix-camel} from sendSync
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-2:9 (72d359) to be answered in
DeliveryChannel{servicemix-camel} from sendSync
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-2:13 in DeliveryChannel{servicemix-camel}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}RoutingService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-2:13 (e99642) to be answered in
DeliveryChannel{servicemix-camel} from sendSync
DEBUG - DeliveryChannelImpl            - Send
ID:192.168.2.64-11c1c45df6b-4:10 in DeliveryChannel{servicemix-http}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}MessageEnricherService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - ConsumerProcessor              - Suspending continuation for
exchange: ID:192.168.2.64-11c1c45df6b-4:9
DEBUG - HttpComponent                  - Created correlation id:
ID:192.168.2.64-11c1c45df6b-4:11
DEBUG - DeliveryChannelImpl            - Send
ID:192.168.2.64-11c1c45df6b-4:11 in DeliveryChannel{servicemix-http}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}MessageEnricherService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - HttpComponent                  - Created correlation id:
ID:192.168.2.64-11c1c45df6b-4:13
DEBUG - HttpComponent                  - Created correlation id:
ID:192.168.2.64-11c1c45df6b-4:12
DEBUG - DeliveryChannelImpl            - Send
ID:192.168.2.64-11c1c45df6b-4:12 in DeliveryChannel{servicemix-http}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}MessageEnricherService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - DeliveryChannelImpl            - Send
ID:192.168.2.64-11c1c45df6b-4:13 in DeliveryChannel{servicemix-http}
DEBUG - HttpComponent                  - Created correlation id:
ID:192.168.2.64-11c1c45df6b-4:16
DEBUG - DeliveryChannelImpl            - Send
ID:192.168.2.64-11c1c45df6b-4:16 in DeliveryChannel{servicemix-http}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}MessageEnricherService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - HttpComponent                  - Created correlation id:
ID:192.168.2.64-11c1c45df6b-4:14
DEBUG - DeliveryChannelImpl            - Send
ID:192.168.2.64-11c1c45df6b-4:14 in DeliveryChannel{servicemix-http}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}MessageEnricherService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - HttpComponent                  - Created correlation id:
ID:192.168.2.64-11c1c45df6b-4:17
DEBUG - DeliveryChannelImpl            - Send
ID:192.168.2.64-11c1c45df6b-4:17 in DeliveryChannel{servicemix-http}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}MessageEnricherService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - HttpComponent                  - Created correlation id:
ID:192.168.2.64-11c1c45df6b-4:15
DEBUG - DeliveryChannelImpl            - Send
ID:192.168.2.64-11c1c45df6b-4:15 in DeliveryChannel{servicemix-http}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}MessageEnricherService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - HttpComponent                  - Created correlation id:
ID:192.168.2.64-11c1c45df6b-4:19
DEBUG - DeliveryChannelImpl            - Send
ID:192.168.2.64-11c1c45df6b-4:19 in DeliveryChannel{servicemix-http}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}MessageEnricherService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}MessageEnricherService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - ConsumerProcessor              - Suspending continuation for
exchange: ID:192.168.2.64-11c1c45df6b-4:10
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@62a19d dequeued
exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-4:10
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}MessageEnricherService
  endpoint: messageEnricherEndpoint
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - BeanComponent                  - Received exchange: status: Active,
role: provider
DEBUG - BeanComponent                  - Retrieved correlation id:
ID:192.168.2.64-11c1c45df6b-4:10
DEBUG - BeanComponent                  - Correlation id retrieved from
ThreadLocal: ID:192.168.2.64-11c1c45df6b-4:10
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-3:11 in DeliveryChannel{servicemix-bean}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}ValidateService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-3:11 (76ec7a) to be answered in
DeliveryChannel{servicemix-bean} from sendSync
DEBUG - ConsumerProcessor              - Suspending continuation for
exchange: ID:192.168.2.64-11c1c45df6b-4:12
DEBUG - ConsumerProcessor              - Suspending continuation for
exchange: ID:192.168.2.64-11c1c45df6b-4:11
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@d60cdd dequeued
exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-4:11
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}MessageEnricherService
  endpoint: messageEnricherEndpoint
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - BeanComponent                  - Received exchange: status: Active,
role: provider
DEBUG - BeanComponent                  - Retrieved correlation id:
ID:192.168.2.64-11c1c45df6b-4:11
DEBUG - BeanComponent                  - Correlation id retrieved from
ThreadLocal: ID:192.168.2.64-11c1c45df6b-4:11
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-3:12 in DeliveryChannel{servicemix-bean}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}ValidateService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-3:12 (e6bc11) to be answered in
DeliveryChannel{servicemix-bean} from sendSync
DEBUG - DeliveryChannelImpl            - Send
ID:192.168.2.64-11c1c45df6b-2:10 in DeliveryChannel{servicemix-jms}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SedaFlow                       - Called Flow send
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-2:15 (16075b3) to be answered in
DeliveryChannel{servicemix-camel} from sendSync
DEBUG - ConsumerProcessor              - Suspending continuation for
exchange: ID:192.168.2.64-11c1c45df6b-4:16
DEBUG - ConsumerProcessor              - Suspending continuation for
exchange: ID:192.168.2.64-11c1c45df6b-4:17
DEBUG - ConsumerProcessor              - Suspending continuation for
exchange: ID:192.168.2.64-11c1c45df6b-4:15
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@1757596 dequeued
exchange: InOnly[
  id: ID:192.168.2.64-11c1c45df6b-2:15
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}JMSProviderService
  endpoint: JMSProviderEndpoint
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - JmsComponent                   - Received exchange: status: Active,
role: provider
DEBUG - JmsComponent                   - Retrieved correlation id: null
DEBUG - DeliveryChannelImpl            - Send
ID:192.168.2.64-11c1c45df6b-2:6 in DeliveryChannel{servicemix-jms}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SedaFlow                       - Called Flow send
DEBUG - ConsumerProcessor              - Suspending continuation for
exchange: ID:192.168.2.64-11c1c45df6b-4:19
DEBUG - DeliveryChannelImpl            - Send
ID:192.168.2.64-11c1c45df6b-2:14 in DeliveryChannel{servicemix-jms}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SedaFlow                       - Called Flow send
DEBUG - ConsumerProcessor              - Suspending continuation for
exchange: ID:192.168.2.64-11c1c45df6b-4:13
DEBUG - ConsumerProcessor              - Suspending continuation for
exchange: ID:192.168.2.64-11c1c45df6b-4:14
DEBUG - JmsComponent                   - Created correlation id:
ID:192.168.2.64-11c1c45df6b-5:0
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-5:0 in DeliveryChannel{servicemix-jms}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}DirectorConsumerService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-5:0 (c7e580) to be answered in
DeliveryChannel{servicemix-jms} from sendSync
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@12cc460 dequeued
exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-4:16
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}MessageEnricherService
  endpoint: messageEnricherEndpoint
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - BeanComponent                  - Received exchange: status: Active,
role: provider
DEBUG - BeanComponent                  - Retrieved correlation id:
ID:192.168.2.64-11c1c45df6b-4:16
DEBUG - BeanComponent                  - Correlation id retrieved from
ThreadLocal: ID:192.168.2.64-11c1c45df6b-4:16
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-3:13 in DeliveryChannel{servicemix-bean}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}ValidateService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-3:13 (10ad7e) to be answered in
DeliveryChannel{servicemix-bean} from sendSync
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@7f788b dequeued
exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-4:12
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}MessageEnricherService
  endpoint: messageEnricherEndpoint
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - BeanComponent                  - Received exchange: status: Active,
role: provider
DEBUG - BeanComponent                  - Retrieved correlation id:
ID:192.168.2.64-11c1c45df6b-4:12
DEBUG - BeanComponent                  - Correlation id retrieved from
ThreadLocal: ID:192.168.2.64-11c1c45df6b-4:12
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-3:14 in DeliveryChannel{servicemix-bean}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}ValidateService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-3:14 (72d895) to be answered in
DeliveryChannel{servicemix-bean} from sendSync
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@52a665 dequeued
exchange: InOut[
  id: ID:192.168.2.64-11c1c45df6b-4:14
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}MessageEnricherService
  endpoint: messageEnricherEndpoint
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - BeanComponent                  - Received exchange: status: Active,
role: provider
DEBUG - BeanComponent                  - Retrieved correlation id:
ID:192.168.2.64-11c1c45df6b-4:14
DEBUG - BeanComponent                  - Correlation id retrieved from
ThreadLocal: ID:192.168.2.64-11c1c45df6b-4:14
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-3:15 in DeliveryChannel{servicemix-bean}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}ValidateService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-3:15 (2a4591) to be answered in
DeliveryChannel{servicemix-bean} from sendSync
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@4eac67 dequeued
exchange: InOnly[
  id: ID:192.168.2.64-11c1c45df6b-2:10
  status: Done
  role: consumer
  service:
{http://servicemix.in2m.com/operations/updateprofile}JMSProviderService
  endpoint: JMSProviderEndpoint
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - DeliveryChannelImpl            - Notifying exchange
ID:192.168.2.64-11c1c45df6b-2:10(13e4dd9) in
DeliveryChannel{servicemix-camel} from processInboundSynchronousExchange
DEBUG - DeliveryChannelImpl            - Notified:
ID:192.168.2.64-11c1c45df6b-2:10(13e4dd9) in
DeliveryChannel{servicemix-camel} from sendSync
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-2:16 in DeliveryChannel{servicemix-camel}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}ResponseGeneratorService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-2:16 (118dcec) to be answered in
DeliveryChannel{servicemix-camel} from sendSync
DEBUG - JmsComponent                   - Received exchange: status: Active,
role: provider
DEBUG - JmsComponent                   - Retrieved correlation id: null
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@1be6b71 dequeued
exchange: InOnly[
  id: ID:192.168.2.64-11c1c45df6b-2:4
  status: Active
  role: provider
  service:
{http://servicemix.in2m.com/operations/updateprofile}JMSProviderService
  endpoint: JMSProviderEndpoint
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - JmsComponent                   - Received exchange: status: Active,
role: provider
DEBUG - JmsComponent                   - Retrieved correlation id: null
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@118424f dequeued
exchange: InOnly[
  id: ID:192.168.2.64-11c1c45df6b-2:6
  status: Done
  role: consumer
  service:
{http://servicemix.in2m.com/operations/updateprofile}JMSProviderService
  endpoint: JMSProviderEndpoint
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - DeliveryChannelImpl            - Notifying exchange
ID:192.168.2.64-11c1c45df6b-2:6(725f5) in DeliveryChannel{servicemix-camel}
from processInboundSynchronousExchange
DEBUG - DeliveryChannelImpl            - Notified:
ID:192.168.2.64-11c1c45df6b-2:6(725f5) in DeliveryChannel{servicemix-camel}
from sendSync
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-2:17 in DeliveryChannel{servicemix-camel}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}ResponseGeneratorService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-2:17 (1b6e978) to be answered in
DeliveryChannel{servicemix-camel} from sendSync
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@1d8add3 dequeued
exchange: InOnly[
  id: ID:192.168.2.64-11c1c45df6b-2:14
  status: Done
  role: consumer
  service:
{http://servicemix.in2m.com/operations/updateprofile}JMSProviderService
  endpoint: JMSProviderEndpoint
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - DeliveryChannelImpl            - Notifying exchange
ID:192.168.2.64-11c1c45df6b-2:14(100c56) in
DeliveryChannel{servicemix-camel} from processInboundSynchronousExchange
DEBUG - DeliveryChannelImpl            - Notified:
ID:192.168.2.64-11c1c45df6b-2:14(100c56) in
DeliveryChannel{servicemix-camel} from sendSync
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-2:18 in DeliveryChannel{servicemix-camel}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}ResponseGeneratorService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-2:18 (7c1a71) to be answered in
DeliveryChannel{servicemix-camel} from sendSync
DEBUG - DeliveryChannelImpl            - Send
ID:192.168.2.64-11c1c45df6b-2:5 in DeliveryChannel{servicemix-jms}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SedaFlow                       - Called Flow send
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@1596e13 dequeued
exchange: InOnly[
  id: ID:192.168.2.64-11c1c45df6b-2:5
  status: Done
  role: consumer
  service:
{http://servicemix.in2m.com/operations/updateprofile}JMSProviderService
  endpoint: JMSProviderEndpoint
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - DeliveryChannelImpl            - Notifying exchange
ID:192.168.2.64-11c1c45df6b-2:5(911b9f) in DeliveryChannel{servicemix-camel}
from processInboundSynchronousExchange
DEBUG - DeliveryChannelImpl            - Notified:
ID:192.168.2.64-11c1c45df6b-2:5(911b9f) in DeliveryChannel{servicemix-camel}
from sendSync
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-2:19 in DeliveryChannel{servicemix-camel}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}ResponseGeneratorService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-2:19 (49d560) to be answered in
DeliveryChannel{servicemix-camel} from sendSync
DEBUG - DeliveryChannelImpl            - Send
ID:192.168.2.64-11c1c45df6b-2:11 in DeliveryChannel{servicemix-jms}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SedaFlow                       - Called Flow send
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@ec9361 dequeued
exchange: InOnly[
  id: ID:192.168.2.64-11c1c45df6b-2:11
  status: Done
  role: consumer
  service:
{http://servicemix.in2m.com/operations/updateprofile}JMSProviderService
  endpoint: JMSProviderEndpoint
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - DeliveryChannelImpl            - Notifying exchange
ID:192.168.2.64-11c1c45df6b-2:11(12c7bf6) in
DeliveryChannel{servicemix-camel} from processInboundSynchronousExchange
DEBUG - DeliveryChannelImpl            - Notified:
ID:192.168.2.64-11c1c45df6b-2:11(12c7bf6) in
DeliveryChannel{servicemix-camel} from sendSync
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-2:20 in DeliveryChannel{servicemix-camel}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}ResponseGeneratorService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-2:20 (1bfd316) to be answered in
DeliveryChannel{servicemix-camel} from sendSync
DEBUG - DeliveryChannelImpl            - Send
ID:192.168.2.64-11c1c45df6b-2:15 in DeliveryChannel{servicemix-jms}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SedaFlow                       - Called Flow send
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@3d2a58 dequeued
exchange: InOnly[
  id: ID:192.168.2.64-11c1c45df6b-2:15
  status: Done
  role: consumer
  service:
{http://servicemix.in2m.com/operations/updateprofile}JMSProviderService
  endpoint: JMSProviderEndpoint
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - DeliveryChannelImpl            - Notifying exchange
ID:192.168.2.64-11c1c45df6b-2:15(16075b3) in
DeliveryChannel{servicemix-camel} from processInboundSynchronousExchange
DEBUG - DeliveryChannelImpl            - Notified:
ID:192.168.2.64-11c1c45df6b-2:15(16075b3) in
DeliveryChannel{servicemix-camel} from sendSync
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-2:21 in DeliveryChannel{servicemix-camel}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}ResponseGeneratorService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-2:21 (1a701c9) to be answered in
DeliveryChannel{servicemix-camel} from sendSync
DEBUG - DeliveryChannelImpl            - Send
ID:192.168.2.64-11c1c45df6b-2:4 in DeliveryChannel{servicemix-jms}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SedaFlow                       - Called Flow send
DEBUG - SedaQueue                      -
org.apache.servicemix.jbi.nmr.flow.seda.SedaQueue$1@7eef21 dequeued
exchange: InOnly[
  id: ID:192.168.2.64-11c1c45df6b-2:4
  status: Done
  role: consumer
  service:
{http://servicemix.in2m.com/operations/updateprofile}JMSProviderService
  endpoint: JMSProviderEndpoint
  in: <?xml version="1.0" encoding="UTF-8"?><request
xmlns="http://www.finicity.com">
        <updateUserProfile>
                <userName>0303user3</userName>
                <firstName>pratibhaw</firstName>
                <lastName>ghogalew</lastName>
                <emailAddress>pratibha1.ghogale@in2m.com</emailAddress>
        </updateUserProfile>
</request>
]
DEBUG - DeliveryChannelImpl            - Notifying exchange
ID:192.168.2.64-11c1c45df6b-2:4(48c85b) in DeliveryChannel{servicemix-camel}
from processInboundSynchronousExchange
DEBUG - DeliveryChannelImpl            - Notified:
ID:192.168.2.64-11c1c45df6b-2:4(48c85b) in DeliveryChannel{servicemix-camel}
from sendSync
DEBUG - DeliveryChannelImpl            - SendSync
ID:192.168.2.64-11c1c45df6b-2:22 in DeliveryChannel{servicemix-camel}
DEBUG - SecuredBroker                  - send exchange with secure broker
DEBUG - SecuredBroker                  - service name
:{http://servicemix.in2m.com/operations/updateprofile}ResponseGeneratorService
DEBUG - SecuredBroker                  - operation name :null
DEBUG - SedaFlow                       - Called Flow send
DEBUG - DeliveryChannelImpl            - Waiting for exchange
ID:192.168.2.64-11c1c45df6b-2:22 (1856a0a) to be answered in
DeliveryChannel{servicemix-camel} from sendSync
DEBUG - JettyContextManager            - Dispatching job:
RetryContinuation@13132057,pending,expired
DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


WARN  - jetty                          - /updateUserProfile/
java.lang.IllegalStateException: Exchange not found
        at
org.apache.servicemix.http.processors.ConsumerProcessor.process(ConsumerProcessor.java:190)
        at
org.apache.servicemix.http.HttpBridgeServlet.doPost(HttpBridgeServlet.java:71)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
        at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
        at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:362)
        at
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
        at
org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:722)
        at
org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:206)
        at
org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
        at
org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:139)
        at org.mortbay.jetty.Server.handle(Server.java:324)
        at
org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:505)
        at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:374)
        at
org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:395)
        at
org.mortbay.jetty.nio.SelectChannelConnector$RetryContinuation.run(SelectChannelConnector.java:506)
        at
org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:450)
DEBUG - JettyContextManager            - Dispatching job:
RetryContinuation@4552928,pending,expired
DEBUG - JettyContextManager            - Dispatching job:
RetryContinuation@16971202,pending,expired
DEBUG - JettyContextManager            - Dispatching job:
RetryContinuation@22336428,pending,expired
DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


WARN  - jetty                          - /updateUserProfile/
java.lang.IllegalStateException: Exchange not found
        at
org.apache.servicemix.http.processors.ConsumerProcessor.process(ConsumerProcessor.java:190)
        at
org.apache.servicemix.http.HttpBridgeServlet.doPost(HttpBridgeServlet.java:71)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
        at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
        at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:362)
        at
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
        at
org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:722)
        at
org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:206)
        at
org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
        at
org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:139)
        at org.mortbay.jetty.Server.handle(Server.java:324)
        at
org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:505)
        at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:374)
        at
org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:395)
        at
org.mortbay.jetty.nio.SelectChannelConnector$RetryContinuation.run(SelectChannelConnector.java:506)
        at
org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:450)
DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


WARN  - jetty                          - /updateUserProfile/
java.lang.IllegalStateException: Exchange not found
        at
org.apache.servicemix.http.processors.ConsumerProcessor.process(ConsumerProcessor.java:190)
        at
org.apache.servicemix.http.HttpBridgeServlet.doPost(HttpBridgeServlet.java:71)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
        at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
        at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:362)
        at
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
        at
org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:722)
        at
org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:206)
        at
org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
        at
org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:139)
        at org.mortbay.jetty.Server.handle(Server.java:324)
        at
org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:505)
        at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:374)
        at
org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:395)
        at
org.mortbay.jetty.nio.SelectChannelConnector$RetryContinuation.run(SelectChannelConnector.java:506)
        at
org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:450)
DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


WARN  - jetty                          - /updateUserProfile/
java.lang.IllegalStateException: Exchange not found
        at
org.apache.servicemix.http.processors.ConsumerProcessor.process(ConsumerProcessor.java:190)
        at
org.apache.servicemix.http.HttpBridgeServlet.doPost(HttpBridgeServlet.java:71)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
        at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
        at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:362)
        at
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
        at
org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:722)
        at
org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:206)
        at
org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
        at
org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:139)
        at org.mortbay.jetty.Server.handle(Server.java:324)
        at
org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:505)
        at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:374)
        at
org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:395)
        at
org.mortbay.jetty.nio.SelectChannelConnector$RetryContinuation.run(SelectChannelConnector.java:506)
        at
org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:450)
DEBUG - JettyContextManager            - Dispatching job:
RetryContinuation@32152430,pending,expired
DEBUG - JettyContextManager            - Dispatching job:
RetryContinuation@25332514,pending,expired
DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


WARN  - jetty                          - /updateUserProfile/
java.lang.IllegalStateException: Exchange not found
        at
org.apache.servicemix.http.processors.ConsumerProcessor.process(ConsumerProcessor.java:190)
        at
org.apache.servicemix.http.HttpBridgeServlet.doPost(HttpBridgeServlet.java:71)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
        at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
        at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:362)
        at
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
        at
org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:722)
        at
org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:206)
        at
org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
        at
org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:139)
        at org.mortbay.jetty.Server.handle(Server.java:324)
        at
org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:505)
        at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:374)
        at
org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:395)
        at
org.mortbay.jetty.nio.SelectChannelConnector$RetryContinuation.run(SelectChannelConnector.java:506)
        at
org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:450)
DEBUG - JettyContextManager            - Dispatching job:
RetryContinuation@24938708,pending,expired
DEBUG - JettyContextManager            - Dispatching job:
RetryContinuation@16150188,pending,expired
DEBUG - JettyContextManager            - Dispatching job:
RetryContinuation@14410707,pending,expired
DEBUG - JettyContextManager            - Dispatching job:
RetryContinuation@4869838,pending,expired
DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


WARN  - jetty                          - /updateUserProfile/
java.lang.IllegalStateException: Exchange not found
        at
org.apache.servicemix.http.processors.ConsumerProcessor.process(ConsumerProcessor.java:190)
        at
org.apache.servicemix.http.HttpBridgeServlet.doPost(HttpBridgeServlet.java:71)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
        at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
        at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:362)
        at
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
        at
org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:722)
        at
org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:206)
        at
org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
        at
org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:139)
        at org.mortbay.jetty.Server.handle(Server.java:324)
        at
org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:505)
        at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:374)
        at
org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:395)
        at
org.mortbay.jetty.nio.SelectChannelConnector$RetryContinuation.run(SelectChannelConnector.java:506)
        at
org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:450)
DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


WARN  - jetty                          - /updateUserProfile/
java.lang.IllegalStateException: Exchange not found
        at
org.apache.servicemix.http.processors.ConsumerProcessor.process(ConsumerProcessor.java:190)
        at
org.apache.servicemix.http.HttpBridgeServlet.doPost(HttpBridgeServlet.java:71)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
        at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
        at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:362)
        at
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
        at
org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:722)
        at
org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:206)
        at
org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
        at
org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:139)
        at org.mortbay.jetty.Server.handle(Server.java:324)
        at
org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:505)
        at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:374)
        at
org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:395)
        at
org.mortbay.jetty.nio.SelectChannelConnector$RetryContinuation.run(SelectChannelConnector.java:506)
        at
org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:450)
DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


WARN  - jetty                          - /updateUserProfile/
java.lang.IllegalStateException: Exchange not found
        at
org.apache.servicemix.http.processors.ConsumerProcessor.process(ConsumerProcessor.java:190)
        at
org.apache.servicemix.http.HttpBridgeServlet.doPost(HttpBridgeServlet.java:71)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
        at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
        at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:362)
        at
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
        at
org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:722)
        at
org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:206)
        at
org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
        at
org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:139)
        at org.mortbay.jetty.Server.handle(Server.java:324)
        at
org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:505)
        at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:374)
        at
org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:395)
        at
org.mortbay.jetty.nio.SelectChannelConnector$RetryContinuation.run(SelectChannelConnector.java:506)
        at
org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:450)
DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


WARN  - jetty                          - /updateUserProfile/
java.lang.IllegalStateException: Exchange not found
        at
org.apache.servicemix.http.processors.ConsumerProcessor.process(ConsumerProcessor.java:190)
        at
org.apache.servicemix.http.HttpBridgeServlet.doPost(HttpBridgeServlet.java:71)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
        at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
        at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:362)
        at
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
        at
org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:722)
        at
org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:206)
        at
org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
        at
org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:139)
        at org.mortbay.jetty.Server.handle(Server.java:324)
        at
org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:505)
        at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:374)
        at
org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:395)
        at
org.mortbay.jetty.nio.SelectChannelConnector$RetryContinuation.run(SelectChannelConnector.java:506)
        at
org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:450)
DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


WARN  - jetty                          - /updateUserProfile/
java.lang.IllegalStateException: Exchange not found
        at
org.apache.servicemix.http.processors.ConsumerProcessor.process(ConsumerProcessor.java:190)
        at
org.apache.servicemix.http.HttpBridgeServlet.doPost(HttpBridgeServlet.java:71)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
        at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
        at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:362)
        at
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
        at
org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:722)
        at
org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:206)
        at
org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
        at
org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:139)
        at org.mortbay.jetty.Server.handle(Server.java:324)
        at
org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:505)
        at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:374)
        at
org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:395)
        at
org.mortbay.jetty.nio.SelectChannelConnector$RetryContinuation.run(SelectChannelConnector.java:506)
        at
org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:450)
DEBUG - JettyContextManager            - Dispatching job:
RetryContinuation@4792508,pending,expired
DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


WARN  - jetty                          - /updateUserProfile/
java.lang.IllegalStateException: Exchange not found
        at
org.apache.servicemix.http.processors.ConsumerProcessor.process(ConsumerProcessor.java:190)
        at
org.apache.servicemix.http.HttpBridgeServlet.doPost(HttpBridgeServlet.java:71)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
        at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
        at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:362)
        at
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
        at
org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:722)
        at
org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:206)
        at
org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
        at
org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:139)
        at org.mortbay.jetty.Server.handle(Server.java:324)
        at
org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:505)
        at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:374)
        at
org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:395)
        at
org.mortbay.jetty.nio.SelectChannelConnector$RetryContinuation.run(SelectChannelConnector.java:506)
        at
org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:450)
DEBUG - JettyContextManager            - Dispatching job:
SCEP@32648167[d=true,io=1,w=true,b=false|false]
DEBUG - JettyContextManager            - Dispatching job:
SCEP@29329942[d=true,io=1,w=true,b=false|false]
DEBUG - JettyContextManager            - Dispatching job:
SCEP@32763263[d=true,io=1,w=true,b=false|false]
DEBUG - JettyContextManager            - Dispatching job:
SCEP@17021954[d=true,io=1,w=true,b=false|false]
DEBUG - JettyContextManager            - Dispatching job:
SCEP@24793104[d=true,io=1,w=true,b=false|false]
DEBUG - JettyContextManager            - Dispatching job:
SCEP@1572415[d=true,io=1,w=true,b=false|false]
DEBUG - JettyContextManager            - Dispatching job:
RetryContinuation@19652111,pending,expired
DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


WARN  - jetty                          - /updateUserProfile/
java.lang.IllegalStateException: Exchange not found
        at
org.apache.servicemix.http.processors.ConsumerProcessor.process(ConsumerProcessor.java:190)
        at
org.apache.servicemix.http.HttpBridgeServlet.doPost(HttpBridgeServlet.java:71)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
        at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
        at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:362)
        at
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
        at
org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:722)
        at
org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:206)
        at
org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
        at
org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:139)
        at org.mortbay.jetty.Server.handle(Server.java:324)
        at
org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:505)
        at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:374)
        at
org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:395)
        at
org.mortbay.jetty.nio.SelectChannelConnector$RetryContinuation.run(SelectChannelConnector.java:506)
        at
org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:450)
DEBUG - JettyContextManager            - Dispatching job:
RetryContinuation@27932427,pending,expired
DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


WARN  - jetty                          - /updateUserProfile/
java.lang.IllegalStateException: Exchange not found
        at
org.apache.servicemix.http.processors.ConsumerProcessor.process(ConsumerProcessor.java:190)
        at
org.apache.servicemix.http.HttpBridgeServlet.doPost(HttpBridgeServlet.java:71)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
        at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
        at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:362)
        at
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
        at
org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:722)
        at
org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:206)
        at
org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
        at
org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:139)
        at org.mortbay.jetty.Server.handle(Server.java:324)
        at
org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:505)
        at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:374)
        at
org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:395)
        at
org.mortbay.jetty.nio.SelectChannelConnector$RetryContinuation.run(SelectChannelConnector.java:506)
        at
org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:450)
DEBUG - JettyContextManager            - Dispatching job:
RetryContinuation@31236136,pending,expired
DEBUG - JettyContextManager            - Dispatching job:
RetryContinuation@26657234,pending,expired
DEBUG - JettyContextManager            - Dispatching job:
RetryContinuation@9368325,pending,expired
DEBUG - JettyContextManager            - Dispatching job:
RetryContinuation@16047868,pending,expired
DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


WARN  - jetty                          - /updateUserProfile/
java.lang.IllegalStateException: Exchange not found
        at
org.apache.servicemix.http.processors.ConsumerProcessor.process(ConsumerProcessor.java:190)
        at
org.apache.servicemix.http.HttpBridgeServlet.doPost(HttpBridgeServlet.java:71)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
        at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
        at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:362)
        at
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
        at
org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:722)
        at
org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:206)
        at
org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
        at
org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:139)
        at org.mortbay.jetty.Server.handle(Server.java:324)
        at
org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:505)
        at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:374)
        at
org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:395)
        at
org.mortbay.jetty.nio.SelectChannelConnector$RetryContinuation.run(SelectChannelConnector.java:506)
        at
org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:450)
DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


WARN  - jetty                          - /updateUserProfile/
java.lang.IllegalStateException: Exchange not found
        at
org.apache.servicemix.http.processors.ConsumerProcessor.process(ConsumerProcessor.java:190)
        at
org.apache.servicemix.http.HttpBridgeServlet.doPost(HttpBridgeServlet.java:71)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
        at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
        at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:362)
        at
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
        at
org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:722)
        at
org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:206)
        at
org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
        at
org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:139)
        at org.mortbay.jetty.Server.handle(Server.java:324)
        at
org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:505)
        at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:374)
        at
org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:395)
        at
org.mortbay.jetty.nio.SelectChannelConnector$RetryContinuation.run(SelectChannelConnector.java:506)
        at
org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:450)
DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


WARN  - jetty                          - /updateUserProfile/
java.lang.IllegalStateException: Exchange not found
        at
org.apache.servicemix.http.processors.ConsumerProcessor.process(ConsumerProcessor.java:190)
        at
org.apache.servicemix.http.HttpBridgeServlet.doPost(HttpBridgeServlet.java:71)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
        at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
        at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:362)
        at
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
        at
org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:722)
        at
org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:206)
        at
org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
        at
org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:139)
        at org.mortbay.jetty.Server.handle(Server.java:324)
        at
org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:505)
        at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:374)
        at
org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:395)
        at
org.mortbay.jetty.nio.SelectChannelConnector$RetryContinuation.run(SelectChannelConnector.java:506)
        at
org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:450)
DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


WARN  - jetty                          - /updateUserProfile/
java.lang.IllegalStateException: Exchange not found
        at
org.apache.servicemix.http.processors.ConsumerProcessor.process(ConsumerProcessor.java:190)
        at
org.apache.servicemix.http.HttpBridgeServlet.doPost(HttpBridgeServlet.java:71)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
        at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
        at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:362)
        at
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
        at
org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:722)
        at
org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:206)
        at
org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
        at
org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:139)
        at org.mortbay.jetty.Server.handle(Server.java:324)
        at
org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:505)
        at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:374)
        at
org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:395)
        at
org.mortbay.jetty.nio.SelectChannelConnector$RetryContinuation.run(SelectChannelConnector.java:506)
        at
org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:450)
DEBUG - JettyContextManager            - Dispatching job:
RetryContinuation@5192918,pending,expired
DEBUG - JettyContextManager            - Dispatching job:
RetryContinuation@2295234,pending,expired
DEBUG - JettyContextManager            - Dispatching job:
RetryContinuation@21966254,pending,expired
DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


WARN  - jetty                          - /updateUserProfile/
java.lang.IllegalStateException: Exchange not found
        at
org.apache.servicemix.http.processors.ConsumerProcessor.process(ConsumerProcessor.java:190)
        at
org.apache.servicemix.http.HttpBridgeServlet.doPost(HttpBridgeServlet.java:71)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
        at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
        at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:362)
        at
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
        at
org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:722)
        at
org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:206)
        at
org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
        at
org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:139)
        at org.mortbay.jetty.Server.handle(Server.java:324)
        at
org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:505)
        at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:374)
        at
org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:395)
        at
org.mortbay.jetty.nio.SelectChannelConnector$RetryContinuation.run(SelectChannelConnector.java:506)
        at
org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:450)
DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


WARN  - jetty                          - /updateUserProfile/
java.lang.IllegalStateException: Exchange not found
        at
org.apache.servicemix.http.processors.ConsumerProcessor.process(ConsumerProcessor.java:190)
        at
org.apache.servicemix.http.HttpBridgeServlet.doPost(HttpBridgeServlet.java:71)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
        at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
        at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:362)
        at
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
        at
org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:722)
        at
org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:206)
        at
org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
        at
org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:139)
        at org.mortbay.jetty.Server.handle(Server.java:324)
        at
org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:505)
        at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:374)
        at
org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:395)
        at
org.mortbay.jetty.nio.SelectChannelConnector$RetryContinuation.run(SelectChannelConnector.java:506)
        at
org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:450)
DEBUG - ConsumerProcessor              - Receiving HTTP request: POST
/updateUserProfile/ HTTP/1.1
Authorization: Basic cG9ydGFsOnBvcnRhbHBhc3M=
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 192.168.2.64:8193
Content-Length: 260


WARN  - jetty                          - /updateUserProfile/
java.lang.IllegalStateException: Exchange not found
        at
org.apache.servicemix.http.processors.ConsumerProcessor.process(ConsumerProcessor.java:190)
        at
org.apache.servicemix.http.HttpBridgeServlet.doPost(HttpBridgeServlet.java:71)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
        at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
        at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:362)
        at
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
        at
org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:722)
        at
org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:206)
        at
org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
        at
org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:139)
        at org.mortbay.jetty.Server.handle(Server.java:324)
        at
org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:505)
        at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:374)
        at
org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:395)
        at
org.mortbay.jetty.nio.SelectChannelConnector$RetryContinuation.run(SelectChannelConnector.java:506)
        at
org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:450)
DEBUG - JettyContextManager            - Dispatching job:
SCEP@24958637[d=true,io=1,w=true,b=false|false]
DEBUG - JettyContextManager            - Dispatching job:
SCEP@17232014[d=true,io=1,w=true,b=false|false]
DEBUG - JettyContextManager            - Dispatching job:
SCEP@31395956[d=true,io=1,w=true,b=false|false]
DEBUG - JettyContextManager            - Dispatching job:
SCEP@25880470[d=true,io=1,w=true,b=false|false]
DEBUG - JettyContextManager            - Dispatching job:
SCEP@11751836[d=true,io=1,w=true,b=false|false]
DEBUG - JettyContextManager            - Dispatching job:
SCEP@12579692[d=true,io=1,w=true,b=false|false]
DEBUG - JettyContextManager            - Dispatching job:
SCEP@21063974[d=true,io=1,w=true,b=false|false]
DEBUG - JettyContextManager            - Dispatching job:
SCEP@28132671[d=true,io=1,w=true,b=false|false]
DEBUG - JettyContextManager            - Dispatching job:
SCEP@25074514[d=true,io=1,w=true,b=false|false]
DEBUG - JettyContextManager            - Dispatching job:
SCEP@32589160[d=true,io=1,w=true,b=false|false]
DEBUG - JettyContextManager            - Dispatching job:
SCEP@14390956[d=true,io=1,w=true,b=false|false]
DEBUG - JettyContextManager            - Dispatching job:
SCEP@17419733[d=true,io=1,w=true,b=false|false]
DEBUG - JettyContextManager            - Dispatching job:
SCEP@32354062[d=true,io=1,w=true,b=false|false]
DEBUG - JettyContextManager            - Dispatching job:
SCEP@9124824[d=true,io=1,w=true,b=false|false]
DEBUG - JettyContextManager            - Dispatching job:
SCEP@25074514[d=true,io=1,w=true,b=false|false]
DEBUG - JettyContextManager            - Dispatching job:
SCEP@32589160[d=true,io=1,w=true,b=false|false]
DEBUG - JettyContextManager            - Dispatching job:
SCEP@14390956[d=true,io=1,w=true,b=false|false]
DEBUG - JettyContextManager            - Dispatching job:
SCEP@9124824[d=true,io=1,w=true,b=false|false]


-- 
View this message in context: http://www.nabble.com/Servicemix-Bean-hangs-during-load-testing-tp19202218p19249189.html
Sent from the ServiceMix - User mailing list archive at Nabble.com.


Re: Servicemix-Bean hangs during load testing

Posted by Gert Vanthienen <ge...@skynet.be>.
Sandeep,

Could you post the contents of the Camel SU, as it is not entirely clear 
to me now what the flow of MessageExchange is in your scenario?  The 
code you posted here looks fine at first glance, although I would 
recommend let the MessageExchange end in error of with a fault message 
if you catch an exception.  Now you just log a message there, but the 
MessageExchange will remain blocked.  Answering it with ERROR or a fault 
message, will ensure that the consumer component (in your case, 
servicemix-camel is aware of the problem you encountered while 
processing the exchange).

Regards,

Gert

sandeep reddy wrote:
> Hi Servicemix-guys,
>
> Message Flow:
>
>     Client --> Http Consumer SU(in-out) ------> Camel SU
> (in-only)----------------> JMS Provider SU (topic)
>                                                                                
> |
>                                                                                
> | (in-out)
>                                                                                
> | 
>                                                                           
> Bean SU 
>                                                       (Generating response
> and send back to Http Consumer SU)    
>
>     I am doing load testing for my Service Assembly which contains above
> SU's.
>     During load testing we found that there is a problem with
> ResponseGeneratorService class (which works fine with single requests).
> After processing some requests Camel SU is in waiting state which is
> expecting response from Response Generator which is not sending.
>
> Response Generator Class:
>
>     import java.io.IOException;
>     import java.io.StringWriter;
>     import javax.annotation.Resource;
>     import javax.jbi.messaging.DeliveryChannel;
>     import javax.jbi.messaging.ExchangeStatus;
>     import javax.jbi.messaging.MessageExchange;
>     import javax.jbi.messaging.MessagingException;
>     import javax.jbi.messaging.NormalizedMessage;
>     import org.apache.commons.logging.Log;
>     import org.apache.commons.logging.LogFactory;
>     import org.apache.servicemix.MessageExchangeListener;
>     import org.apache.servicemix.jbi.jaxp.SourceTransformer;
>     import org.apache.servicemix.jbi.jaxp.StringSource;
>     import org.w3c.dom.Document;
>     import com.sun.org.apache.xml.internal.serialize.OutputFormat;
>     import com.sun.org.apache.xml.internal.serialize.XMLSerializer;
>     import com.thoughtworks.xstream.XStream;
>     import com.in2m.servicemix.common.errorhandling.ErrorConstants;
>
>
>         public class ResponseGenerator implements MessageExchangeListener {
>     
>             @Resource
>             private DeliveryChannel channel;
>             private static final Log logger =
> LogFactory.getLog(ResponseGenerator.class);
>             private final static String RESPONSE_MESSAGE_ROOT = "response";
>             private static final String REQUEST_MESSAGE_ROOT = "request";
>     
>             public void onMessageExchange(MessageExchange exchange) throws
> MessagingException {
>         try{
>             if (exchange.getStatus() == ExchangeStatus.ACTIVE) {
>                 NormalizedMessage normalizedMessageIn =
> exchange.getMessage("in");
>                 String outMessage =
> getResponseToClientFromInMessage(normalizedMessageIn);
>                 NormalizedMessage normalizedMessageOut=
> exchange.createMessage();
>                 normalizedMessageOut.setContent(new
> StringSource(outMessage));
>                 exchange.setMessage(normalizedMessageOut,"out");
>                 channel.send(exchange);
>             }
>             } catch(Exception e){
>             logger.error(e);
>             }
>         }
>     
>         private String getResponseToClientFromInMessage(NormalizedMessage
> normalizedMessage) throws Exception {
>         // if nothing comes to response generator send system error
>         if(normalizedMessage.getContent() == null){
>             return createResponseMessage(ErrorConstants.SYSTEM_ERROR,"System
> Error");
>         }
>         SourceTransformer sourceTransformer = new SourceTransformer();
>         Document inDocument =
> sourceTransformer.toDOMDocument(normalizedMessage);
>         inDocument.normalize();
>         String response=getResponseMessageFromInMessage(inDocument);
>         return response;
>     }
>         
>     private String getResponseMessageFromInMessage(Document inDoc) throws
> Exception{
>         String documentElement=inDoc.getDocumentElement().getNodeName();
>         //send same message as response
>         if(documentElement.equals(RESPONSE_MESSAGE_ROOT)){
>             return createXMLMessageFromDocument(inDoc);
>         }
>         //if message goes to jms provider in case of update profile send
> succsess
>         if(documentElement.equals(REQUEST_MESSAGE_ROOT)){
>             return createResponseMessage(ErrorConstants.SUCCESS,"success");
>         }
>         return null;
>     }
>     
>     private static String createResponseMessage(String status, String
> message) {
>         XStream xstream = new XStream();
>         xstream.alias(RESPONSE_MESSAGE_ROOT, ResponseMessage.class);
>         ResponseMessage response =  new ResponseMessage();
>         response.setStatus(status);
>         response.setMessage(message);
>         return xstream.toXML(response);
>     }
>     
>     private String createXMLMessageFromDocument(Document document) throws
> IOException{
>         OutputFormat format    = new OutputFormat (document);
>         StringWriter stringOut = new StringWriter ();    
>         XMLSerializer serial   = new XMLSerializer (stringOut, format);
>         serial.serialize(document);
>         String message=  stringOut.toString().replace("<?xml version=\"1.0\"
> encoding=\"UTF-8\"?>", "");
>         return message;
>     }
> }
>
>
> I think something is missing in this class. What am I missing? What causes
> this class to hang?
> This happens in case of load testing only.
>
> Please help...
>
> Sandeep.
>
>