博客
关于我
WCF 部署时,soap:address location 显示的是电脑名,而不是ip地址
阅读量:758 次
发布时间:2019-03-23

本文共 678 字,大约阅读时间需要 2 分钟。

在部署WCF服务时,可能会遇到一个常见问题:wsdl:import location显示的是电脑名而非IP地址。当服务是通过内部调用时可以正常使用,但外部用户则无法访问,post请求也会发送到错误的地址。这种情况的根源通常与web.config文件中的设置相关。

我曾尝试在web.config中添加以下配置:

然而,发现multipleSiteBindingsEnabled="true"设置后,soap:address locationwsdl:import location仍显示的是电脑名而非IP地址或域名。经过进一步分析,发现当multipleSiteBindingsEnabled设置为true时,需要确保<serviceHostingEnvironment>标签正确配置,并且所有相关的绑定配置也必须正确添加。

正确的做法是确保multipleSiteBindingsEnabled="true",这样WebService的WSDL文件和wsdl:import location都会显示一致的地址,即IP地址或域名,而不是随机的电脑名。若多张站反向代理配置存在问题,Wsdl链接也会因此出现错误,导致外部客户端无法正常访问服务。

小结:在部署WCF服务时,尤其是涉及多站绑定(multipleSiteBindingsEnabled)的情况下,务必确保配置完整且正确。只有当multipleSiteBindingsEnabled="true"时,WSDL文件和服务地址才会一致显示成IP地址或域名,否则会导致外部客户端无法正常使用服务。

转载地址:http://xpzzk.baihongyu.com/

你可能感兴趣的文章
nginx+tomcat+memcached
查看>>
nginx+tomcat单个域名及多个域名配置
查看>>
Nginx+Tomcat实现动静分离
查看>>
nginx+Tomcat性能监控
查看>>
nginx+uwsgi+django
查看>>
nginx+vsftp搭建图片服务器
查看>>
Nginx-http-flv-module流媒体服务器搭建+模拟推流+flv.js在前端html和Vue中播放HTTP-FLV视频流
查看>>
nginx-vts + prometheus 监控nginx
查看>>
Nginx/Apache反向代理
查看>>
Nginx: 413 – Request Entity Too Large Error and Solution
查看>>
nginx: [emerg] getpwnam(“www”) failed 错误处理方法
查看>>
nginx: [emerg] the “ssl“ parameter requires ngx_http_ssl_module in /usr/local/nginx/conf/nginx.conf:
查看>>
nginx: [error] open() “/usr/local/nginx/logs/nginx.pid“ failed (2: No such file or directory)
查看>>
nginx:Error ./configure: error: the HTTP rewrite module requires the PCRE library
查看>>
Nginx:objs/Makefile:432: recipe for target ‘objs/src/core/ngx_murmurhash.o‘解决方法
查看>>
nginxWebUI runCmd RCE漏洞复现
查看>>
nginx_rtmp
查看>>
Nginx、HAProxy、LVS
查看>>
nginx一些重要配置说明
查看>>
Nginx下配置codeigniter框架方法
查看>>