Tagged Questions
2
votes
1answer
52 views
WebClient and impersonate as other user
I created a web service hosted in SharePoint 2010 and I want to unit test its behaviour/results.
Now when I try to run a test with a different user, I always get the results of the previous user and ...
1
vote
0answers
73 views
Infopath Form with Password validation
we have a request from a client to add some type of password validation to one of their info path forms. This means that before the user could submit the form they would somehow be prompted for their ...
0
votes
0answers
64 views
Log out from SharePoint Server with rtFa cookies
I've found out from this article that rtFa cookies intended to make user log out.
How to use rtFa cookies to log out: attach rtFa to HTTP-request and send it to a web service?
Where should I send the ...
1
vote
2answers
2k views
How can I pass credentials to SharePoint 2010 people service?
I need to do a simple request against the People service in SharePoint 2010. Please tell me how I can do that. The following piece doesn't work.
public void Test()
{
var client = new ...
1
vote
3answers
3k views
Authenication error when accessing SharePoint Webservice using java
I am trying to access SharePoint UserGroup service using a Java client. I have generated the stubs from the WSDL using axis2-1.6.2 and using the following code to access the user group but getting ...
0
votes
1answer
249 views
Claim Based Authentication - Object Model and Impact on existing Web Service
I have a farm in which is installed Sharepoint 2010 Foundation. On my principal app I have installed a web application that accepts windows authentication.
On that application I installed my Web ...
3
votes
1answer
346 views
Authentication web service and special characters in password
My client application is authenticating with a SharePoint website using the Authentication web service in Windows Sharepoint Services 3.0. The client is not written in C# and I craft the SOAP request ...
8
votes
2answers
1k views
Java to Sharepoint interface, with claims based authentication
I have a sharepoint server with a claims-based authentication (ADFS server).
I have a Java app that needs to push data to a sharepoint list, preferably over the REST API, and with the additional ...
0
votes
2answers
1k views
How to login into SharePoint without forms authentication
I have SharePoint Server 2010 with windows authentication(ntlm).
We are working in java and want to authenticate a user, which is in active directory.
We tried using authentication.asmx but it ...
1
vote
1answer
368 views
SharePoint caching and how to ignore it
I am new to SharePoint so I may be asking a very simple question.
We have a webservice in java which accepts a username and password and using these crendentials it hits SharePoint (using ntlm ...
5
votes
2answers
4k views
How to fix credential issue?
I tried both default credential and user/pass but keep getting 401 unauthorized error. What's the fix?
Here is the error I am getting ....
New-WebServiceProxy : The request failed with HTTP status ...
3
votes
1answer
2k views
Anonymous access = huge web services security hole?
My company uses SharePoint for their public website by allowing anonymous access. Some of our lists and document libraries have permissions to only allow certain users to be able to access them. I'm ...
6
votes
1answer
2k views
How do I avoid redirection for web service authentication in SharePoint 2010 when both claims and classic auth is allowed?
I have a SharePoint 2010 web application that allows both claims authentication and classic authentication. The Default claims provider for the web application has "Enable Windows Authentication" and ...
0
votes
1answer
2k views
BasicHttpBinding WCF services don't get NTLM challenge when hosted on a Claims enabled server
The service is hosted in /_vti_bin, and uses SharePoint's own BasicHttpBinding service host factory (MultipleBaseAddressBasicHttpBindingServiceHostFactory). According to Microsoft's guidance, three ...
2
votes
2answers
5k views
Windows authentication with SharePoint Web Services via SOAP
I am building an application on a different server, than that of the SharePoint 2010 foundation. But I want to be able to update some information / data in SharePoint Lists using Web Services.
I am ...
2
votes
1answer
510 views
Web service authentication with multiple authentication types
I am trying to pull data from the list.asmx web service from a console application. I am using clams based authentication, and whenever only integrated Windows Authentiation is checked everything ...
6
votes
1answer
4k views
How to use Sharepoint web services? (esp. authentication)
I am trying to access list information on MOSS 2007 using web services.
SppLists.ListsSoapClient proxy = new SurveyMerge.SppLists.ListsSoapClient();
proxy.ClientCredentials.Windows.AllowNtlm = true;
...
2
votes
3answers
1k views
How to add the /_vti_bin/Admin.asmx webservice as a service reference in Visual Studio 2008
I'm trying to use the Admin webservice of SharePoint 2007 within a console application. So I add a new service reference to my project pointing to http://<central ...
