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

link|improve this question
I don't think this question is clear. Many Silverlight implementations utilize WCF and it's totally doable in a loosely coupled way, but you may have to let go of some of the built in Visual Studio code generators in that case (like the RIA Services stuff). There are probably samples showing what you are looking for, but I am not aware of any off the top of my head, sorry. – Michael Maddox Apr 3 '11 at 11:41
You can send to the client not entities, but some kind of wrappers on them. So these DataContracts will allways be the same, and all that you will need is to convert correctly entities to these contracts. – vorrtex Apr 3 '11 at 20:51
@vorrtex that means the usage of some kind of code generation for the data contracts, e.g. converting the entities generated by the orm to data contracts? – Chris10 Apr 3 '11 at 21:32
@Michael The question is: How do you handle changes in collections, lists etc. because these must be populated to the client so that it could successfully access the wcf. – Chris10 Apr 3 '11 at 21:34
@Chris10 There is no use in autogeneration. It would be better to create DataContracts at once and make only those changes which aren't affect clients, like adding non-required properties. But the converter between the orm and datacontracts isn't so obvious. The most probably the autogeneration of code will make the life much easier, because it isn't interesting and easy to copy properties from one object to another. – vorrtex Apr 3 '11 at 22:52
show 4 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.