Using web service in class library which is referenced in the website project of same solution
How to access proxy class of a 开发者_JAVA百科web service which has been referenced in the website project of a solution within a class library project in the same solution?
I mean no web-service reference/setting is added to the class library and instead it needs to be picked from the web project.
Very bad approach.
Two possible options:
- create the proxy class in your class library project; reference that class library in your project
- create proxy in 3rd class library project that will be references all across your solution.
精彩评论