I cannot add a service on VS2008 to Sharepoint Services

I cannot add a service on VS2008 to Sharepoint services when I tried

http://tomasekweb.com/Test1/_vti_bin/Lists.asmx and press GO

The user and password were required, I typed in, but I still need it. I don't know what I need to install on the sharepoint site. I only have one user on the Sharepoint server.

0


source to share


1 answer


I am assuming you put the server name in this url?

You have to put the full path to the web service, including the server name, and then convert it to a dynamic web service so that you can set the URL correctly at runtime (via configuration or inside code).



If the path is correct (and complete), then the connection should work fine.

If it still doesn't work, consider if you are connecting to the sharepoint instance through a proxy. Windows Authentication does not work on proxies due to the fact that the authentication token can only do one network hop ... this is called a double hop error. This is not a bug, it is by design and is intended to prevent humans from medium attacks ... so don't use proxies.

0


source







All Articles