I have WinForms client application and it uses BO Library version 1 and Wcf DataPortal.
Now I need to deploy a new version of the application with BO Library version 2.
Both BO Libraries are installed in the GAC on the server.
Is it possible to make the same WcfAppServer to respond to the both versions of the application?
Or may be the best way is to add new web application WcfAppServer2 for the application version 2?
You can only load one version into one AppDomain so the easiest way is to create a new version of the service.
Using remoting I could RegisterWellKnownServiceType from the different versions of the same assembly loading them from GAC. Is not it the same in WCF?
Copyright (c) Marimer LLC