how i can send the issue mule to Jira?

410 Views Asked by At

I am Using mule software for integrate Salesforce with Jira. I want to send Issue Mule to Jira. How i can send the data mule to jira. How i can create the flow to connect with Jira. What are all the object i have to use. the Following flow i create

 <jira:config name="Jira" connectionUser="admin" connectionPassword="xxxxxx" connectionAddress="https://company.atlassian.net/rpc/soap/jirasoapservice-v2" doc:name="Jira"/>
<flow name="jira_sampleFlow1" doc:name="jira_sampleFlow1">
    <http:inbound-endpoint exchange-pattern="request-response" host="localhost" port="8081" doc:name="HTTP"/>
    <jira:create-issue config-ref="Jira"  doc:name="Jira" connectionAddress="https://company.atlassian.net/rpc/soap/jirasoapservice-v2" connectionPassword="******" connectionUser="admin" project="TEST-1" summary="TEST-1" type="TEST-1"/>
    <object-to-string-transformer doc:name="Object to String"/>
    <file:outbound-endpoint path="C:\Users\user\Desktop\FinalCode" responseTimeout="10000" doc:name="File"/>
</flow>
0

There are 0 best solutions below