Hi,
I created a c# web setup project to install/deploy my web service. When I run the install project, then create a console application and try
to add web reference from local machine (to check my installation), I notice that there are 2 links to the web service:
1)
http://localhost/TestWebSetup/TestWebService.asmx //valid
2)
http://localhost/TestWebSetup/TestWebSetup/TestWebService.asmx //invalid, what is going on ??
It should only be displaying the first link. Does anyone know why it's displaying two and how to fix it? I also noticed that after installing the web service, if I create a new web service that new web service will now also have to links...this didn't happen before running my install project.
1)
http://localhost/NewWeb/NewWebService.asmx //valid
2)
http://localhost/TestWebSetup/NewWeb/NewWebService.asmx //invalid, what is going on ??
Any help will be greatly appreciated!
Thanks in advance.