we are rebuilding our ERP-Application from a procedural programmed desktop app to a web-based solution and want to use Silverlight togehter with a WCF Service. Now we are struggling with an intelligent design of our new SL-App (still in planning/research phase). On Problem we are trying to solve is the more or less "thight" binding of the Silverlight-Client to the WCF.
The planned design looks at the moment like the following:
DataStore (Oracle DB) <-> SubSonic/ORM <-> WCF <-> Client
The problem is, that a change in our entities, methods, collections on WCF-Side needs a refresh of the entities and so on on the client because of the usage of "Service reference" in VS2010. What we tried was to outsource the Service Reference into a "Silverlight Class Library" ("Proxy-Project"), so that the Client-App is more loosely coupled to the WCF because it just references the Proxy-Project and on any changes on the server side we just have to refresh the proxy library and recompile it. Unfortunately that doesn't work as wanted, because on compiling the client the compiler said that the class library was compiled with the wrong version and "asked" for a 2.0.5 Library.
So what might be a good design for an silverlight application in combination with a wcf? How , if it is, is it possible to "totally" decouple the client from the server-side?
We want to build our application with the usage of Prism4, MVVM and Unity. Because of the fact that we are do not have so special knowledge in silverlight an wcf we are searching for some best practices for realy large silverlight apps with a lot of complex business logic inside.
Thanks in advance for any responses!
Chris