Salesforce org.jetel.exception.JetelRuntimeException:插入csv文件时记录:mule esb

Salesforce org.jetel.exception.JetelRuntimeException:插入csv文件时记录:mule esb,salesforce,mule,mule-studio,mule-component,Salesforce,Mule,Mule Studio,Mule Component,我将csv文件记录插入salesforce帐户。 我可以成功地将数据插入salesfore,但出现以下错误 ERROR 2015-02-03 14:21:39,709 [WatchDog_0] org.jetel.graph.runtime.SingleThreadWatchDog: Component [CSV READER:DATA_READER0] finished with status ERROR. Parsing error: Unexpected end of file in r

我将csv文件记录插入salesforce帐户。 我可以成功地将数据插入salesfore,但出现以下错误

ERROR 2015-02-03 14:21:39,709 [WatchDog_0] org.jetel.graph.runtime.SingleThreadWatchDog: Component [CSV READER:DATA_READER0] finished with status ERROR.
 Parsing error: Unexpected end of file in record 1, field 1 ("test_c"), metadata "report__c"; value: '<Raw record data is not available, please turn on verbose mode.>'
ERROR 2015-02-03 14:21:39,710 [WatchDog_0] org.jetel.graph.runtime.SingleThreadWatchDog: Error details:
org.jetel.exception.JetelRuntimeException: Component [CSV READER:DATA_READER0] finished with status ERROR.
解决办法是什么

还有一个问题 在salesforce之后,我想使用java组件。如何使用thta? 如果我使用java组件,它会给我以下错误

ERROR 2015-02-03 14:21:39,709 [WatchDog_0] org.jetel.graph.runtime.SingleThreadWatchDog: Component [CSV READER:DATA_READER0] finished with status ERROR.
 Parsing error: Unexpected end of file in record 1, field 1 ("test_c"), metadata "report__c"; value: '<Raw record data is not available, please turn on verbose mode.>'
ERROR 2015-02-03 14:21:39,710 [WatchDog_0] org.jetel.graph.runtime.SingleThreadWatchDog: Error details:
org.jetel.exception.JetelRuntimeException: Component [CSV READER:DATA_READER0] finished with status ERROR.

谢谢

这两个问题我都解决了。我使用了幂等滤波器,我的转换器只调用了一次

 <idempotent-message-filter idExpression="#[payload.state]" doc:name="Idempotent Message"/>

我解决了入口点解析器错误。我使用java transformer。现在的问题是我的java转换器被调用了两次。。为什么我的变压器打了两次电话???
1. Failed to find entry point for component, the following resolvers tried but failed: [
ReflectionEntryPointResolver: Could not find entry point on: "com.org.Status" with arguments: "{class java.lang.String}"
MethodHeaderPropertyEntryPointResolver: The required property "method" is not set on the event
AnnotatedEntryPointResolver: Component: com.org.Status@8f5673 doesn't have any annotated methods, skipping.
CallableEntryPointResolver: Object "com.org.Status@8f5673" does not implement required interface "interface org.mule.api.lifecycle.Callable"
 <idempotent-message-filter idExpression="#[payload.state]" doc:name="Idempotent Message"/>