最近我开始创建一个 Xamarin-iOS 应用程序,它使用 ProjectServer PSI WebService。当我将 PSI 添加为 WebReference 并尝试访问 PSI 方法时,我收到 401 未经授权的错误。有趣的是,它在本地网络中运行良好,但在企业网络中出现错误。所以我打算把 WebReference 改成 SOAP - HttpwebRequest 方法。
这就是我尝试过的
我正在尝试使用此 url BaseAddress + pwa/_vti_bin/PSI/Resource.asmx?op=GetCurrentUserUid获取资源ID
<?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>
<GetCurrentUserUid xmlns="http://schemas.microsoft.com/office/project/server/webservices/Resource/" />
</soap:Body>
我将上面的代码作为正文传递。
但是当我使用HttpWebRequest执行此操作时,我收到错误HttpStatusCode InternalServerError System.Net.HttpStatusCode
同样在响应中,我发现了以下 xml 响应。
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<s:Fault>
xmlns:a="http://Microsoft.Office.Project.Server">a:ProjectServerFaultCode
</faultcode>
<faultstring>
Unhandled Communication Fault occurred
</faultstring>
<detail>
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">
Object reference not set to an instance of an object.</string></detail>
</s:Fault>
</s:Body>
</s:Envelope>
我不知道怎么了。所以我的问题是,
是否可以使用 HttpWebRequest 调用 PSI 方法如果不是什么是替代方法。
请帮忙。提前致谢。