This site contains the documentation that is relevant to older WSO2 product versions and offerings.
For the latest WSO2 documentation, visit https://wso2.com/documentation/.
Configuring Eloqua Standard API Operations
To use the Eloqua connector, add the
element in your configuration before carrying out any other Eloqua operations to authenticate the request using HTTP basic authentication.<eloqua.init>
<eloqua.init> <siteName>{$ctx:siteName}</siteName> <username>{$ctx:username}</username> <password>{$ctx:password}</password> </eloqua.init>
properties
siteName :
The site name of the user.username :
The username of the user.password :
The password of the user.
For more information on authentication, see Basic Authentication.
Import the Eloqua certificate to your ESB client keystore.
You can follow the following steps to import your Eloqua certificate into wso2esb client’s keystore as follows:
Go to https://login.eloqua.com/ in your browser, and then click the HTTPS trust icon on the address bar (e.g., the padlock next to the URL in Firefox).
View the certificate details (the steps vary by browser) and then export the trust certificate to the file system.
Use the ESB Management Console or the following command to import that certificate into the ESB client keystore.Â
keytool -importcert -file CERT_FILE_NAME -keystore <ESB_HOME>/repository/resources/security/client-truststore.jks -alias "CERT_NAME"
 NOTE : CERT_FILE_NAME - Replace CERT_FILE_NAME with the file name that was extracted from Eloqua with the extension. (e.g. eloqua.crt)
           CERT_NAME - Replace CERT_NAME with an arbitrary name for the certificate. (e.g. eloqua)
Restart the server and deploy the Eloqua configuration.
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
<messageFormatter contentType="text/html" class="org.wso2.carbon.relay.ExpandingMessageFormatter"/>
Required message builders
<messageBuilder contentType="text/html" class="org.wso2.carbon.relay.BinaryRelayBuilder"/>
Now that you have connected to Eloqua, use the information in the following topics to perform various operations with the connector.