This website uses Cookies. Click Accept to agree to our website's cookie use as described in our Privacy Policy. Click Preferences to customize your cookie settings.
I am trying to connect to Amazon MQ broker from SnapLogic to consume messages by using the RabbitMQ account since it is the only option in SnapLogic that supports amqp protocol. When I enter the Amazon MQ credentials and click on validate I get the e...
SnapLogic currently doesn’t have a dedicated snap pack for AWS SQS and SNS integration. Though we can use JMS consumer/producer snaps to configure it for SQS seamlessly however there is no mechanism to do that for SNS.
I guess the only possible way t...
I am trying to specify for my endpoint an SQS queue FIFO type. I don’t care if I am using the REST snap or JMS snap but I am reaching a dead end when using an SQS account for FIFO queue in JMS snap because SQS account supports only STANDARD SQS queu...
When using XML parser snap to parse XML documents we are facing a problem when handling XML array type. This is because XML parser parses XML Array at runtime to either a JSON array if the particular element in the incoming XML message comes as array...
I am facing two issues when reading an XML message form a queue and parsing it using an XML parser:
First issue: it is prefixing each data element with '@ ’ symbol.
Second issue: I am losing the JMSMessageID . I understand that I can use the Binaryt...
@aleung Just realized I never shared back my solution how I solved to publish to SNS topic directly from SnapLogic. I created this utility pipeline that leverage Python script to invoke AWS Java SDK to do the job.
I am setting the AWS secrets and oth...
mohamadelmardini:
[].concat[ element ]
First you have to use the out-of-box XML parser snap and configuring it should be easy as described in SnapLogic documentation. Then the hard part begins after the incoming XML input parsed into JSON is ...
@nshruthi
No I didn’t. Unfortunately SnapLogic doesn’t have an out-of-box solution in the XML parser to handle XML array transformation gracefully. I have an enhancement request opened with support but I haven’t heard any resolution on it yet and sti...
Following up on my prevoius question, I guess I found the answer on this link:
http://docs.aws.amazon.com/sns/latest/dg/using-awssdkjava.html
But feel free to add to it or provide a Python code snippet for SNS if I missed anything…
This is an excellent post cause we are running into similar problem with integrating to different AWS services such as publishing to SNS topic and we are trying to install Boto3 on the JCC node so hopefully the python script will pick it up. Apparent...