如何从托管在另一台服务器上的 Web 应用程序调用客户端计算机托管的 Wcf 服务?
Posted
技术标签:
【中文标题】如何从托管在另一台服务器上的 Web 应用程序调用客户端计算机托管的 Wcf 服务?【英文标题】:How to Call Client Machine Hosted WcfService From WebApplication Hosted on Another Server? 【发布时间】:2021-09-30 12:16:27 【问题描述】:我有一个托管在用户(客户端)计算机上的控制台应用程序上的 WcfService,它提供对文档扫描仪设备 (Avision AD240) 的访问以扫描文档,并希望从另一个网站(例如托管在 www.someotherdomain.com)调用此服务。 总结:我的网站用户使用 jetScan 文档扫描仪,并希望将扫描的图像上传到网站的服务器上。我已经在本地 IIS 中完成了这项工作,但我不知道如何在远程服务器托管的 Web 应用程序中处理本地托管服务。
我的 WcfService Web.Config 文件如下所示:
<?xml version="1.0"?>
<configuration>
<appSettings>
<add key="aspnet:UseTaskFriendlySynchronizationContext" value="true" />
</appSettings>
<system.web>
<compilation debug="true" targetFramework="4.7.2" />
<httpRuntime targetFramework="4.7.2"/>
</system.web>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_IScannerService" maxReceivedMessageSize="2147483647">
</binding>
</basicHttpBinding>
</bindings>
<behaviors>
<serviceBehaviors>
<behavior>
<!-- To avoid disclosing metadata information, set the values below to false before deployment -->
<serviceMetadata httpGetEnabled="true" httpsGetEnabled="true"/>
<!-- To receive exception details in faults for debugging purposes, set the value below to true. Set to false before deployment to avoid disclosing exception information -->
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
</behaviors>
<services>
<service name="WcfServiceScanner.ScannerService">
<endpoint address="" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IScannerService" contract="WcfServiceScanner.IScannerService">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
<host>
<baseAddresses>
<add baseAddress="http://localhost:8733/Design_Time_Addresses/WcfServiceScanner/WcfServiceScanner/" />
</baseAddresses>
</host>
</service>
</services>
<protocolMapping>
</protocolMapping>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
</system.serviceModel>
<system.webServer>
<!--<modules runAllManagedModulesForAllRequests="true"/>-->
<!--
To browse web app root directory during debugging, set the value below to true.
Set to false before deployment to avoid disclosing web app folder information.
-->
<directoryBrowse enabled="true"/>
<httpProtocol>
<customHeaders>
<add name="Access-Control-Allow-Origin" value="*"/>
<add name="Access-Control-Allow-Headers" value="Content-Type, Accept" />
<add name="Access-Control-Allow-Methods" value="POST,GET,OPTIONS" />
<add name="Access-Control-Max-Age" value="1728000" />
</customHeaders>
</httpProtocol>
</system.webServer>
</configuration>
我的远程服务器 Web 应用程序 web.config 文件的一部分如下所示:
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_IScannerService" maxReceivedMessageSize="2147483647"/>
</basicHttpBinding>
<netTcpBinding>
<binding name="NetTcpBinding_IScannerService">
<security>
<transport sslProtocols="None" />
</security>
</binding>
</netTcpBinding>
</bindings>
<client>
<endpoint address="http://localhost:8080/WcfService" binding="basicHttpBinding"
bindingConfiguration="BasicHttpBinding_IScannerService" contract="WcfScannerService.IScannerService"
name="BasicHttpBinding_IScannerService" />
<endpoint address="net.tcp://localhost:8090/WcfService" binding="netTcpBinding"
bindingConfiguration="NetTcpBinding_IScannerService" contract="WcfScannerService.IScannerService"
name="NetTcpBinding_IScannerService">
<identity>
<userPrincipalName value="DESKTOP-KILE609\Hosein" />
</identity>
</endpoint>
</client>
</system.serviceModel>
【问题讨论】:
【参考方案1】:代码可以在本地访问。 以下步骤可能会对您有所帮助:
-
确保网络在另一台机器上正常工作。
检查IP地址和端口是否被防火墙占用或屏蔽。
在 url 末尾添加 ?wsdl,如果可行并显示一个 xml 文件,则该服务是可访问的。
谢谢。
【讨论】:
以上是关于如何从托管在另一台服务器上的 Web 应用程序调用客户端计算机托管的 Wcf 服务?的主要内容,如果未能解决你的问题,请参考以下文章
开发机器上的网络核心 Web api 应用程序上的 Kestrel 错误,但在另一台机器上却没有