Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

To use the Marketo connector, add the <marketo.init> element in your configuration before carrying out any other Marketo operations. 

Code Block
languagexml
titleinit
<marketo.init>
    <marketoInstanceURL>{$ctx:marketoInstanceURL}</marketoInstanceURL>
    <clientId>{$ctx:clientId}</clientId>
    <clientSecret>{$ctx:clientSecret}</clientSecret>
</marketo.init>
properties
  • marketoInstanceURL: Your Marketo instance url(eg: https://AAA-BBB-CCC.mktorest.com).

  • clientId: Custom service client ID.

  • clientSecret: Custom service client secret.

...

http://developers.marketo.com/documentation/rest/

Additional information

  Ensure that the following Axis2 configurations are added and enabled in the <ESB_HOME>\repository\conf\axis2\axis2.xml file.

Required message formatters
Code Block
languagexml
titlemessageFormatters
<messageFormatter contentType="multipart/form-data" class="org.wso2.carbon.relay.ExpandingMessageFormatter"/>
Required message builders
Code Block
languagexml
titlemessageBuilders
<messageBuilder contentType="multipart/form-data" class="org.wso2.carbon.relay.BinaryRelayBuilder"/>

...