html 通过JavaScript测试SharePoint soap服务

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 通过JavaScript测试SharePoint soap服务相关的知识,希望对你有一定的参考价值。

	<script type="text/javascript" src="https://xxxxxx/jquery-1.12.1.min.js"></script>
	<script type="text/javascript">
	var strMessage = '<?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>' +
    '<CheckInFile xmlns="http://schemas.microsoft.com/sharepoint/soap/">' +
      '<pageUrl>https://xxxxx/new 2.txt</pageUrl>' +
      '<comment>inn nnn</comment>' +
      '<CheckinType>2</CheckinType>' +
    '</CheckInFile>' +
  '</soap:Body>' +
'</soap:Envelope>'

$.ajax({
    url: 'https://xxxxx/_vti_bin/Lists.asmx',
    type: "POST",
    dataType: "xml", 
    data: strMessage, 
    processData: false,
    contentType: "text/xml; charset=\"utf-8\"",
    success: OnSuccess, 
    error: OnError
});

function OnError(jqXHR, textStatus, errorThrown) {
    alert(errorThrown);
    
}
 
function OnSuccess(jqXHR, textStatus) {
	//alert('Success!!');
	alert(textStatus);
}

以上是关于html 通过JavaScript测试SharePoint soap服务的主要内容,如果未能解决你的问题,请参考以下文章

*通过共享* JavaScript 对象测试深度相等性

招聘时测试 HTML/CSS/Javascript 技能[关闭]

无头 JavaScript 测试 HTML5 音频/视频

如何通过 JavaScript 回调在 C# 中运行 QUnit 测试并返回测试结果?

html Mqtt javascript客户端测试

html 简单的javascript测试页面