I installed Service Bus 1.0 on a server connected to a domain.
In a client application running on a PC connected to the same domain, I can create queues, messages, etc. I am using a connection string defining user credentials in the same domain. Everything works.
From a client application running on a PC outside the domain, nothing works. I thought this was because you could not use a user from the server domain if the client application was not in the same domain, so I am also trying to use the connection string containing SharedSecretIssuer and ShareSecretValue. With this approach, I got:
The token provider service was not available when receiving the token for "https://servicebus01.dns1.XXXXXX.com:9355/XXXXXServiceBus/WRAPv0.9/". Innner exception contains "The remote server returned an error: (404) Not found.".
Does anyone know if it is possible to connect to the service bus server outside the domain of this server?
source share