I am currently developing a WCF service that will evolve over time to include new DTOs. I am currently using MEF withing the service implementation to export the webservice object. I have the WCF service project and the datacontracts' project within the same solution. For now, both the projects are compiled under one solution.

Essentially what I want to do is to have a scheme that I can incorporate into the WCF service project so that I can add new datacontracts in future. This scheme does not have to use MEF. These new datacontracts are to be developed in a different solution but under the same namespace (or not). After compilation, I would only need to drop the new datacontracts' assembly in the ..\bin folder and restart the service. The service would then pickup the new datacontracts so that they can be spewed into the WSDL.

I hope this is specific enough.

link|improve this question
If you add more information to your question, edit the question, don't add a comment. – mac Jul 6 '11 at 10:59
1  
Do you mean add more service contracts? Data contracts can't be used without a service which consumes/returns them... – Matthew Abbott Jul 6 '11 at 15:48
Add more datacontracts – OraKLE Jul 7 '11 at 14:04
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.