Hi All,

I tried adding the Redmine connector of WSO2 ESB. First I created a Redmine
account and got the key. The url and the key I used to create the proxy
service are listed below.

apiURL - http://connector.m.redmine.org
apiKey - 3bed7029a2e5b8cb6978d81676fc9d3dab74398a


I got an error when trying to send a request. Here I have attached the
error I got and the proxy service.
Kindly appreciate your help on this.

Thank you.

-- 
*Bhashinee Nirmali*
Software Engineer Intern
WSO2 Inc.; http://wso2.com
Mobile : +94 (0) 712150003 <%2B94%20%280%29%20716%20590818>

Attachment: wirelog
Description: Binary data

<?xml version="1.0" encoding="UTF-8"?>
<proxy xmlns="http://ws.apache.org/ns/synapse";
       name="Redmine"
       transports="https http"
       startOnLoad="true"
       trace="disable">
   <description/>
   <target>
      <inSequence>
         <property name="apiUrl"
                   value="http://connector.m.redmine.org";
                   scope="default"
                   type="STRING"/>
         <property name="apiKey"
                   value="3bed7029a2e5b8cb6978d81676fc9d3dab74398a"
                   scope="default"
                   type="STRING"/>
         <property name="responseType" value="json" scope="default" type="STRING"/>
         <property name="description"
                   value="First Project"
                   scope="default"
                   type="STRING"/>
         <property name="name" value="First Project" scope="default" type="STRING"/>
         <property name="identifier" value="First" scope="default" type="STRING"/>
         <redmine.init>
            <apiUrl>{$ctx:apiUrl}</apiUrl>
            <apiKey>{$ctx:apiKey}</apiKey>
            <responseType>{$ctx:responseType}</responseType>
         </redmine.init>
         <property name="messageType" value="application/json" scope="axis2"/>
         <redmine.createProject>
            <description>{$ctx:description}</description>
            <name>{$ctx:name}</name>
            <identifier>{$ctx:identifier}</identifier>
         </redmine.createProject>
         <respond/>
      </inSequence>
   </target>
</proxy>
_______________________________________________
Dev mailing list
[email protected]
http://wso2.org/cgi-bin/mailman/listinfo/dev

Reply via email to