I am currently developing a WCF client to interaction with a set of WCF service references. I am developing in c#.
I don't want to following the approach of having to generate a service reference using svc util or manually adding a service reference to my class library.
Have I an other alternatives open to me? I am considering using the ServiceClient class within the ServiceModel library.
I am little confused though, for example the request and response objects related to an endpoint, where are these created or how are they created? In a previous project I used T4 mappings and DTO's, but I feel these are over kill. I did like though that I could share the same object between different service endpoints. My goal here is to create a custom client object communicating through a custom written proxy. I would like some direction on this.