What assemblies do I need to add / change to deploy the Silverlight web application for Windows Azure [Error]?

I have a silverlight-based application consisting of diagrams using silverlight tools and connected to a database using RIA services (domain domain class, ADO.NET entity model). I want to deploy it to my azure account online.

I recently ran into

Instance 1 roles Website busy
Instance 1 roles Website cyclically

I have come across this problem over and over again.

Note. My Windows Azure SDK has been updated and I have already deployed an MVC based application.

This SOF answer tells me that I should add these assemblies: stack overflow

But this is for an MVC-based project, and mine is based on Silverlight (using C #).

Are there any assemblies that need to be added? Also my project works fine in localhost.

Also do I need to install some assemblies CopyLocal = true? And if yes, which ones?

Why can't I deploy my application (and get the above errors)? Are there any other problems?

Please reply Thanks

0
source share
1 answer

Since you are using RIA Services, it is possible that these assemblies are not available in your web role. To view all the assemblies available in web roles, follow this link: http://gacviewer.cloudapp.net/

- ASP.NET( - RIA Services) , - gacviewer, CopyLocal = true

, -, ( ) RDP , , .

+1

All Articles