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

推荐订阅源

Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
W
WeLiveSecurity
O
OpenAI News
N
News and Events Feed by Topic
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
Webroot Blog
Webroot Blog
Google Online Security Blog
Google Online Security Blog
云风的 BLOG
云风的 BLOG
N
News | PayPal Newsroom
H
Hacker News: Front Page
博客园_首页
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
The Last Watchdog
The Last Watchdog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
H
Heimdal Security Blog
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
S
Schneier on Security
宝玉的分享
宝玉的分享
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Recent Commits to openclaw:main
Recent Commits to openclaw:main
Y
Y Combinator Blog
Cyberwarzone
Cyberwarzone
Microsoft Security Blog
Microsoft Security Blog
C
CXSECURITY Database RSS Feed - CXSecurity.com
GbyAI
GbyAI
Cloudbric
Cloudbric
TaoSecurity Blog
TaoSecurity Blog
人人都是产品经理
人人都是产品经理
P
Palo Alto Networks Blog
M
MIT News - Artificial intelligence
G
GRAHAM CLULEY
C
Check Point Blog
Apple Machine Learning Research
Apple Machine Learning Research
Last Week in AI
Last Week in AI
T
Troy Hunt's Blog
L
Lohrmann on Cybersecurity
www.infosecurity-magazine.com
www.infosecurity-magazine.com
P
Proofpoint News Feed
Blog — PlanetScale
Blog — PlanetScale
量子位
博客园 - 聂微东
S
Securelist
博客园 - 三生石上(FineUI控件)
F
Full Disclosure
G
Google Developers Blog
L
LINUX DO - 热门话题
P
Proofpoint News Feed
AI
AI
PCI Perspectives
PCI Perspectives

博客园 - 子风

Android相关转载帖子 c++ 函数的工作原理 C和C++的存储模式 VS2005配置开发ARM c++ 虚析构函数的思考 arm-linux-g++ 下交叉编译libxml2 (转)Eclipse代码提示功能设置(Java & C/C++) linux下面eclipse的c++配置 VS2008 配置boost 用VS.NET2008打包程序遇到不可恢复的生成错误的解决方案 推荐一个原型的设计软件 Mockups For Desktop Grid++Report——推模式下填充子报表 c# 对象的创建过程 Failure sending mail - 子风 css总结 asp.net缓存-数据依赖缓存 - 子风 - 博客园 .net 测试工具 .net 发送Email 利用7z来分卷压缩文件
XP下IIS错误:Server Application Error
子风 · 2010-07-02 · via 博客园 - 子风

xp系统
1、Server Application Error 问题
a 控制面板-管理工具-服务,寻找DTC服务(全名:Distributed Transaction Coordinator)
b 手动启动DTC
c msdtc 是否启动(net start msdtc)
d 注意一点:信息服务-默认网站-属性-选择应用程序保护:选择 低(IIS进程))

2、Server Application Error

在XP上安装IIS,在本地可以正常浏览HTML文件(HTML就算没装IIS也可以正常浏览),却无法解析ASP文件,打开ASP文件时就出现“HTTP 500”的错误信息。把“显示友好HTTP错误信息”去掉,再打开ASP文件时出现:
  Server Application Error
  The server has encountered an error while loading an application during the processing of your request. Please refer to the event log for more detail information. Please contact the server administrator for assistance
  出现这样的情况是主要是由于IWAM账号的密码错误造成了HTTP 500内部错误。
  排除了一些基本的可能性外,在网上搜寻了一下解决办法。最后终于解决了这个问题,在此分享一下。
  先启动MSDTC服务,什么是MSDTC服务?显示名称:Distributed Transaction Coordinator;描述:协调跨多个数据库、消息队列、文件系统等资源管理器的事务。如果停止此服务,则不会发生这些事务。如果禁用此服务,显式依赖此服务的其他服务将无法启动。
CMD下net start msdtc
  结果显示“distributed transaction coordinator 服务不能启动”。
解决方法:
  开始-运行 cmd
  在命令行下: msdtc -resetlog
  再net start msdtc,显示服务启动成功了。
  然后右键我的电脑--管理--本地用户和组,给IUSR_机器名和IWAM_机器名两个用户设置密码,要一样。
  接着开始--运行--打cmd,
  然后cd C:\Inetpub\AdminScripts,
  然后cscript.exe adsutil.vbs set w3svc/wamuserpass 你设置的密码,
  然后cscript.exe adsutil.vbs set w3svc/anonymoususerpass 你设置的密码。
  看一下,行了没有?如果还不行,那么
  cscript.exe synciwam.vbs -v,
  然后iisreset。
  到一步还是不行,最后在CMD下执行以下命令:
  cd %windir%\system32\inetsrv
  rundll32 wamreg.dll, CreateIISPackage
  regsvr32 asptxn.dll
  关闭所有的IE窗口后重新打开再执行,OK了!!

转至:http://blog.sina.com.cn/s/blog_5f918ed20100h0pq.html

学习,积累中......