Lists.asmx GetList failed with error 12044
-
Hi, I'm sending this to my sharepoint server and it keeps on failing with error 12044 (ERROR_WINHTTP_CLIENT_AUTH_CERT_NEEDED).
POST /_vti_bin/Lists.asmx HTTP/1.1
Content-Type: text/xml; charset=utf-8
Authorization: Basic <Username:Password base64encoded>
User-Agent: MySimpleApplication
Host: <MySharePointServer>
Content-Length: 449
Cache-Control: no-cache
SOAPAction: "http://schemas.microsoft.com/sharepoint/soap/GetList"<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
soap:Body
<GetList xmlns="http://schemas.microsoft.com/sharepoint/soap/">
<listName>ListName</listName>
</GetList>
</soap:Body>
</soap:Envelope> -
Hi, I'm sending this to my sharepoint server and it keeps on failing with error 12044 (ERROR_WINHTTP_CLIENT_AUTH_CERT_NEEDED).
POST /_vti_bin/Lists.asmx HTTP/1.1
Content-Type: text/xml; charset=utf-8
Authorization: Basic <Username:Password base64encoded>
User-Agent: MySimpleApplication
Host: <MySharePointServer>
Content-Length: 449
Cache-Control: no-cache
SOAPAction: "http://schemas.microsoft.com/sharepoint/soap/GetList"<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
soap:Body
<GetList xmlns="http://schemas.microsoft.com/sharepoint/soap/">
<listName>ListName</listName>
</GetList>
</soap:Body>
</soap:Envelope>Might it have something to do with you trying to use basic authentication while SharePoint uses Windows authentication?
I know the language. I've read a book. - _Madmatt
-
Might it have something to do with you trying to use basic authentication while SharePoint uses Windows authentication?
I know the language. I've read a book. - _Madmatt
-
How do I change this to include Windows authentication instead? Do I need to send different windows authentication for every request?