Hi All,
I have a typical setup. The solution contains a regular .NET class library for business objects, A WCF project, a silverlight project and supporting web-app project, and some silverlight class libraries. The classes in my business class library are all marked with the "[serializable]" attribute. The WCF service has a method that would return a List of one of the objects in my business class library. When I add reference of this service in my silverlight class library project, the proxy is generated without any errors, but this proxy does not contain any definition of the service or the service interface itself. It does contain the definition of the complete object model contained inside the business object I am returning from the service, but without the actual reference to the service client I am unable to make a call to the service. Is there an issue with the design or implementation of this setup?