c# - Using Service Bus 1.0 with Saml -
i'm building cross domain messaging service uses claims communicate services inside domain. in messaging service have:
this.messagefactory = messagingfactory.create(); this.namespacemanager = namespacemanager.create(); tokenprovider tokenprovider = tokenprovider.createsamltokenprovider(saml, new uri("https://<messaging service>:9355/<application namespace>/")); this.messagefactory.getsettings().tokenprovider = tokenprovider; this.namespacemanager.settings.tokenprovider = tokenprovider; where saml variable string of xml representing saml token. later on call
if (this.namespacemanager.topicexists(topicname) == false) { this.namespacemanager.createtopic(topicname); } when if statement called error:
the token provider service not avaliable when obtaining token 'https://<messaging service>:9355/<application namespace>/wrapv0.9/'.
with inner exception of:
the remote server returned error: (404) not found.
but when browse address response in web page:
<feed xmlns="http://www.w3.org/2005/atom"><title type="text">publicly listed services</title><subtitle type="text">this list of publicly-listed services available.</subtitle><id>uuid:7ad43729-3ed5-4c35-9987-48a34036d267;id=4</id><updated>2013-09-24t17:50:26z</updated><generator>service bus 1.0</generator></feed>
any ideas if config issue or missing that's needed token?
Comments
Post a Comment