Note that there are some explanatory texts on larger screens.

plurals
  1. POMicrosoft Service Bus on a Windows Workgroup
    primarykey
    data
    text
    <p>I just started playing with Microsoft Service Bus. Now my personal challenge is that I'm doing this after hours, on my own time, etc, which means I am using VMs and Non-Domain pcs. These guys are all workgroup.</p> <p>I've had pretty decent success, especially after I stumbled across this link: <a href="https://stackoverflow.com/questions/13179937/microsoft-service-bus-1-0-unable-to-communicate-with-a-server-outside-the-client">Microsoft Service Bus 1.0 unable to communicate with a server outside the client&#39;s domain</a></p> <p>This guy provided a much needed boost to get me past being able to use the namespace to create queues, etc.</p> <p>However, went I get to the QueueClient.Send() function, I'm still getting (and I paraphrased that a bit).</p> <pre><code>"The token provider was unable to provide a security token while accessing 'https://Windows2008Server:9355/ServiceBusDefaultNamespace/$STS/Windows/'. Token provider returned message: ''. </code></pre> <p>The same code from the link above is what I'm using for the message factory. So my question becomes, does anybody have any ideas on how to get past this send to work?</p> <p>If I can get past this little issue then I can start seeing what Service Bus can really do.</p> <p>Thanks so much!</p> <p>Nick</p> <hr> <p>Same issue as before, changed my code to be this:</p> <pre><code> TokenProvider localUserTokenProvider = WindowsTokenProvider.CreateWindowsTokenProvider(connBuilder.StsEndpoints,new System.Net.NetworkCredential("LocalServer", "LocalPassword")); MessagingFactory messageFactory = MessagingFactory.Create(connBuilder.GetAbsoluteRuntimeEndpoints(), localUserTokenProvider); NamespaceManager namespaceManager = new NamespaceManager(connBuilder.GetAbsoluteManagementEndpoints(), localUserTokenProvider); </code></pre> <p>So, it looks like I still need to have the same account on both of them...</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload