<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:wfw="http://wellformedweb.org/CommentAPI/">
  <channel>
    <title><![CDATA[振华博客]]></title> 
    <link>http://www.zhenhua.org/</link> 
    <description><![CDATA[振华博客,振华's blog]]></description> 
    <language>UTF-8</language> 
    <copyright><![CDATA[Copyright 2010, 振华博客]]></copyright> 
    <webMaster><![CDATA[zenhua@gmail.com (振华)]]></webMaster> 
    <generator>LBS v2.0.313</generator> 
    <pubDate>Thu, 09 Sep 2010 21:04:18 +0800</pubDate> 
    <ttl>60</ttl>
  
    <item>
      <title><![CDATA[IIS同时集成多个Resin(不同版本)]]></title> 
      <link><![CDATA[http://www.zhenhua.org/article.asp?id=530]]></link> 
      <category><![CDATA[IIS]]></category> 
      <author><![CDATA[振华 <null@null.com>]]></author> 
      <pubDate>Sat, 08 Mar 2008 21:24:41 +0800</pubDate> 
      <description><![CDATA[IIS上指定网站用不同的Resin版本来解析 <br />例如：example1.com  ----&gt;用Resin3.0.x来解析jsp脚本<br />         example2.com  ----&gt;用Resin2.1.x来解析jsp脚本<br /><br />如果配置了resin的环境变量，需要在环境变量中将RESIN_HOME删除，不然无法同时运行多个resin。<br />首先将各个版本的Resin都加载为系统服务，注意重命名<div class="code">Resin2.1.x : C:\&gt;httpd -install-as resin2<br />Resin3.0.x : C:\&gt;httpd -install-as resin3</div><br />然后依次启动服务 net start resin2、net start resin3<br /><br />IIS加载时只要用不同版本的isapi_srun.dll解析jsp后缀就可以了<br /><br />2.1版本的Resin.ini配置：<div class="code">CauchoConfigFile D:/resin2.1/conf/resin.conf</div><br />3.0版本的Resin.ini配置：<div class="code">ResinConfigServer localhost 6802</div>]]></description>
      <wfw:commentRss><![CDATA[http://www.zhenhua.org/feed.asp?q=comment&id=530]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[IIS 6的应用程序池属性]]></title> 
      <link><![CDATA[http://www.zhenhua.org/article.asp?id=427]]></link> 
      <category><![CDATA[IIS]]></category> 
      <author><![CDATA[振华 <null@null.com>]]></author> 
      <pubDate>Fri, 27 Oct 2006 18:42:08 +0800</pubDate> 
      <description><![CDATA[回收 <br /><br />在回收标签，你可以设置工作进程的回收方式： <br /> <br />回收工作进程（分钟）：在工作进程运行多少分钟后回收工作进程，默认启用，并且设置为1740分钟（29小时）； <br /><br />回收工作进程（请求数目）：在工作进程处理多少 个HTTP请求后终止此工作进程，默认禁用，如果启用则默认值为35000； <br /><br />在下列时间回收工作进程：在指定的时间回收工作进程，默认禁用；如需启用，勾选后点击添加按钮添加回收的时间即可，使用24小时制定义回收的时间； <br /><br />消耗太多内存时回收工作进程： <br /><br />最大虚拟内存（兆）：当工作进程使用的虚拟内存达到设置的值时回收工作进程，默认禁用，如果启用则默认值为500 M；建议设置为不超过虚拟内存总数的70％； <br /><br />最大使用的内存（兆）：当工作进程使用的物理内存达到设置的值时回收工作进程，默认禁用，如果启用则默认值为192 M；建议设置为不超过物理内存总数的60％； <br /><br />另外需要注意的是，应用程序池具有以下两种工作进程回收方式，不过这两种回收方式均不会造成Web服务的中断： <br /><br />默认情况下，应用程序池使用重叠回收方式。在这种方式下，当应用程序池要关闭某个工作进程时，会先创建一个工作进程，直到新的工作进程成功创建后才关闭旧的工作进程； <br />]]></description>
      <wfw:commentRss><![CDATA[http://www.zhenhua.org/feed.asp?q=comment&id=427]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[IIS 6.0 优化]]></title> 
      <link><![CDATA[http://www.zhenhua.org/article.asp?id=425]]></link> 
      <category><![CDATA[IIS]]></category> 
      <author><![CDATA[振华 <null@null.com>]]></author> 
      <pubDate>Fri, 27 Oct 2006 16:49:25 +0800</pubDate> 
      <description><![CDATA[<p>IIS 6.0 应用了新的进程模型。内核模式的HTTP侦听程序（Http.sys）接收并发送HTTP请求（甚至可以使用它的响应缓存来满足请求）。工作进程注册URL子空间，Http.sys将请求发送到相应的进程（如果使用应用程序池，则发送到进程集合）。</p>
                    <p>图&nbsp;4 展示了IIS 5.0和IIS 6.0进程模型之间的差异。IIS 5.0使用WinSock在端口80接受连接。请求由 
                      <i>inetinfo</i> 进程负责接收，然后或者在进程内执行请求，或者将它交给<i>dllhost</i> 
                      进程在进程外进行处理（为了达到隔离的目的）。响应则由 <i>inetinfo</i> 进程发送回去。</p>
          <p><img width=533 height=358
src="http://www.microsoft.com/china/technet/images/prodtechnol/windowsserver2003/planning/images/image008.gif"></p>
                    <p><a name="_Ref22735504"></a>图&nbsp;4&nbsp;&nbsp;&nbsp;IIS ]]></description>
      <wfw:commentRss><![CDATA[http://www.zhenhua.org/feed.asp?q=comment&id=425]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[IIS 6.0 的内存溢出]]></title> 
      <link><![CDATA[http://www.zhenhua.org/article.asp?id=424]]></link> 
      <category><![CDATA[IIS]]></category> 
      <author><![CDATA[振华 <null@null.com>]]></author> 
      <pubDate>Fri, 27 Oct 2006 16:38:42 +0800</pubDate> 
      <description><![CDATA[IIS 6.0的内核模式缓存是一种基于物理内存的缓存，每个条目都需要占用一定的内存空间。<br />内存不足时的溢出表现：<div class="code">事件类型:&nbsp;&nbsp;信息<br />事件来源:&nbsp;&nbsp;Application Popup<br />事件种类:&nbsp;&nbsp;无<br />事件 ID:&nbsp;&nbsp;26<br />日期:&nbsp;&nbsp;&nbsp;&nbsp;2006-10-26<br />事件:&nbsp;&nbsp;&nbsp;&nbsp;14:27:12<br />用户:&nbsp;&nbsp;&nbsp;&nbsp;N/A<br />计算机:&nbsp;&nbsp;IDC-H7PQ9YRJSNF<br />描述:<br />弹出应用程序: Microsoft Visual C++ Runtime Library: Runtime Error!<br /><br />Program: c:\windows\system32\inetsrv\w3wp.exe<br /><br />This application has requested the Runtime to terminate it in an unusual way.<br />Please contact the application&#39;s support team for more information.<br /><br />有关更多信息，请参阅在 http&#58;//go.microsoft.com/fwlink/events.asp 的帮助和支持中心。</div>]]></description>
      <wfw:commentRss><![CDATA[http://www.zhenhua.org/feed.asp?q=comment&id=424]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[IIS Debugdiag]]></title> 
      <link><![CDATA[http://www.zhenhua.org/article.asp?id=387]]></link> 
      <category><![CDATA[IIS]]></category> 
      <author><![CDATA[振华 <null@null.com>]]></author> 
      <pubDate>Sun, 23 Jul 2006 14:25:29 +0800</pubDate> 
      <description><![CDATA[Microsoft has published few KBs on How to use <a href="http://www.iis.net/downloads/tools/iisdiag/x86/debugdiag.msi" title="http://www.iis.net/downloads/tools/iisdiag/x86/debugdiag.msi" target="_blank"><span style="color:Red"><b>DebugDiag</b></span></a> tool.<br /><br />Memory dump -<br /><a href="http://support.microsoft.com/?id=921464" title="http://support.microsoft.com/?id=921464" target="_blank">How to use the Debug Diagnostics 1.0 tool to analyze a memory dump file</a><br /><br />Hang -<br /><a href="http://support.microsoft.com/?id=919792" title="http://support.microsoft.com/?id=919792" target="_blank">How to use the Debug Diagnostics tool to troubleshoot a process that has stopped responding in IIS</a><br /><br />Crash -<br />[url=http://support.microsoft.com/?id=919789]How ]]></description>
      <wfw:commentRss><![CDATA[http://www.zhenhua.org/feed.asp?q=comment&id=387]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[Not enough resources are available to complete]]></title> 
      <link><![CDATA[http://www.zhenhua.org/article.asp?id=371]]></link> 
      <category><![CDATA[IIS]]></category> 
      <author><![CDATA[振华 <null@null.com>]]></author> 
      <pubDate>Tue, 20 Jun 2006 22:26:15 +0800</pubDate> 
      <description><![CDATA[该死的IIS，该死的Microsoft，微软的解释，说了等于没说<br /><br />Error Log:<div class="code">Event ID: 7023<br />Source: Service Control Manager<br />The World Wide Web Publishing Service service terminated with <br />the following error: Not enough resources are available to complete this operation. </div><br />World Wide Web Publishing Service 服务因下列错误而停止: <br />资源不足，无法完成此操作。 <br /><br />When run:net start w3svc<br /><span style="color:Red"><b>Error 1721: Not enough resources are available to complete this operation </b> </span><br /><br />CAUSE <br />This problem occurs because of improper ]]></description>
      <wfw:commentRss><![CDATA[http://www.zhenhua.org/feed.asp?q=comment&id=371]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[Wap 支持设置]]></title> 
      <link><![CDATA[http://www.zhenhua.org/article.asp?id=348]]></link> 
      <category><![CDATA[IIS]]></category> 
      <author><![CDATA[振华 <null@null.com>]]></author> 
      <pubDate>Sat, 03 Jun 2006 19:24:33 +0800</pubDate> 
      <description><![CDATA[站点属性－－&gt;Http头－－&gt;MIME映射中添加新的文件类型，具体如下：<br />关联文件名 内容类型<br />wml text/vnd.wap.wml<br />wmlc application/vnd.wap.wamlc<br />wmls text/vnd.wap.wmlscript<br />wmlsc application/vnd.wap.wmlscript<br />wbmp image/vnd.wap.wbmp<br /><br />类型<br />ContentType = &quot;text/vnd.wap.wml; charset=utf-8&quot;]]></description>
      <wfw:commentRss><![CDATA[http://www.zhenhua.org/feed.asp?q=comment&id=348]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[IIS URLRewrite 匹配任何字符]]></title> 
      <link><![CDATA[http://www.zhenhua.org/article.asp?id=319]]></link> 
      <category><![CDATA[IIS]]></category> 
      <author><![CDATA[振华 <null@null.com>]]></author> 
      <pubDate>Tue, 16 May 2006 16:55:15 +0800</pubDate> 
      <description><![CDATA[<div class="code">{[^\/&lt;&gt;=()&#39;&quot;;:.^]+} 或 ([^\/&lt;&gt;=()&#39;&quot;;:.^]+)</div><br />包括中文在内,除了&quot;/&quot;  &quot;\&quot; &quot;&gt;&quot; &quot;&lt;&quot; &quot;=&quot; &quot;(&quot; &quot;)&quot; &quot;;&quot; &quot;:&quot; &quot;.&quot;  这10个特殊字符外其他一律匹配]]></description>
      <wfw:commentRss><![CDATA[http://www.zhenhua.org/feed.asp?q=comment&id=319]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[Metacharacter for URLRewrite]]></title> 
      <link><![CDATA[http://www.zhenhua.org/article.asp?id=298]]></link> 
      <category><![CDATA[IIS]]></category> 
      <author><![CDATA[振华 <null@null.com>]]></author> 
      <pubDate>Fri, 21 Apr 2006 21:46:43 +0800</pubDate> 
      <description><![CDATA[记录一下，方便随时查询 <img src="http://www.zhenhua.org/styles/default/images/smilies/icon_evil.gif" border="0" alt="[evil]" /><br /> <div class="code">Metacharacter Meaning <br />. Matches any single character. <br />[ ] Indicates a character class. Matches any character inside the brackets (for example, [abc] matches &quot;a&quot;, &quot;b&quot;, and &quot;c&quot;). <br />^ If this metacharacter occurs at the start of a character class, it negates the character class. A negated character class matches any character except those inside the brackets (for example, [^abc] matches all characters except &quot;a&quot;, &quot;b&quot;, and &quot;c&quot;). <br />If ^ is at the beginning of the regular </div>]]></description>
      <wfw:commentRss><![CDATA[http://www.zhenhua.org/feed.asp?q=comment&id=298]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[IIS HTTP 405]]></title> 
      <link><![CDATA[http://www.zhenhua.org/article.asp?id=297]]></link> 
      <category><![CDATA[IIS]]></category> 
      <author><![CDATA[振华 <null@null.com>]]></author> 
      <pubDate>Thu, 20 Apr 2006 19:26:28 +0800</pubDate> 
      <description><![CDATA[IIS不允许form中的action 不指定文件，像类似method=post action=&quot;./&quot; 或action=&quot;/test/&quot; 都会提示‘HTTP 405- 资源被禁止’<br />action方法必须指定文件才行<br /><br />Because no ACTION attribute is specified in the tag, both Netscape Navigator and Internet Explorer try to make an HTTP POST request to the URI &quot;web/&quot;. According to the HTTP RFC (RFC 2068), this is not a valid Request-URI for a POST operation. <br /><br />To work around this problem, use one of the following methods:<br /> • Redirect from the default document to a different document. In this case, ]]></description>
      <wfw:commentRss><![CDATA[http://www.zhenhua.org/feed.asp?q=comment&id=297]]></wfw:commentRss>
    </item>
      
  </channel>
</rss>
