I am trying to implement some java clients using AMQP. However I am running into issues actually sending a message to a queue/topic. It appears we can authenticate just fine but get a message "Peer did not create remote endpoint for link" when trying to send a message.
Since we have plenty of .NET clients that are in use and sending and receiving messages successfully, I decided to use create a .NET test client connecting using AMQP. Again I can authenticate but the instance I try to send a message to a queue, I get the following error -
"The remote certificate is invalid according to the validation procedure.".
When I switch to using the standard protocol, everything works fine. I can send and receive messages from a queue. So This leads me to believe we have an SSL issue in conjunction with AMQP. I'm not sure what the issue could be. We are using a wildcard SSL that was issued by Network Solutions.
I tried looking for settings for AMQP around certificates but didn't find anything. I tried importing the certificate on the client but that doesn't solve the issue and should be needed since it's issued by a trusted publisher.
I'm at a lost where to look next. The searching I've done on AMQP doesn't come up with anyone else having this issue.
We've been using service bus 1.0/1.1 for the past year and have plenty of .NET clients that run just fine using the native soap protocol so I don't believe we have Service Bus setup issue.