can Atom feed be read from the wso2esb - wso2-esb

To enable data Integration between two systems need to read Atom feed and publish that data to the Topic or Queue. Is there a way to read the Atom feed via wso2esb for achieve this ?
Thanks in advance..

You can use the WSO2 ESB feed inbound and connector for this purpose. Details on how to configure this to read from atom feeds can be found in the official documentation
You can use the feed inbound to poll from the atom feed

Related

rabbitmq integration to Splunk

Recently I installed Rabbit MQ in Centos8 for my company. We also using Splunk Enterprise so we wants to integrate our Rabbit MQ to Splunk and we wants to see, search, check our logs which is coming from Rabbit MQ to in Splunk . How can I do that I don't know. I google it but I didn't get info about it. May anybody help to me for this goal ? Thank you
The scripts at https://github.com/jerrykuch/rabbitmq-splunk are somewhat old, but should still be functional. It can leverage the HTTP API to pull in the relevant data. That page also lists the recommended files to monitor
Always check Splunkbase when looking for ingesting data types - often there exist apps and add-ons that will do what you're looking for
Here are two related to RabbiMQ:
JMS Messaging Modular Input - https://splunkbase.splunk.com/app/1317/#/details
AMQP Messaging Modular Input - https://splunkbase.splunk.com/app/1812/#/details

Spring Cloud Stream RabbitMQ - Partitioning using header instead of routing key

I was going through the documentation but couldn't find anything related to this, so I'm here just to confirm with you.
We'd like to partition Rabbit queues using Spring Cloud Stream, but would like to do so without using routing keys for it. Is there a way to do it by using headers or properties in the messages?
RabbitMQ plugins allow this but, does spring cloud stream allow it in some way?
Thanks and regards.
You can manually provision whatever exchange type you want and set the declareExchange property to false.

How to get all the Queues in one node

I want fetch the all the available Queues in the one machine using Java API(Spring-AMQP). I didn't find the right API. Can anyone suggest the API for the same.
You have to use the REST API for that; the AMQP protocol itself has no support for it.
Spring AMQP 1.5 (currently milestone 1) has a wrapper for the java REST client - RabbitManagementTemplate or you can use the java client provided by the rabbitmq team directly.
Below HTTP get call will list you all queue
http://localhost:55672/api/queues
List all queues under a particular vhost:
http://localhost:55672/api/queues/vhost_name
Refer the doc for more details.

Mule esb integration with Mule MQ

I have gone through the documentation of how we can integrate mule esb with mule mq. But i couldn't find any download link for mule MQ. Even i read on mule blog the mule mq is out of market now. Can anybody comment on this.
below are the ref links
http://www.mulesoft.org/documentation-3.2/display/MULE2USER/MuleMQ+Integration
http://forum.mulesoft.org/mulesoft/topics/where_to_get_mule_mq_software
MuleSoft has completely abandoned MuleMQ. Use another message broker, like HornetQ, ActiveMQ or RabbitMQ.
Mule MQ is now totally deprecated.But it provides a seamless integration between various MOM which utilized JMS and other tools.
By default, Mule provides a JMS endpoint that can be used to send and receive messages using JMS API.
We can prefer the queuing vendors based upon two need
1.AMQP
Advanced Message Queuing Protocol,which provides so many advanced features in queue to provide the routing needs.RabbitMQ,ActiveMQ etc..
2.MSMQ
MSMQ is MOM provided by Microsoft as a component.If required it can be enabled from Turn Windows Features On or Off.It doesn't implements much features that AMQP provide.It also doesn't have a topic feature which is available in MSMQ.
I hope this answer helps you.
Thanks and Regards
As of now Mule MQ is discontinued, You can user other third party Queue broker solutions like - RabbitMQ, ActiveMQ.

WSO2 Custom Message Mediator Sample Starting Point

I've got a streaming UDP application that generates a stream of messages in a legacy format. These messages are generated in an un-solicited fashion (that is, it is not request/response).
I'd like to build a custom message mediator to take these messages into an enterprise network.
Can someone please point me to one or more samples in the WSO2 ESB portfolio that are a good starting point for building a custom mediator?
Any other samples, or examples, to serve as a starting point for a WSO2 ESB novice that needs to develop his first custom mediator would be appreciated.
You can refer these links.
(Creating a project by userself and compile a custom mediator jar)
http://docs.wso2.org/wiki/display/ESB460/Writing+a+WSO2+ESB+Mediator
(Using WSO2 Developer studio)
http://achala11.blogspot.com/2012/12/how-to-write-custom-mediator-wso2-esb.html