使用 Windows 服务中托管的 WCF 服务的 Winform 出现错误 #405 (method not allowed e)

Posted

技术标签:

【中文标题】使用 Windows 服务中托管的 WCF 服务的 Winform 出现错误 #405 (method not allowed e)【英文标题】:Winform consuming WCF service hosted in a Windows service got error #405 (method not allowed e) 【发布时间】:2019-02-05 21:25:58 【问题描述】:

WCF 服务托管在 Windows 服务中。我从 Web 浏览器获得了成功的响应,但我不能从 Winforms 应用程序中调用它。我总是收到错误 #405。有什么想法吗?

我在我的 WCF 服务中启用了“CORS”,我从“Windows 功能打开和关闭”中打开了所有必需的组件。

这是我客户的app.config 文件

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <system.serviceModel>
        <diagnostics>
            <messageLogging logEntireMessage="true" logMessagesAtServiceLevel="true"
                            logMessagesAtTransportLevel="true" />
            <endToEndTracing propagateActivity="true" activityTracing="true"
                             messageFlowTracing="true" />
        </diagnostics>
        <behaviors>
            <endpointBehaviors>
                <behavior name="AjaxBehavior">
                    <webHttp defaultOutgoingResponseFormat="Json"/>
                </behavior>
            </endpointBehaviors>
        </behaviors>
        <client>
            <endpoint 
                address="http://localhost:8080/ "
                behaviorConfiguration="AjaxBehavior"
                binding="webHttpBinding"
                contract="IScaleService" />
        </client>
    </system.serviceModel>
</configuration>

这是我的 WCF 服务配置文件:

<configuration>
    <appSettings>
        <add key="port" value="COM3"/>
    </appSettings>
    <system.serviceModel>
        <behaviors>
            <endpointBehaviors>
                <behavior name="AjaxBehavior">
                    <webHttp defaultOutgoingResponseFormat="Json"/>
                </behavior>
            </endpointBehaviors>
            <serviceBehaviors>
                <behavior name="WindowsScaleTypeBehaviors" >
                    <serviceMetadata httpGetEnabled="true" httpGetUrl="http://localhost:8080/mex"/>
                </behavior>
            </serviceBehaviors>
        </behaviors>
        <bindings>
            <webHttpBinding>
                <binding name="webHttpBindingWithJsonP" crossDomainScriptAccessEnabled="true" />
            </webHttpBinding>
        </bindings>
        <services>
            <service name="ScaleService.Scale"  
                     behaviorConfiguration="WindowsScaleTypeBehaviors">
                <endpoint 
                    address="" 
                    behaviorConfiguration="AjaxBehavior" 
                    binding="webHttpBinding"
                    bindingConfiguration="webHttpBindingWithJsonP"
                    contract="ScaleService.IScaleService" />
                <endpoint 
                    address="mex"
                    binding="mexHttpBinding"
                    contract="IMetadataExchange"/>
                <host>
                    <baseAddresses>
                        <add baseAddress="http://localhost:8080/" />
                    </baseAddresses>
                </host>
            </service>
        </services>
    </system.serviceModel>
</configuration>

【问题讨论】:

你能发布一个 wcf 调用的例子吗?您是否在项目中添加了该服务作为参考? 是的,我做到了。我创建了服务客户端的实例,然后调用了该方法。我得到了 405。我很快就会发布一个通话示例。 这可能只是您在客户配置中的错字吗? endpointaddress 末尾有一个 空格 - 尝试删除那个 .... 不,我删除了空间,它仍然返回 405 【参考方案1】:

最后,我发现我的应用出了什么问题。 自动生成的代理类没有在操作中添加 webget 属性。

 [System.ServiceModel.Web.WebGet]
 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IScaleService/Get_Available_Ports", ReplyAction="http://tempuri.org/IScaleService/Get_Available_PortsResponse")]
 ScaleService.Lib.Ports[] Get_Available_Ports();

【讨论】:

以上是关于使用 Windows 服务中托管的 WCF 服务的 Winform 出现错误 #405 (method not allowed e)的主要内容,如果未能解决你的问题,请参考以下文章

Windows 服务可以使用由另一个 Windows 服务托管的 WCF 服务吗?

如何对 Windows 服务中托管的 wcf 服务进行负载/压力测试?

使用单个 Windows 服务托管 4 个不同的 WCF 项目。如何?

选择使用 IIS 进行 WCF 服务托管或使用 Windows 服务进行自托管

我可以在 Windows 服务中托管(自托管)WCF 服务并通过 http 公开它吗?

是否可以通过 httpwebrequest 使用 WCF 服务(托管为 Windows 服务托管)?