为什么Mule App xml的Schema验证失败了Java Component Binding?

时间:2013-06-20 22:31:34

标签: mule mule-studio

我在我的mule app中配置了以下组件绑定。

<jersey:resources doc:name="REST">
        <component>
            <spring-object bean="activityController"/>
            <binding interface="edu.ucdavis.edustream.esb.activity.service.EduStreamService" method="putActivity">
                <vm:outbound-endpoint exchange-pattern="request-response"
                        path="putActivity" />
            </binding>
        </component>
    </jersey:resources> 

它构建并运行时没有错误,但是mule xml列出了以下错误:

Element: Binding Properties is not allowed to be child of element Java
Element: VM is not allowed to be child of element Binding Properties

我的配置非常类似于以下博客和随附的github src:

http://blogs.mulesoft.org/mule-component-bindings/ https://github.com/mulesoft/blog/tree/master/StockStats

为什么mule app xml架构验证失败了?

1 个答案:

答案 0 :(得分:2)

这是MuleStudio验证本身的一个问题,它仍缺乏对绑定的支持。你可以暂时忽略它,直到它被修复。