What we're wanting to do is use typical POCO objects over a service. Now, I know that services are really made to provide functionality ala carte, but really, the issue that we're trying to address here is achieving the same usability that you get with a class library (POCO functionality like attributes, constructors, and behaviors in a compiled library) along with the benefit of having a centralized, reusable assembly that is called "on the fly". That way, we can build the libraries, and re-deploy it to ONE location and all apps that reference it will be updated.
It would seem that WCF doesn't really support this, and I can understand why. In most cases, people tend to scoff condescendingly and ask "why would you do that?". Well, I've answered that here. So what I'm really asking is where should look into to achieve this sort of "central class library"? I don't feel like services are the answer, but I need to achieve a central class library that can be accessed like a service. This way, an update of that class library would transparently affect all applications that reference it vs. having to re-reference it in every app. Does this make sense? TIA
UPDATE: Just thought about it. Would it be stupid to just add the assembly to the application server's GAC?