Mule学习备忘

由于工作需要,开始学习Mule ESB,把学习过程中碰到的理解、问题和解决方法记录下来作为备忘。


1、根据http://www.blogjava.net/baoyaer/articles/353499.html 的例子运行Email发送的Demo,结果报错:

ERROR 2013-05-27 17:10:24,597 [[EmailDemo].EmailBridge.02] org.mule.exception.DefaultMessagingExceptionStrategy:

********************************************************************************

Message               : Unable to connect to mail transport.

Type                  : org.mule.api.endpoint.EndpointException

Code                  : MULE_ERROR--2

JavaDoc               : http://www.mulesoft.org/docs/site/current3/apidocs/org/mule/api/endpoint/EndpointException.html

********************************************************************************

Exception stack is:

1. 535 No SMTP server defined. Use real server address instead of 127.0.0.1 in your account.

(javax.mail.AuthenticationFailedException)

 com.sun.mail.smtp.SMTPTransport$Authenticator:648 (http://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/mail/AuthenticationFailedException.html)

2. Unable to connect to mail transport. (org.mule.api.endpoint.EndpointException)

 org.mule.transport.email.SmtpMessageDispatcher:71 (http://www.mulesoft.org/docs/site/current3/apidocs/org/mule/api/endpoint/EndpointException.html)

********************************************************************************

检查无果后,想起之前发生过由于杀毒软件导致Foxmail收发邮件的异常,所以把avast暂停并再次运行,结果运行成功,并顺利的收到了邮件。原来是杀毒软件惹的祸啊!


2、Mule的file endpoint实际上已经实现了很完善的目录监控功能,以file endpoint作为入口,可以很方便的实现目录内文件变化的监控。但目前好像还不支持子目录的递归监控。


(待更新...)



你可能感兴趣的:(mule)