Last active
August 29, 2015 14:04
-
-
Save joshrosso/6f69309716bdef0b7078 to your computer and use it in GitHub Desktop.
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
<flow name="SFWebService" doc:name="SFWebService"> | |
<http:inbound-endpoint host="localhost" port="8081" | |
path="sfdc" exchange-pattern="request-response" doc:name="HTTP" /> | |
<sfdc:query config-ref="Salesforce" doc:name="Salesforce" | |
query="dsql:SELECT BillingCity,BillingCountry,BillingPostalCode,BillingState,BillingStreet,Name | |
FROM Account | |
WHERE BillingPostalCode = '94116'" /> | |
<json:object-to-json-transformer | |
doc:name="Object-to-JSON" /> | |
</flow> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment