Created
October 5, 2012 17:22
-
-
Save johndemic/3841135 to your computer and use it in GitHub Desktop.
Creating Accounts with Mule and Cassandra
This file contains hidden or 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
<flow name="AccountCreate" doc:name="AccountsCreate"> | |
<http:inbound-endpoint | |
exchange-pattern="request-response" | |
host="localhost" | |
port="8081" | |
path="account/create" | |
mimeType="application/json" /> | |
<json:json-to-object-transformer | |
returnClass="java.util.Map"/> | |
<cassandradb:insert config-ref="CassandraDB" /> | |
<json:object-to-json-transformer /> | |
</flow> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment