In current project i work, asp.net soap web-services are used extensively to access data from the Sql Server Data base. There are several classes to that proxy to these web-services to retrieve typed Data
for example assuming a clients of project are stored on database and signature of the method to retrieve the clients information is as follows.
List<Client> ClientDAL.GetClientsForProject(string ProjectId);
A web reference(of the Web-service) is added to the Project that is using the above code and internally the above methods does the below
..
string ClientWs.ProcessXmlRequest(string requestXml)
...
Convert response xml to Client objects
Problem
As you see above i have to Hard Code ClientWs( name given to the webreference) in my class which i think is not the right thing to do here, If ever the person(Client) gets to change the reference name code will 100% for sure hit with compiler error.
Question
Solution i am expecting is rather object oriented, Is there any built In class in the .NET Framework 2.0 that i can leverage so that process of invoking webservice is done like below
theMysteriousObject.Invoke('WebserviceUrl')
OR
theMysteriousObject.Get("ChangedReferenceName")