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")

link|improve this question

79% accept rate
feedback

1 Answer

Use a service gateway in between your webservice and the client application. This service gateway should have set of mappers, which should convert webservice related types into Business Object related types. In that way you can maintain complete abstraction.

link|improve this answer
now i am completely lost, could you take time to cite some information about this and expand on the answer – Deeptechtons Jan 6 at 11:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.