Support TransportType = ServiceBusTransportType.AmqpWebSockets
In some corporate environments it is not possible to consume messages due to firewall rules.
Adding the possibility to use TransportType = ServiceBusTransportType.AmqpWebSockets could solve this issue. This should be set either as a global setting or indidually on a connection.
This would translate to using the option shown below in the code of CrossBusExplorer:
var client = new ServiceBusClient(
<connectionString>,
new ServiceBusClientOptions
{
TransportType = ServiceBusTransportType.AmqpWebSockets,
}
);
@Carael @gmiserez PR for this is open here
Closed via #68, no?
Yes @SeanFeldman- his one is fixed with #68. Thanks again @Paradiesvogel7 for your contribution.
Released in version 0.4.13.
Awesome, thanks @Paradiesvogel7 and @Carael !