Hi,
I have a basic web service running that accesses a database and returns XmlDocuments. The database access is defined in a web.config key.
I have multiple types of clients accessing these web services, and if lets say, a client of category 1 accesses the Web service, the WS needs to connect to Database1. ClientCategory2 -> Database 2 and so on.
I can't edit the db access libraries themselves. All that is being done through a DLL and I don't have access to the code behind it.
So I guess what I want to know is, do I need to run multiple instances of basically the same service, but with different Web.config keys for each database that I have?
Thanks,
Teja.