MuleStudio-未能部署应用程序

MuleStudio-未能部署应用程序,mule,mule-studio,Mule,Mule Studio,从MuleStudio启动Mule应用程序时遇到问题。有什么建议吗 以下是我的配置xml: <?xml version="1.0" encoding="UTF-8"?> <mule xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule

从MuleStudio启动Mule应用程序时遇到问题。有什么建议吗

以下是我的配置xml:

<?xml version="1.0" encoding="UTF-8"?>

<mule xmlns:http="http://www.mulesoft.org/schema/mule/http" 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="CE-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/http http: //www.mulesoft.org/schema/mule/http/current/mule-http.xsd">
    <flow name="testFlow1" doc:name="testFlow1">
        <http:inbound-endpoint exchange-pattern="request-response" host="localhost" port="8081" doc:name="HTTP"/>
        <logger message="testing" level="INFO" doc:name="Logger"/>
    </flow>
</mule>
。。。。这是我得到的一个例外

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ Initializing app 'test'                                  +
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
INFO  2014-05-25 16:48:56,694 [main] org.mule.module.launcher.application.DefaultMuleApplication: App 'test' never started, nothing to dispose of
Exception in thread "main" org.mule.module.launcher.DeploymentException: Failed to deploy application [test]
    at org.mule.module.launcher.DefaultMuleDeployer.deploy(DefaultMuleDeployer.java:61)
    at org.mule.tooling.server.application.ApplicationDeployer.run(ApplicationDeployer.java:58)
    at org.mule.tooling.server.application.ApplicationDeployer.main(ApplicationDeployer.java:91)
Caused by: javax.xml.parsers.FactoryConfigurationError: Provider org.apache.xerces.jaxp.SAXParserFactoryImpl not found
    at javax.xml.parsers.SAXParserFactory.newInstance(Unknown Source)
    at org.mule.config.DefaultMuleConfiguration.validateXML(DefaultMuleConfiguration.java:371)
    at org.mule.config.DefaultMuleConfiguration.<init>(DefaultMuleConfiguration.java:209)
    at org.mule.module.launcher.ApplicationMuleContextBuilder.createMuleConfiguration(ApplicationMuleContextBuilder.java:36)
    at org.mule.context.DefaultMuleContextBuilder.getMuleConfiguration(DefaultMuleContextBuilder.java:135)
    at org.mule.context.DefaultMuleContextBuilder.buildMuleContext(DefaultMuleContextBuilder.java:97)
    at org.mule.context.DefaultMuleContextFactory.buildMuleContext(DefaultMuleContextFactory.java:215)
    at org.mule.context.DefaultMuleContextFactory.doCreateMuleContext(DefaultMuleContextFactory.java:201)
    at org.mule.context.DefaultMuleContextFactory.createMuleContext(DefaultMuleContextFactory.java:79)
    at org.mule.module.launcher.application.DefaultMuleApplication.init(DefaultMuleApplication.java:207)
    at org.mule.module.launcher.application.ApplicationWrapper.init(ApplicationWrapper.java:64)
    at org.mule.module.launcher.DefaultMuleDeployer.deploy(DefaultMuleDeployer.java:47)
    ... 2 more

请给出完整的Mule配置。。。仅从两行代码分析是很困难的所有配置都在这里,但OP没有使用代码格式。固定的