我正在尝试使用位于以下位置的MUnit FTP服务器:https://docs.mulesoft.com/mule-user-guide/v/3.7/munit-ftp-server

有几个示例引用了ftpserver命名空间,但没有提供架构的定义。例如:

<ftpserver:config port="${ftp.port}" name="ftpServer"/>


如何在Mule配置中定义ftpserver命名空间?我似乎找不到一个例子。

最佳答案

基于此模块的jar中的架构,我相信是这样的:

xmlns:ftpserver="http://www.mulesoft.org/schema/mule/ftpserver"


和架构:

http://www.mulesoft.org/schema/mule/ftpserver http://www.mulesoft.org/schema/mule/ftpserver/current/mule-ftpserver.xsd

09-05 17:47