I need to access Wcf service methods without adding Service Reference?how to do this?
Step 1:I create a WCF Service.
Step 2:Add Service Reference to my applicati
Risking the markdown lynch mob with this, but...
If the reason you're not adding the reference is because you need to choose the URL at runtime, you can still add the reference and then change it when you need to with:
MyProxy.Endpoint.Address = new EndpointAddress(MyUri);
(or do the same thing in the constructor when you instantiate).