Failed to load the RDP file, for example, abc_webrole_IN_0 in the cloud service testingservicecall

Failed to load the RDP file, for example servicecall_webrole_IN_0, in the cloud service testingservicecall.

More details:

The supplied cscfg file can not be parsed. Got exception Microsoft.WindowsAzure.Plugins.RemoteAccess.AccountEncryptedPassword. 

Additional info: using windows azure for php mssql with zend.

ServiceConfiguration.cscfg

 <Setting name="Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString" value="UseDevelopmentStorage=true"/> <Setting name="Microsoft.WindowsAzure.Plugins.RemoteAccess.Enabled" value="true" /> <Setting name="Microsoft.WindowsAzure.Plugins.RemoteAccess.AccountUsername" value="somename" /> <Setting name="Microsoft.WindowsAzure.Plugins.RemoteAccess.AccountEncryptedPassword" value="MIIBnQYJKoSomeStringPassucansee" /> <Setting name="Microsoft.WindowsAzure.Plugins.RemoteAccess.AccountExpiration" value="2013-12-31T23:59:59.0000000-07:00" /> <Setting name="Microsoft.WindowsAzure.Plugins.RemoteForwarder.Enabled" value="true" /> 

what to put in AccountEncryptedPassword?

 <Setting name="Microsoft.WindowsAzure.Plugins.RemoteAccess.AccountEncryptedPassword" value="MIIBnQYJKoZIhv... " /> 

im using the eclipse editor.

+7
source share
2 answers

you need to rebuild / reinstall the configuration file using the remote access option and the correct certificate. If you manually inserted an encrypted password, you will most likely have a missing or additional character in the username or password field.

The error is very clear - the configuration file cannot be analyzed because the password cannot be decrypted.

Use the Visual Studio Package Wizard. Right-click the cloud project -> Package:

Package

Then click on "Settings":

Settings

Select a certificate, enter your username, password, and expiration date. This will set the appropriate value in your ServiceConfiguration file.

+6
source

My experience, Only if this happens to someone else:

1) The account has expired, so I went to Azure and changed the expiration date (CloudSvc / Remote Desktop)

2) Work with an error sent in this thread stopped.

3) In my case, the problem was that the Azure certificate for Remote Desktop expired, so you get a new one with the same CN name.

4) So, when I changed the expiration date of the account, she used the old certificate.

5) the reason why it took me a while to find out is that Combo has the same name twice to select a certificate:

RDP user change screen shot

6) when I switched to the second element with the same name, it started to work.

0
source

All Articles