Azure service bus access using Java SDK, Connectivity Mode
问题 There are several examples of configuring the service bus environment to use http/https with C#, using the call: ServiceBusEnvironment.SystemConnectivity.Mode = ConnectivityMode.Http; My question is - can and how do I do this via a java client? 回答1: The newer versions of the SDK (1.0 and later) do not support HTTP connectivity (AMQP only), and the older ones do not support AMQP (HTTP only). As a result there's no "need" for connectivity mode settings. The Java SDK is AMQP only. If http is