Este fragmento de código nos permite hacer una llamada a un Web Service REST mediante la librería RestSharp. var client = new RestClient("REST_SERVICE_URL"); client.Authenticator = new HttpBasicAuthenticator("USER", "PASSWORD"); var request = new RestRequest(Method.GET); request.RequestFormat = DataFormat.Json; IRestResponse response = client.Execute(request); var content = response.Content;
Etiqueta: connection
Cambiar de Usuario en SharePoint 2013
Podemos cambiar el usuario actual de nuestro Site de SharePoint en 2013 accediendo a la siguiente url: {MY_SITE}/_layouts/closeConnection.aspx?loginasanotheruser=true Por ejemplo: http://miportal.desharepoint.com/_layouts/closeConnection.aspx?loginasanotheruser=true
SharePoint 2013 – The search request was unable to connect to the Search Service
Error The search request was unable to connect to the Search Service. Solution 1. Central Administration 2. Application Management 3. Manage Web Applications 4. Select the Web Application 5. Ribbon: Service Connections 6. Search Application must be checked If you don't se any Search Application, do the following 1. Central Administration 2. Application Management 3. …
Sigue leyendo SharePoint 2013 – The search request was unable to connect to the Search Service