Click here to Skip to main content
15,890,845 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi All,

I have a web service hosted in IIS 8.0. I have added reference to my web application( .net frame work 4.5)as "http://localhost/URCCIMS/WS/WS_SACM.asmx" as WS_MASTER (in Web Reference of Solution exploror).

I am creating an object of that service class as

C#
WS_MASTER.WS_SACM ws_temp=new WS_MASTER.WS_SACM();
ws_temp.Url = "http://localhost/URCCIMS/WS/WS_SACM.asmx";


While calling a method of that service class as:
C#
DataSet objdsUser = new DataSet("User");
objdsUser=ws_temp.fn_ExecuteQuery(arrUser);


I am getting error "Unable to Automatically step into the server. Unable to determine stopping location. Verify symbols are loaded. The function can not be found".

Any help is highly appreciated.
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900