This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Verifying that +tealcosmo is my blockchain ID. https://onename.com/tealcosmo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<Configuration> | |
<Properties> | |
<Property name="logDir">${sys:mule.home}/logs</Property> | |
<Property name="appName">myapp</Property> | |
</Properties> | |
<Appenders> | |
<RollingFile name="diagnostic" fileName="${logDir}/mule-app-${appName}.log" | |
append="true" | |
filePattern="${logDir}/$${date:yyyy-MM}/mule-app-${appName}-%d{MM-dd-yyyy}-%i.log.gz"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<set-session-variable variableName="messageID" value="#[java.util.UUID.randomUUID().toString()]" /> | |
<logger level="INFO" message="Received message with messageID=#[messageID] from queue my_queue" | |
category="com.company.myapp.flowname" doc:name="INFO" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[12-02 11:26:08] INFO flow1: 18a72d84cb3b : Got Records 4 | |
[12-02 11:26:08] INFO Transformer: 18a72d84cb3b : Update Case to be mapped requestAction=UpdateJIRA, jiraId=STAR-10491 | |
[12-02 11:26:08] INFO sfdc-flow: 18a72d84cb3b : Outbound to SFDC recordId:303487 | |
[12-02 11:26:08] INFO sfdc-flow: 18a72d84cb3b : SFDC call success recordId:303487 | |
[12-02 11:26:08] INFO update-record: 18a72d84cb3b : After Update 303487 | |
[12-02 11:26:08] INFO Transformer: 18a72d84cb3b : Update Case Payload to be mapped requestAction=UpdateJIRA, jiraId=STAR-10496 | |
[12-02 11:26:08] INFO sfdc-flow: 18a72d84cb3b : Outbound to SFDC recordId:303488 | |
[12-02 11:26:08] INFO sfdc-flow: 18a72d84cb3b : SFDC call success recordId:303488 | |
[12-02 11:26:08] INFO update-record: 18a72d84cb3b : After Update 303488 | |
[12-02 11:26:08] INFO Transformer: 18a72d84cb3b : Update Case Payload to be mapped requestAction=UpdateJIRA, jiraId=STAR-10491 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[12-02 11:26:08] INFO flow1: Got Records 4 | |
[12-02 11:26:08] INFO Transformer: Update Case to be mapped requestAction=UpdateJIRA, jiraId=STAR-10491 | |
[12-02 11:26:08] INFO sfdc-flow: Outbound to SFDC recordId:303487 | |
[12-02 11:26:08] INFO sfdc-flow: SFDC call success recordId:303487 | |
[12-02 11:26:08] INFO update-record: After Update 303487 | |
[12-02 11:26:08] INFO Transformer: Update Case Payload to be mapped requestAction=UpdateJIRA, jiraId=STAR-10496 | |
[12-02 11:26:08] INFO sfdc-flow: Outbound to SFDC recordId:303488 | |
[12-02 11:26:08] INFO sfdc-flow: SFDC call success recordId:303488 | |
[12-02 11:26:08] INFO update-record: After Update 303488 | |
[12-02 11:26:08] INFO Transformer: Update Case Payload to be mapped requestAction=UpdateJIRA, jiraId=STAR-10491 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<batch:step name="Batch_Step1"> | |
<batch:commit size="1000" doc:name="Batch Commit"> | |
<data-mapper:transform | |
config-ref="Pojo_To_List_Order_Line_Items__c__1Pojo_To_List_Order_Line_Items__c__2" | |
doc:name="Pojo To List<Order_Line_Items__c>"/> | |
<set-variable variableName="batchPayload" value="#[payload]" doc:name="Variable"/> | |
<sfdc:create-job config-ref="SalesforceOrderConfig" | |
operation="upsert" type="Order_Line_Items__c" doc:name="sfOrderJob" | |
externalIdFieldName="EXT_OrderShipToLine_Number__c" /> | |
<set-variable variableName="job" value="#[payload]" |