mule中的Dropbox连接器未选择有效操作

mule中的Dropbox连接器未选择有效操作,mule,dropbox,dropbox-api,mule-studio,mule-component,Mule,Dropbox,Dropbox Api,Mule Studio,Mule Component,我尝试使用Mule创建一个简单的应用程序。无论如何,当我选择操作“授权”时,我得到了错误。但是如果我选择另一个操作,它就可以正常工作!! 我有Mule服务器版本=“CE-3.8.1”,并使用Anypoint studio版本:6.2.5 完整的XML配置: <?xml version="1.0" encoding="UTF-8"?> <mule xmlns:json="http://www.mulesoft.org/schema/mule/json" xmlns:file=

我尝试使用Mule创建一个简单的应用程序。无论如何,当我选择操作“授权”时,我得到了错误。但是如果我选择另一个操作,它就可以正常工作!!

我有Mule服务器版本=“CE-3.8.1”,并使用Anypoint studio版本:6.2.5

完整的XML配置:

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

<mule xmlns:json="http://www.mulesoft.org/schema/mule/json" xmlns:file="http://www.mulesoft.org/schema/mule/file" xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns:dropbox="http://www.mulesoft.org/schema/mule/dropbox" 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" 
    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
http://www.mulesoft.org/schema/mule/dropbox http://www.mulesoft.org/schema/mule/dropbox/current/mule-dropbox.xsd
http://www.mulesoft.org/schema/mule/file http://www.mulesoft.org/schema/mule/file/current/mule-file.xsd
http://www.mulesoft.org/schema/mule/json http://www.mulesoft.org/schema/mule/json/current/mule-json.xsd">
    <http:listener-config name="HTTP_Listener_Configuration8881" host="localhost" port="8881" doc:name="HTTP Listener Configuration"/>
    <dropbox:config name="Dropbox1" appKey="ovy1i8ak8u43t87" appSecret="7jlhpdzeyddi8d5" doc:name="Dropbox">
        <dropbox:oauth-callback-config domain="localhost" localPort="8881" remotePort="8881" path="callback"/>
    </dropbox:config>
    <http:request-config name="HTTP_Request_Configuration" host="www.mulesoft.com" port="80" doc:name="HTTP Request Configuration"/>
    <flow name="dropbox_integration2Flow">
        <http:listener config-ref="HTTP_Listener_Configuration8881" path="/authorize" doc:name="HTTP"/>
        <dropbox:unauthorize config-ref="Dropbox1" doc:name="Dropbox - authorize"/>
    </flow>
    <flow name="dropbox_integration2Flow1">
        <http:listener config-ref="HTTP_Listener_Configuration8881" path="/" doc:name="HTTP"/>
        <dropbox:create-folder config-ref="Dropbox1" path="/mule" doc:name="Dropbox - create"/>
        <http:request config-ref="HTTP_Request_Configuration" path="/sites/default/files/3C_mulesoft_logo_updated.svg" method="GET" doc:name="HTTP"/>
        <dropbox:upload-stream config-ref="Dropbox1" filename="mulelogo.png" path="/mule" doc:name="Dropbox - upload"/>
        <dropbox:get-link config-ref="Dropbox1" path="/mule/mulelogo.png" doc:name="Dropbox - get link"/>
        <json:object-to-json-transformer doc:name="Object to JSON"/>
    </flow>
</mule>


这有什么原因吗?如何修复?

这似乎是旧的Mule Dropbox云连接器Mule Studio Extension 3.3.0(2013)中的一个bug。你在用那个吗?如果是,我建议您使用最新的可用版本,Dropbox Connector 3.3.3(2015),该版本修复了错误

你能尝试重新启动APS吗?@RamakrishnaN我尝试了,但仍然得到相同的错误。我正在使用最新的Dropbox连接器版本:3.3.3(运行时版本:3.5),这很奇怪。我只能在3.3.0中复制它。您可以共享应用程序的XML吗?