CrossBusExplorer icon indicating copy to clipboard operation
CrossBusExplorer copied to clipboard

Support TransportType = ServiceBusTransportType.AmqpWebSockets

Open gmiserez opened this issue 5 months ago • 1 comments

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,
            }
        );

gmiserez avatar Aug 05 '25 11:08 gmiserez

@Carael @gmiserez PR for this is open here

Paradiesvogel7 avatar Nov 12 '25 11:11 Paradiesvogel7

Closed via #68, no?

SeanFeldman avatar Nov 13 '25 19:11 SeanFeldman

Yes @SeanFeldman- his one is fixed with #68. Thanks again @Paradiesvogel7 for your contribution.

Released in version 0.4.13.

Carael avatar Nov 14 '25 08:11 Carael

Awesome, thanks @Paradiesvogel7 and @Carael !

gmiserez avatar Nov 14 '25 08:11 gmiserez