weird error with RIA Services “code generator encoutered a fatal exception”

后端 未结 1 633
暗喜
暗喜 2021-02-06 00:44

This is the second time that I have this really weird problem with WCF RIA Services! the sad thing is that I had to solve the problem twice, going through the different hoops ag

相关标签:
1条回答
  • 2021-02-06 01:18

    after toying around (for a while), I found the source of the "real problem" which was that, I was using some resource files (.resx) in the web application (host), and linked to them from my silverlight project (ProjectA). The issue was in the namespace of the generated resource classes. To solve this issue, I had to make sure that, for the original .resx files as well as the links, the following properties are set correctly:

    "Custom Tool" is set to PublicResXFileCodeGenerator
    "Custom Tool Namespace" is set to the same namespace ("ProjectA.Web.Resources" in my case)
    

    this obscure problem is hard to reproduce. once I solved it, trying to alter the properties didn't bring it back :s

    anyways, the note I wrote myself helped me in this situation, that's why I hope this note would help somebody else out there suffering from this issue (maybe that would be future me :P )

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