I'm trying to use AMQP/JMS from Java to an Event Hub but there are no actual examples or docs on how to properly do so. I managed to get it working somewhat by subscribing to a topic of "{eventHubName}/ConsumerGroups/$Default/Partitions/{partitionid}" but the problems is 1) how do we connect to custom consumer groups, 2) how do we specify the starting offset, 3) what type of subscriber should we be using (durable, consumer, etc.), 4) what message acknowledgement mode should we use? I also only start receiving a first batch of messages and then nothing.
Please if you could provide some assistance and examples I'd really appreciate it!!!