Deploying failed when I am trying to deploying applicaion in mule 3.4.2 server

584 Views Asked by At

Deploying failed when I am trying deploying applicaion

The below error I am getting. could you please help me out on this?

WARN  2015-06-19 15:02:42,393 [[bmrs_mule_phase2_2.0.12].http.request.dispatch.7051.01] com.mulesoft.mule.throttling.ThrottlingPhase: Failure processing throttling phase null
ERROR 2015-06-19 15:02:42,394 [[bmrs_mule_phase2_2.0.12].http.request.dispatch.7051.01] org.mule.exception.DefaultSystemExceptionStrategy: Caught exception in Exception Strategy: null
java.lang.NullPointerException
    at com.mulesoft.mule.throttling.ThrottlingPhase.runPhase(ThrottlingPhase.java:76)
    at com.mulesoft.mule.throttling.ThrottlingPhase.runPhase(ThrottlingPhase.java:1)
    at org.mule.execution.PhaseExecutionEngine$InternalPhaseExecutionEngine.phaseSuccessfully(PhaseExecutionEngine.java:54)
    at org.mule.execution.ValidationPhase.runPhase(ValidationPhase.java:36)
    at org.mule.execution.ValidationPhase.runPhase(ValidationPhase.java:15)
    at org.mule.execution.PhaseExecutionEngine$InternalPhaseExecutionEngine.process(PhaseExecutionEngine.java:98)
    at org.mule.execution.PhaseExecutionEngine.process(PhaseExecutionEngine.java:30)
    at org.mule.execution.MuleMessageProcessingManager.processMessage(MuleMessageProcessingManager.java:32)
    at org.mule.transport.AbstractMessageReceiver.processMessage(AbstractMessageReceiver.java:550)
    at org.mule.transport.http.HttpMessageReceiver.processRequest(HttpMessageReceiver.java:59)
    at org.mule.transport.http.HttpRequestDispatcherWork.run(HttpRequestDispatcherWork.java:73)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
    at java.lang.Thread.run(Thread.java:745)
WARN  2015-06-19 15:02:42,397 [[bmrs_mule_phase2_2.0.12].http.request.dispatch.7051.01] com.mulesoft.mule.throttling.ThrottlingPhase: Failure processing throttling phase null
ERROR 2015-06-19 15:02:42,397 [[bmrs_mule_phase2_2.0.12].http.request.dispatch.7051.01] org.mule.exception.DefaultSystemExceptionStrategy: Caught exception in Exception Strategy: null
java.lang.NullPointerException
    at com.mulesoft.mule.throttling.ThrottlingPhase.runPhase(ThrottlingPhase.java:76)
    at com.mulesoft.mule.throttling.ThrottlingPhase.runPhase(ThrottlingPhase.java:1)
    at org.mule.execution.PhaseExecutionEngine$InternalPhaseExecutionEngine.phaseSuccessfully(PhaseExecutionEngine.java:54)
    at org.mule.execution.ValidationPhase.runPhase(ValidationPhase.java:36)
    at org.mule.execution.ValidationPhase.runPhase(ValidationPhase.java:15)
    at org.mule.execution.PhaseExecutionEngine$InternalPhaseExecutionEngine.process(PhaseExecutionEngine.java:98)
2

There are 2 best solutions below

0
On

Seems like you are trying to deploy the application to CE runtime. Try deploying to EE Runtime

3
On

Looking at the (decompiled) source code, the issue comes from the fact no ThrottlingManager is available to your application, not even the default one which is bound in the registry under key _muleThrottlingManager for Mule EE servers.

This is a wild guess but I think you're trying to deploy a Mule application built for Mule 3.4.2 EE on a 3.4.2 CE server: you need to deploy on an EE server.