惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

I
Intezer
V
Vulnerabilities – Threatpost
Google Online Security Blog
Google Online Security Blog
T
The Exploit Database - CXSecurity.com
C
CXSECURITY Database RSS Feed - CXSecurity.com
AWS News Blog
AWS News Blog
G
GRAHAM CLULEY
P
Privacy & Cybersecurity Law Blog
www.infosecurity-magazine.com
www.infosecurity-magazine.com
C
Cybersecurity and Infrastructure Security Agency CISA
N
News | PayPal Newsroom
T
Tenable Blog
Spread Privacy
Spread Privacy
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
S
Secure Thoughts
P
Privacy International News Feed
IT之家
IT之家
Project Zero
Project Zero
T
The Blog of Author Tim Ferriss
Engineering at Meta
Engineering at Meta
大猫的无限游戏
大猫的无限游戏
博客园_首页
GbyAI
GbyAI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
量子位
雷峰网
雷峰网
Apple Machine Learning Research
Apple Machine Learning Research
Hacker News: Ask HN
Hacker News: Ask HN
Google DeepMind News
Google DeepMind News
MongoDB | Blog
MongoDB | Blog
N
Netflix TechBlog - Medium
Martin Fowler
Martin Fowler
NISL@THU
NISL@THU
I
InfoQ
D
DataBreaches.Net
有赞技术团队
有赞技术团队
K
Kaspersky official blog
Security Latest
Security Latest
The Register - Security
The Register - Security
Hugging Face - Blog
Hugging Face - Blog
S
Security @ Cisco Blogs
P
Proofpoint News Feed
M
MIT News - Artificial intelligence
H
Hackread – Cybersecurity News, Data Breaches, AI and More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
AI
AI
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
P
Proofpoint News Feed
Security Archives - TechRepublic
Security Archives - TechRepublic
N
News and Events Feed by Topic

博客园 - 贤言叙语

Thinkpad 拆光驱更换光驱硬盘支架、拆光驱面板 T400 T440 无法打开登录所请求的数据库 "xxx"登录失败用户 'NT AUTHORITY\NETWORK SERVICE' - 贤言叙语 spread 程序调试时,未激活的提示解决 WCF服务客户端首页调用慢的问题处理 Inno Setup制作安装包的几个问题 Sqlite小数作差,会减不尽? 博文阅读密码验证 - 博客园 JS脚本修改控件宽度 WCF部署于IIS使用的几个问题总结 office2016与visio2016不能“并存”的问题分析 sqlite里执行查询提示未启用约束、主键冲突之——数据竟能超字段长度存储 VS2013添加解决方案内项目的引用,编译时提示找不到文件 plsql登录找不到可连接数据库 .Net 请求Web接口Post和Get方法 泛型、Linq 查询使用 格林时间10位串转本地时间 ORA-12154: TNS:could not resolve the connect identifier specified oracle远程连接太慢 DB设计原则(二)如何拆、分表
WCF部署到IIS上调用报错:由于扩展配置问题而无法提供您请求的页面
贤言叙语 · 2017-11-16 · via 博客园 - 贤言叙语

将WCF部署到全新win7 x64 IIS7.5上访问报错:由于扩展配置问题而无法提供您请求的页面。如果该页面是脚本,请添加处理程序。如果应下载文件,请添加 MIME 映射。

原因:IIS不识别.svc

检查:控制面板--IIS管理器--功能视图--处理程序映射,果然没有.svc处理程序

解决方法:用管理员打开cmd 

之后输入: cd C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319  之后aspnet_regii s.exe -i

然后 cd C:\WINDOWS\Microsoft.NET\Framework64\v4.0.30319 之后 ServiceModelReg.exe -r

以下是aspnet_regiis.exe参数的说明信息:
-i - 安装ASP.NET的此版本,并更新IIS 元数据库根处的脚本映射和根以下的所有脚本映射。现有的低版本脚本映射升级到此版本。

自:http://blog.csdn.net/jumtre/article/details/38398355