I've created a simple mule flow with Mule Studio:
<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="[email protected]" from="[email protected]" subject="Testing" responseTimeout="10000" doc:name="SMTP"/>
</flow>
This works fine on mule Studio launch, Run as -> Mule application, but when i export it as mule deployable archive and start my mule standalone esb, it fails to deploy, with nested exception Invalid content was found starting with element 'ftp:inbound-endpoint'.
If I remove the ftp:endpoint, it works fine. Same in other flows too. any ftp-endpoint, in or outbound causes an exception.
Mulestudio version: 3.4.0
mule-standalone-3.4.0
Any ideas?