-
Expected Behavior / New FeatureI am expecting to have a configuration that allows me to pass messages to the message queue.
Actual Behavior / Motivation for New FeatureAt the current moment, it is possible to use "http", "https" and "ws" as a value for "DownstreamScheme". Is it possible to implement such behavior? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hello, Taras! Welcome to Ocelot world! 🐯
Regrettably, Ocelot cannot route RabbitMQ traffic. However, if you configure upstream clients and downstream services to handle HTTP or WebSockets traffic, Ocelot should be able to route it. Downgrading the protocol to an insecure HTTP scheme is likely not in your or the community's interest. A more acceptable option would be the
Please read the following document: Which protocols does RabbitMQ support?
In theory, anything is possible. However, merely specifying the |
Beta Was this translation helpful? Give feedback.
Hello, Taras! Welcome to Ocelot world! 🐯
Regrettably, Ocelot cannot route RabbitMQ traffic. However, if you configure upstream clients and downstream services to handle HTTP or WebSockets traffic, Ocelot should be able to route it. Downgrading the protocol to an insecure HTTP scheme is likely not in your or the community's interest. A more acceptable option would be the
wss
scheme. This reflects the present capabilities of Ocelot's pipeline. So, read this → RabbitMQ | HTTP and WebSocketsPl…