我使用的是Mule Community Edition 3.4.0,我在设置/获取流之间的会话变量时遇到了问题。 我有一个流程,其中有一个UntilSuccessful组件;当发生异常时,我使用拦截器将异常名称保存在会话变量中,以便在另一个流中读取它。问题是,当我尝试重试会话变量时,我得到一个空值。我真的不知道为什么。 在下面你可以看到mule配置文件:
<spring:beans>
<spring:bean id="OS_Bean_id" name="OS_Bean" class="org.mule.util.store.QueuePersistenceObjectStore"/>
<spring:bean id="myExceptionHandler_id" class="it.aizoon.prova.ManageException" name="myExceptionHandler"/>
<spring:bean id="handleException_id" name="handleException" class="it.aizoon.prova.exception.CustomSoapFaultInInterceptor"/>
<spring:bean id="handleSysError_id" name="handleSysError" class="it.aizoon.prova.exception.CustomInInterceptor"/>
<spring:bean id="BeanCheckProperty_id" name="BeanCheckProperty" class="it.aizoon.prova.utilities.CheckProperty"/>
</spring:beans>
<http:endpoint exchange-pattern="request-response" host="localhost" port="8081" path="service/prova" method="POST" name="HTTP" doc:name="HTTP"/>
<vm:endpoint exchange-pattern="one-way" path="myQueue" name="myQueue" doc:name="VM"/>
<queued-asynchronous-processing-strategy name="Queued_Asynchronous_Processing_Strategy" doc:name="Queued Asynchronous Processing Strategy">
<file-queue-store/>
</queued-asynchronous-processing-strategy>
<flow name="myFlow" doc:name="myFlow" processingStrategy="Queued_Asynchronous_Processing_Strategy">
<vm:inbound-endpoint exchange-pattern="one-way" doc:name="VM" ref="myQueue"/>
<logger level="INFO" doc:name="Logger" message="EEEEE: #[exception]"/>
<processor ref="BeanCheckProperty"/>
<set-payload value="The request cannot be processed, the error is #[payload]" doc:name="Set Payload"/>
<set-property propertyName="http.status" value="500" doc:name="Property"/>
<logger message="PAYLOAD_VM: #[payload]" level="INFO" doc:name="Logger"/>
</flow>
<flow name="ProvaRepeatFlow1" doc:name="ProvaRepeatFlow1" processingStrategy="Queued_Asynchronous_Processing_Strategy">
<quartz:inbound-endpoint jobName="TalendJob" repeatInterval="5000" repeatCount="0" responseTimeout="10000" doc:name="Quartz">
<quartz:event-generator-job>
<quartz:payload>error</quartz:payload>
</quartz:event-generator-job>
</quartz:inbound-endpoint>
<object-to-string-transformer doc:name="Object to String"/>
<until-successful objectStore-ref="OS_Bean" maxRetries="2" secondsBetweenRetries="2" doc:name="Until Successful" >
<flow-ref name="CallWebService" doc:name="Flow Reference"/>
</until-successful>
<catch-exception-strategy doc:name="Catch Exception Strategy">
<processor-chain doc:name="Processor Chain">
<logger level="INFO" doc:name="Logger"/>
<vm:outbound-endpoint exchange-pattern="one-way" path="myQueue" doc:name="VM"/>
</processor-chain>
</catch-exception-strategy>
</flow>
<sub-flow name="CallWebService" doc:name="CallWebService">
<processor-chain doc:name="Processor Chain">
<cxf:jaxws-client operation="getCode" clientClass="it.aizoon.prova.client.ProvaService" port="ProvaPort" enableMuleSoapHeaders="true" doc:name="SOAP">
<cxf:inInterceptors>
<!-- <spring:ref bean="handleSysError"/> -->
</cxf:inInterceptors>
<cxf:inFaultInterceptors>
<spring:ref bean="handleException"/>
</cxf:inFaultInterceptors>
<cxf:outInterceptors/>
<cxf:outFaultInterceptors/>
</cxf:jaxws-client>
<http:outbound-endpoint exchange-pattern="request-response" host="localhost" port="8088" path="mockProvaServiceSoapBinding" method="POST" doc:name="HTTP"/>
</processor-chain>
</sub-flow>
正如您所看到的,我有一个SOAP组件。如果存在SOAP Fault,我能够拦截它并将其名称保存在名为EXCEPTION的会话变量中。这里有拦截器代码:
public class CustomSoapFaultInInterceptor extends AbstractPhaseInterceptor{
public CustomSoapFaultInInterceptor() {
// TODO Auto-generated constructor stub
super(Phase.INVOKE);
//getAfter().add(Soap11FaultInInterceptor.class.getName());
}
@Override
public void handleMessage(Message message) throws Fault {
// TODO Auto-generated method stub
System.out.println("InFaultInterceptor_CONTENUTO ECCEZIONE: " + message.getContent(Exception.class));
System.out.println("InFaultInterceptor_CONTENUTO EVENTO MULE: " + message.getExchange().get(CxfConstants.MULE_EVENT));
MuleEvent muleEvent = (MuleEvent) message.getExchange().get(CxfConstants.MULE_EVENT);
MuleMessage muleMessage = muleEvent.getMessage();
if((message.getContent(Exception.class)) instanceof ParideExec_Exception){
ParideExec_Exception parideExec = (ParideExec_Exception) message.getContent(Exception.class);
String exceptionName = message.getContent(Exception.class).getClass().getName();
//context.getRegistry().registerObject("Eccezione", exceptionName);
muleEvent.setSessionVariable("CustomExec", exceptionName);
System.out.println("ID SESSIONE: " + muleEvent.getSession().getId());
}
}
}
这里是另一个流中读取会话变量的java代码。
public class CheckProperty implements MessageProcessor{
@Override
public MuleEvent process(MuleEvent event) throws MuleException {
// TODO Auto-generated method stub
System.out.println("PPPP: " + event.getSessionVariable("CustomExec"));
System.out.println("ID SESSIONE: " + event.getSession().getId());
if(event.getSessionVariable("CustomExec") != null){
System.out.println("EXCEPTION: " + event.getSessionVariable("CustomExec"));
String exceptionName = event.getSessionVariable("CustomExec").toString();
event.getMessage().setPayload(exceptionName);
}
return event;
}
但是这个变量id为null。 请帮我。 我不知道为什么Mule有这种行为。
答案 0 :(得分:2)
根据您提供的流信息,我可以看到您正在使用直到成功的路由器来处理呼叫,当发生异常时,您将异常设置为会话变量,然后返回主流异常策略,并将其传递给一个vm流程,用于检索会话变量。
第1点:直到成功的路由器是一个异步处理器。 因此,在调用直到成功的路由器之后,主流将继续。 因此,从成功(子流)传递的会话变量永远不会到达主流。
<catch-exception-strategy doc:name="Catch Exception Strategy">
<processor-chain doc:name="Processor Chain">
<logger level="INFO" doc:name="Logger"/>
您可以在主流程中的catch-exception策略中看到记录器。它打印出日志中所有范围的所有属性。那里你找不到你的会话变量。所以它不是从成功传递到你的主要例外策略。
有关直至成功的更多详情,请访问以下链接。
答案 1 :(得分:2)
我发现当你使用直到成功的组件时,你必须在流中传递变量的唯一可能性是使用MuleContext,特别是设置在mule上下文中每个mule应用程序的每个流之间共享的变量(< EM> event.getMuleContext.getRegistry.registerObject(键,值))。唯一的缺点是共享这个变量,但有了正确的封装,你可以解决这个问题