I have ASP webrole that works great without ACS. When i add ACS to the my application it works fine locally. However when i deploy it to the cloud its doesnt seem to be packaging the Microsoft.IdentityModel.dll.

Now I have done the following:

  1. Ensured under the References that copy local = true for "Microsoft.IdentityModel"
  2. Tired re-adding the STS references. 3.Right click>>Add referance>>Microsoft.IdentityModel.dll

This used to also work fine without having to install WIF on the actual server.

Any ideas?

link|improve this question
Hi MAC can u tell me where u add your dll reference.In which project solution?I face that problem Before i use my dll reference in console application and face the same issue. – V_B Feb 9 at 8:45
Im adding the reference to the WebRole solution which is a Web Applciation. – MAc Feb 9 at 8:58
feedback

2 Answers

Please check out these resources, which might help you solving your issue:

Hope this helps!

link|improve this answer
Ok so its a known issue, thanks for the links. But i still haven't been able to resolve this issue. This link was a bit more helpful but in that case the VM kept cycling and eventually stopped. My next step was to deploy>>>RDP to the VM>> and manually run the power shell scipt. This did install WIF on the VM however i still got the error:Unable to find assembly 'Microsoft.IdentityModel". arg arg arg..... – MAc Feb 10 at 7:47
How come provided links did not help. I used the GIT PowerShell Scrtipt for installing WIF and it works. What issues do you have ? – astaykov Feb 10 at 13:56
feedback

The only thing that worked for me is described in this post under "using windows update packages section" (but I had to make some minor changes to the startup script)

Basically, I had to create a Startup Task, which executes batch file InstallWif.cmd that I've created under my web project. I also downloaded and included WIF install package (Windows6.0-KB974405-x64.msu) into my web project. I set "Copy to Output Directory" property to "Copy Always" for both of these files.

InstallWif.cmd contained the following script

@echo off
sc config wuauserv start= demand
wusa.exe "%~dp0Windows6.0-KB974405-x64.msu" /quiet /norestart
sc config wuauserv start= disabled
exit /b 0

Note that I had to use Windows6.0-KB974405-x64.msu and not Windows6.1-KB974405-x64.msu. I found out that 6.1 version wouldn't install by logging to Azure VM instance using a remote desktop connection to Azure and trying to manually install this version there.

Startup task is defined inside ServiceDefinition.csdef file like this

 <Startup>
   <Task commandLine="InstallWif.cmd" executionContext="elevated" taskType="simple" />
 </Startup> 
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.