Hi
I have followed this tutorial to make my project:
http://msdn.microsoft.com/en-us/library/windowsazure/dn151790.aspx
The problem is that I can only login by adding the azure IP Address from my cloudservices-server in the Web.config and in the tntregrated app on the azure portal. It's not working with the domainname (https://[name].cloudapp.net:[port])
I found this link. This example is with ACS namespace but I tried this for my example
These were the commands I have given up on powershell
Connect-MsolService
Import-Module MSOnlineExtended -Force
$replyUrl = New-MsolServicePrincipalAddresses –Address "(https://[name].cloudapp.net/
New-MsolServicePrincipal –ServicePrincipalNames @((https://[name].cloudapp.net/") -DisplayName "name" -Addresses $replyUrl
Import-Module MSOnlineExtended -Force
$replyUrl2= New-MsolServicePrincipalAddresses –Address "(https://[name].cloudapp.net:[port]/"
New-MsolServicePrincipal –ServicePrincipalNames @("(https://[name].cloudapp.net:[port]/") -DisplayName "name" -Addresses $replyUrl2
Now, I have this error!
How can I solve my problem without working with a ACS namespace?
Regards
Nick