What assemblies do need to add/change to deploy silverlight web application to Windows Azure [Error]?

后端 未结 1 1881
悲哀的现实
悲哀的现实 2021-01-27 14:44

I have a silverlight based application consisting of charts using silverlight toolkit and connected to database using RIA Services (Domain Service class, ADO.NET entity model).

1条回答
  •  北恋
    北恋 (楼主)
    2021-01-27 15:35

    Since you're using RIA Services it's possible that these assemblies are not available on your Web Role. To view all assemblies available on Web Roles, follow this link: http://gacviewer.cloudapp.net/

    You should double check with the assemblies in your ASP.NET Web Role (the one hosting the RIA Services application), and change all assemblies that you cant find on the gacviewer website to CopyLocal = true

    Besides that, if you activate Remote Desktop on your Web Role, you can (for testing purposes) connect through RDP and take a look at the event viewer to see what assemblies are missing.

    0 讨论(0)
提交回复
热议问题