意图:我需要将一系列测试报告从自动化服务器组提交到数据库。测试脚本在 python 中,而不是打开那个蠕虫罐,我想设置一个 Powershell 脚本来将完成的测试推送到 WCF 服务。
我有一个现有的 ASP.NET 网站来管理报告并以此为基础,我想添加一个可以通过自动化访问的简单 WCF 服务。不过,我似乎遇到了困难,并且觉得我非常接近于完成这项工作。我已经在这个问题上工作了几天,在尝试寻找相关帮助时,我的眼睛开始流血阅读网站。
服务代码:
namespace TrendDB.Web
{
[ServiceContract]
public interface ITrendRestService
{
[OperationContract]
[WebGet]
string GetTestMessage();
}
[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
public class TrendRestService : ITrendRestService
{
public string GetTestMessage()
{
return "Success!";
}
}
}
Web.config(仅显示相关信息):
<system.web>
...
<authentication mode="Windows" />
<authorization>
<deny users="?" />
</authorization>
...
</system.web>
...
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior name="">
<serviceMetadata httpGetEnabled="true" httpsGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="false" />
</behavior>
</serviceBehaviors>
<endpointBehaviors>
<behavior name="restfulBehavior">
<webHttp/>
</behavior>
</endpointBehaviors>
</behaviors>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
<services>
<service name="TrendDB.Web.TrendRestService">
<endpoint address="" behaviorConfiguration="restfulBehavior"
binding="webHttpBinding" bindingConfiguration="" contract="TrendDB.Web.ITrendRestService">
</endpoint>
</service>
</services>
</system.serviceModel>
我测试了它在我的浏览器中的工作,http://localhost/trenddb/TrendRestService.svc/GetTestMessage
并且通过的消息是:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">Success!</string>
IIS 7.5 是使用 MS 的 BKM 设置的,用于 MVC 使用 Intranet 的角色授权。该站点设置了特定的应用程序池,并且使用 Windows 身份验证在域中设置了服务器。
我对 Powershell 的第一次调用是这样开始的:
$trend = New-WebServiceProxy -uri http://localhost/trenddb/TrendRestService.svc
New-WebServiceProxy : The request failed with HTTP status 401: Unauthorized.
这很好,因为至少这是对匿名访问的预设响应,所以我添加-UseDefaultCredential
到命令中并得到:
$trend = New-WebServiceProxy -uri http://localhost/trenddb/TrendRestService.svc -UseDefaultCredential
New-WebServiceProxy : Object reference not set to an instance of an object.
我尝试使用GetTestMessage
WebInvoke 只是为了看看发生了什么:
$trend = New-WebServiceProxy -uri http://localhost/trenddb/TrendRestService.svc/GetTestMessage -UseDefaultCredential
New-WebServiceProxy : The document at the url
http://localhost/trenddb/TrendRestService.svc/GetTestMessage was not recognized as a known document type.
The error message from each known type may help you fix the problem:
- Report from 'WSDL Document' is 'There is an error in XML document (1, 2).'.
- <string xmlns='http://schemas.microsoft.com/2003/10/Serialization/'> was not expected.
- Report from 'XML Schema' is 'The root element of a W3C XML Schema should be <schema> and its namespace should be 'http://www.w3.org/2001/XMLSchema'.'.
- Report from 'DISCO Document' is 'Discovery document at the URL http://localhost/trenddb/TrendRestService.svc/GetTestMessage could not be found.'.
- The document format is not recognized.
从我的浏览器调用到 WCF,我知道这<string xmlns='http://schemas.microsoft.com/2003/10/Serialization/'>
正是我所期望的......所以我现在需要弄清楚连接到这个 WCF REST 服务所需的 powershell。
编辑:
使用 svcutil.exe 实用程序创建代理,但跳过配置文件。该行是否serviceMetadata httpGetEnabled="true"
意味着我正在生成可用于 WCF 客户端的元数据?这会影响PS吗?