我已经在IIS中设置了一个WCF服务。托管在其上的服务器没有DNS名称(没有域名),只有外部静态WAN IP地址。
当我尝试使用MEX连接到iOS或Windows客户端中的服务以生成代理时,它使用无法解析的域名并失败。
WSDL文档包含无法解析的链接。 - 下载' https://blah.com.au/NimThaiService.svc?xsd=xsd3'时出错。 - 无法解析远程名称:' blah.com.au'
如何更改我的Web配置文件或配置IIS,以便使用静态IP而不是使用域名。
我需要MEX为https://123.123.123.123/NimThaiService.svc
我试图按照其他文章中的说明进行操作。例如,建议添加<useRequestHeadersForMetadataAddress />
。但是当我这样做时,我得到一个错误,说无法找到资源。
我的Web配置文件如下:
<?xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.5" />
<httpRuntime targetFramework="4.5" />
</system.web>
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior>
<serviceMetadata httpsGetEnabled="true"/>
<serviceCredentials>
<userNameAuthentication userNamePasswordValidationMode="Custom" customUserNamePasswordValidatorType="NimThaiService.Authenticator, NimThaiService" />
</serviceCredentials>
</behavior>
</serviceBehaviors>
</behaviors>
<services>
<service name="NimThaiService.NimThaiService">
<endpoint address="https://mystaticwanipaddress:443/NimThaiService.svc" binding="basicHttpBinding" contract="NimThaiService.INimThaiService" bindingConfiguration="secureHttpBinding">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
<endpoint address="mex" binding="mexHttpsBinding" contract="IMetadataExchange">
<identity>
<dns value="mystaticwanipaddress" />
</identity>
</endpoint>
</service>
</services>
<bindings>
<basicHttpBinding>
<binding name="secureHttpBinding">
<security mode="Transport">
<transport clientCredentialType="Basic" />
<message clientCredentialType="UserName"/>
</security>
</binding>
</basicHttpBinding>
</bindings>
</system.serviceModel>
</configuration>
答案 0 :(得分:0)
经过一些研究后,我设法通过向serviceMetadata节点添加属性来解决此问题。
我需要添加&#34; httpsGetUrl&#34;属性如下:
<serviceMetadata httpsGetEnabled="true" httpsGetUrl="http://mystaticwanipaddress/NimThaiService.svc/basic" />