My WCF service writes into a database. The configuration settings (here specifically the connectionstring) are brought from an internal application (probably over remoting). It works when I use local settings for connectionString, but fails when accessing connectionstring from our internal application.
The wcf service call goes through fine, but the code breaks at the point where my connection string value is fetched.
Errors: 1)On a higher level the client.operationcontract(params) throws: 'Access Denied' error.
2) i)And internally, the configuration-fetching-function throws a vague: "The Key Configuration.ActivatorString does not exist in the appSettings configuration section" ii) the dllxxx.bWebSvcMode threw an exception of type 'System.InvalidOperationException' (this is the dll which is used to access the configuration settings
Is this a problem in the way I am using wcf?