views:

82

answers:

1

I have a class library(DLL) which has a web reference, its dynamic.

I have copied the setting into the applicationSettings of the web.config but still it keeps referring to the old URI I had set during develoment.

any idea how i can make it take the URI of the web-service from the web.config?

A: 

There is no way that it's taking the value from app.config if you're running in a web application. You are probably seeing the default value, not the configured value in app.config.

To see this, change the value in app.config and see if the service picks it up.

John Saunders