Start the ActiveMQ broker in a docker container:
docker run --name artemis \ -e AMQ_USER=admin \ -e AMQ_PASSWORD=admin \ -d -p 5672:5672 \ quay.io/artemiscloud/activemq-artemis-broker
This example uses Camels own test Salesforce developer account, you would most likely want to sign up with your own Developer account at https://developer.salesforce.com/. After you have done that, you’ll need to create a Connected Application for your integration.
To do this after logging in to your Salesforce Developer account, navigate to Apps located under Build and then Create, there you should see Connected Apps table in the heading click on New and fill in the indicated required fields and enable the OAuth Settings, for Callback URL you can use https://login.salesforce.com/services/oauth2/success.
In the Available OAuth Scopes add Access and manage your data (api) and Perform requests on your behalf at any time (refresh_token, offline_access).
After clicking Save click on Manage on the top of the page and then click on Edit Policies. Change the IP Relaxation to Relax IP restrictions and click on Save.
NOTE: This will get you started quicker, but production you should re-evaluate to comply with your security needs.
Next gather your Consumer Key (clientId property), Consumer Secret (clientSecret) and either use username and password of the developer account; or get the refresh token from Salesforce (more on this below).
The example adds a custom field to Contact SObject, to add it to your Salesforce environment go into Customize under Build and choose Fields under Contact.
In Contact Custom Fields & Relationships click on New and add a
field of type Text
with field label AMQP Screen Name
, length
of 15 and for uniqueness select Do not allow duplicate values and set
the Set this field as the unique record identifier from an external
system.
In your browser go to the URL change the __YOUR_CLIENT_ID_HERE__
with your connected application Consumer Key:
https://login.salesforce.com/services/oauth2/authorize?response_type=token&client_id=
YOUR_CLIENT_ID_HERE&redirect_uri=https://login.salesforce.com/services/oauth2/success&display=touch
Allow access to the application, and you’ll end up on a page with
refresh_token
after the #
, something like:
https://login.salesforce.com/services/oauth2/success#access_token=..&refresh_token=
<refresh_token>&instance_url=...&issued_at=...&signature=...&scope=...&token_type=Bearer
The best way to generate Java representation of Salesforce SObjects is
to use the camel-salesforce-maven-plugin
and specify the desired DTO in <configuration> section, for example:
<configuration> <clientId>${camelSalesforce.clientId}</clientId> <clientSecret>${camelSalesforce.clientSecret}</clientSecret> <userName>${camelSalesforce.userName}</userName> <password>${camelSalesforce.password}</password> <includes> <include>Contact</include> </includes> </configuration>
To generate only DTOs needed for Contact, but the parameter value can be specified using regular expressions.
To run the example type using generate.dto profile
mvn -DcamelSalesforce.clientId=<client id> \ -DcamelSalesforce.clientSecret=<client secret> \ -DcamelSalesforce.userName=<username> \ -DcamelSalesforce.password=<password> \ -DcamelSalesforce.secureSocketProtocol=TLSv1.3 \ -Dgenerate.dto \ -Dspring.profiles.active=local \ spring-boot:run
To stop the example hit ctrl+c
The application exposes a REST endpoint that you can use to send a message to the ActiveMQ queue through the AMQP procotol. This message is then received in a second route and printed to the application log.
You can send the message with a following command:
curl -X POST -H "Content-Type: application/json" -d @src/main/resources/contact-message.json localhost:8080/amqp/
In the application log, you will see the following lines:
... [ XNIO-1 task-2] route1 : Message {"lastName" : "JBoss Fuse QA", "screenName" : "Camel For Spring Boot"} sent to AMQP queue ... [Consumer[example]] route2 : Received message from AMQP queue: {"lastName" : "JBoss Fuse QA", "screenName" : "Camel For Spring Boot"}
First, start with creating a new OpenShift project:
oc new-project csb-example-amqp-salesforce
Start a new deployment for Artemis:
oc new-app quay.io/artemiscloud/activemq-artemis-broker -e AMQ_USER=admin -e AMQ_PASSWORD=admin
Patch the default activemq-artemis-broker
service to serve the 5672
port:
oc patch service/activemq-artemis-broker -p '{"spec":{"ports":[{"name":"5672-tcp", "port": 5672, "protocol": "TCP", "targetPort": 5672}]}}'
The application is deployed using the openshift-maven-plugin
that takes care of creating all the necessary OpenShift resources.
Simply use the following command to deploy the application:
To run the example type using _generate.dto_ profile .... mvn clean package -DcamelSalesforce.clientId=<client id> \ -DcamelSalesforce.clientSecret=<client secret> \ -DcamelSalesforce.userName=<username> \ -DcamelSalesforce.password=<password> \ -DcamelSalesforce.secureSocketProtocol=TLSv1.3 \ -DcamelSalesforce.namespace=csb-example-amqp-salesforce \ -Dgenerate.dto \ -Dspring.profiles.active=openshift \ spring-boot:repackage -Popenshift ....
After the application pod reaches the Ready
state, you can try the same steps as in the local machine deployment.
To send the message to the application use:
curl -X POST -H "Content-Type: application/json" -d @src/main/resources/contact-message.json http://$(oc get route camel-example-spring-boot-amqp-salesforce -o jsonpath='{.spec.host}')/amqp/
To view the application logs, use oc logs dc/camel-example-spring-boot-amqp-salesforce
If you hit any problem using Camel or have some feedback, then please let us know.
We also love contributors, so get involved :-)
The Camel riders!