我是 SharePoint Web 服务的新手。我正在使用 PHP 将此请求发送到我的 SharePoint 服务器,但我的查询部分被完全忽略
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://schemas.microsoft.com/sharepoint/soap/">
<SOAP-ENV:Body>
<ns1:GetListItems>
<ns1:listName>Customers</ns1:listName>
<ns1:query>
<Query>
<Where>
<Eq>
<FieldRef Name="ows_EMail" />
<Value Type="Text">aaa@ddd.com</Value>
</Eq>
</Where>
</Query>
</ns1:query>
<ns1:rowLimit>150</ns1:rowLimit>
</ns1:GetListItems>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
我尝试了很多在论坛上找到的建议,但没有任何效果。谁能帮忙。