Hi guys, I have an existing class library with all the classes to communicate with my server. I've created a WCF service that will be hosted on my existing server as part of different application domain. Since I already have the classes I thought it can be exposed on my WCF service to lessen my development time.
I successfully hosted my WCF service and is running on my dev pc. The problem is on the client side that adds my web service. They can only use the base classes of my library.
How can I make all of my classes aside from the base class of my library to be available on my web service? e.g. helper classes, child classes that inherited from my base class and other classes that is used on my generic collection.
All of my classes are dressed with Serializable and DataContract attributes.
By the way my class library was created 3 years ago I just patched some new attributes to make it available on my web service.