0

Mule Studio で簡単な Mule フローを作成しました。

<flow name="soapService" doc:name="soapService">
        <http:inbound-endpoint address="http://localhost:8888"
            exchange-pattern="request-response" doc:name="HTTP">
            <cxf:jaxws-service serviceClass="com.testing.Person" />
        </http:inbound-endpoint>

        <component class="com.testing.TestComponent" doc:name="Java"/>
        <ftp:outbound-endpoint host="localhost" port="21" outputPattern="#[function:datestamp:dd-MM-yy]_#[function:systime]" responseTimeout="10000" doc:name="FTP"  password="xxx"  user="ftpuser"/>
        <smtp:outbound-endpoint host="xxx" user="xxx" password="xxx" to="xxx@xxx.com" from="xxx@xxx.com" subject="Testing" responseTimeout="10000" doc:name="SMTP"/>

</flow>

これは、Mule Studio の起動、Run as -> Mule アプリケーションでは正常に動作しますが、Mule デプロイ可能なアーカイブとしてエクスポートし、Mule スタンドアロン esb を起動すると、ネストされた例外でデプロイに失敗しますInvalid content was found starting with element 'ftp:inbound-endpoint'.

ftp:endpoint を削除すると、正常に動作します。他のフローでも同様です。任意の ftp エンドポイント、インまたはアウトバウンドで例外が発生します。

Mulestudio バージョン: 3.4.0

mule-standalone-3.4.0

何か案は?

4

2 に答える 2

2

その理由は、Mule Studio がエンタープライズ エディションの名前空間と ftp エンドポイントの URL を入力するためです。

参照: http://www.mulesoft.org/documentation/display/current/FTP+Transport+Reference

Mule Studio で名前空間と URL を変更しても、ee に戻ります。そのため、zip をデプロイする前に、プロジェクトをエクスポートしてフロー ファイルを開き、変更を加える必要がありました。

    <mule xmlns:ftp="http://www.mulesoft.org/schema/mule/ee/ftp" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation" xmlns:spring="http://www.springframework.org/schema/beans" version="EE-3.4.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/ce/ftp http://www.mulesoft.org/schema/mule/ee/ftp/current/mule-ftp-ee.xsd">

<mule xmlns:ftp="http://www.mulesoft.org/schema/mule/ftp" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation" xmlns:spring="http://www.springframework.org/schema/beans" version="EE-3.4.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/ftp http://www.mulesoft.org/schema/mule/ftp/3.4/mule-ftp.xsd">
于 2013-05-28T10:09:30.987 に答える