All Forumshttp://forums.iis.net/default.aspxAll ForumsWed, 19 Jun 2013 06:59:56 -0400urn:uuid:00000000-0000-0000-0000-000000000000urn:uuid:00000000-0000-0000-0000-000002053199http://forums.iis.net/p/1199953/2053199.aspx/1?IIS+ARR+URL+rewrite+outbound+rules+with+contens+greater+than+256K+gives+connection+resetIIS + ARR: URL rewrite outbound rules with contens greater than 256K gives connection reset <p>Hi All,</p> <p>I have be thrawling the net to find an answer, but axcept for a singel supportcase (<a href="http://forums.adobe.com/thread/1037345">http://forums.adobe.com/thread/1037345</a>) on Adobe regarding some IIS&#43;ARR and coldfusion then the issue is not even mentioned anywhere...</p> <p>Our issue:</p> <p>I have configures a Windows Server 2012 with IIS &#43; ARR and the URL rewrite module.</p> <p>Our inbound rule work fine, but the outbound rule result in a connection reset. We have been errortracing and found throug a custom php script the this only happenes when the contens passing through the outbound module gets larger that approx 255 KB then the connection will be reset!</p> <p>Is this a bug or is there somewhere I can configure this in IIS, ARR or URL rewrite?</p> <p>I have already checked Request filtering settings and it allows upto 30MB responses...</p> <p>Please advice?</p> <p></p> <p>Friendly regards</p> <p>Stefan B. Christensen / Denmark</p> 2013-06-18T12:07:46-04:002013-06-18T12:07:46.883-04:00urn:uuid:00000000-0000-0000-0000-000002053341http://forums.iis.net/p/1200038/2053341.aspx/1?Redirect+301+and+web+configRedirect 301 and web.config <p>Hello,</p> <p>i want make permanent redirect from:</p> <p><a href="http://www.lacartucceria.com/ver1/catalogo.asp?cat=80&amp;pcat=61">http://www.lacartucceria.com/ver1/catalogo.asp?cat=80&amp;pcat=61</a></p> <p>to</p> <p><a href="http://www.lacartucceria.com/cartucce/cartucce-canon.asp">http://www.lacartucceria.com/cartucce/cartucce-canon.asp</a></p> <p>have inserted this code into my web.config:</p> <p>&lt;rule name=&quot;301 Redirect 1&quot; stopProcessing=&quot;true&quot;&gt;<br> &lt;match url=&quot;^ver1/catalogo.asp?cat=80&amp;amp;pcat=61&quot; /&gt;<br> &lt;action type=&quot;Redirect&quot; url=&quot;^cartucce/cartucce-canon.asp&quot; redirectType=&quot;Permanent&quot; /&gt;<br> &lt;/rule&gt;</p> <p>but don't work, why?</p> <p>can someone help me?</p> <p>Thks</p> 2013-06-19T10:30:52-04:002013-06-19T10:30:52.337-04:00urn:uuid:00000000-0000-0000-0000-000002052872http://forums.iis.net/p/1199778/2052872.aspx/1?VENICEVENICE <p>Hello,</p> <p>I’m Marta, and I’m going to travel to Venice on few days.</p> <p>I’m writing you because I don’t know how to go to the hotel when I arrive at the airport. Can you tell me how can I arrive there?</p> <p>And I’m interested in going to Murano to see how the glass is made. Can you send me the timetables of the glasses factory?</p> <p>I’m waiting for your answer.</p> <p>Thanks,</p> <p>Marta</p> 2013-06-13T11:02:50-04:002013-06-13T11:02:50.343-04:00urn:uuid:00000000-0000-0000-0000-000002052913http://forums.iis.net/p/1199805/2052913.aspx/1?ADO+Net+data+service+URL+maping+interfers+with+ExtensionlessUrlHandlerADO.Net data service URL maping interfers with ExtensionlessUrlHandler <p>IIS handler mapping is making me dizzy although I'm an ASP.Net developer on IIS for about 6 years.</p> <p>It all began when I was getting 404 errors for my Web API controller methods that were accessed using HTTP PUT and DELETE. This only happened on IIS7 but everything was working fine on IIS Express.</p> <p>I found many resources that suggest removing WebDAV and adding the following to web.config</p> <pre class="prettyprint">&lt;remove name=&quot;ExtensionlessUrlHandler-ISAPI-4.0_32bit&quot; /&gt; &lt;remove name=&quot;ExtensionlessUrlHandler-ISAPI-4.0_64bit&quot; /&gt; &lt;remove name=&quot;ExtensionlessUrlHandler-Integrated-4.0&quot; /&gt; &lt;add name=&quot;ExtensionlessUrlHandler-ISAPI-4.0_32bit&quot; path=&quot;*.&quot; verb=&quot;GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS&quot; modules=&quot;IsapiModule&quot; scriptProcessor=&quot;%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll&quot; preCondition=&quot;classicMode,runtimeVersionv4.0,bitness32&quot; responseBufferLimit=&quot;0&quot; /&gt; &lt;add name=&quot;ExtensionlessUrlHandler-ISAPI-4.0_64bit&quot; path=&quot;*.&quot; verb=&quot;GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS&quot; modules=&quot;IsapiModule&quot; scriptProcessor=&quot;%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll&quot; preCondition=&quot;classicMode,runtimeVersionv4.0,bitness64&quot; responseBufferLimit=&quot;0&quot; /&gt; &lt;add name=&quot;ExtensionlessUrlHandler-Integrated-4.0&quot; path=&quot;*.&quot; verb=&quot;GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS&quot; type=&quot;System.Web.Handlers.TransferRequestHandler&quot; preCondition=&quot;integratedMode,runtimeVersionv4.0&quot; /&gt;</pre> <p>These lines are added by default to web.config by the Web API Visual Studio project template, and they fix the issue.</p> <p>Now, when I returned back to IIS Express, I found out that requests to my ADO.Net data service return HTTP 404! and the service doesn't work unless I remove the ExtensionlessUrlHandler-Integrated-4.0 handler mapping.</p> <p>I found <a href="http://metahat.blogspot.com/2011/10/resource-not-found-404-error-wcf-data.html">a resource</a> suggesting that the issue can be resolved by mapping a route as follows</p> <pre class="prettyprint">routes.IgnoreRoute("{resource}.svc/{*pathInfo}");</pre> <p>But it doesn't.</p> <p>Why this happens? And how to configure my application to work seamlessly on IIS and IIS Express?</p> 2013-06-13T15:50:49-04:002013-06-13T15:50:49.49-04:00urn:uuid:00000000-0000-0000-0000-000002021170http://forums.iis.net/p/1189309/2021170.aspx/1?The+page+cannot+be+displayed+because+an+internal+server+error+has+occurred+The page cannot be displayed because an internal server error has occurred. <p>Hello.</p> <p>How I get displayed custum error when i have in my script any sintax problem?</p> <p>Now i get : The page cannot be displayed because an internal server error has occurred.</p> <p>web.config</p> <p>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;<br> &lt;configuration&gt;<br> &nbsp;&nbsp;&nbsp; &lt;system.webServer&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;httpErrors errorMode=&quot;DetailedLocalOnly&quot; /&gt;<br> &nbsp;&nbsp;&nbsp; &lt;/system.webServer&gt;<br> &lt;/configuration&gt;<br> </p> 2012-05-13T12:32:17-04:002012-05-13T12:32:17.697-04:00urn:uuid:00000000-0000-0000-0000-000002052809http://forums.iis.net/p/1199765/2052809.aspx/1?Request+filteringRequest filtering <p>Hi All</p> <p>I'm yet to implement Request Filtering on a large scale and have up to this point been mainly using URLScan where this level of filtering is required.</p> <p>I would now like to implement Request Filtering across a number of production web servers but am very nervous about doing so because each server hosts many different production websites. URLScan had a feature where you could configure the tool in listen only mode (RejectResponseUrl=/~*). Does anyone know whether there is equivalent functionality in the Request Filtering module?</p> <p>Thanks!</p> <p></p> 2013-06-12T15:01:01-04:002013-06-12T15:01:01.127-04:00urn:uuid:00000000-0000-0000-0000-000002053232http://forums.iis.net/p/1199985/2053232.aspx/1?Web+Platform+and+SBS+2008Web Platform and SBS 2008 <p>Can I (or Should I) install Web Platform 4.5 on Microsoft SBS 2008?&nbsp; Does it give me any advantages?&nbsp; Are there any problem installing on SBS 2008?</p> &lt;div nuan_tabactive=&quot;true&quot; id=&quot;nuan_ria_plugin&quot;&gt;&lt;/div&gt; 2013-06-18T13:29:44-04:002013-06-18T13:29:44.007-04:00urn:uuid:00000000-0000-0000-0000-000002053186http://forums.iis.net/p/1199943/2053186.aspx/1?ASP+NET+2+in+classic+mode+site+crashing+under+load+on+IIS8ASP .NET 2 in classic mode site crashing under load on IIS8 <p>Hi All,</p> <p>We are in the process of migrating a medium traffic (25M &#43; hits/month) site to IIS 8 on Server 2012 64 bit from our existing platform (Server 2003, IIS 6, 32 bit). The app is written in VB .Net using ASP .NET 2.0 and uses a custom 404 redirector to handle extensionless URLs (which doesn't work in integrated pipeline mode).</p> <p>Our servers are set up as follows:</p> <ul> <li>Two identical servers, with a hardware load balancer in front of them using sticky sessions </li><li>Dedicated app pool configured to .NET 2 and Classic pipeline mode </li><li>Worker process set to 32 bit (as recommended at<a href="http://www.iis.net/learn/web-hosting/web-server-for-shared-hosting/32-bit-mode-worker-processes">http://www.iis.net/learn/web-hosting/web-server-for-shared-hosting/32-bit-mode-worker-processes</a>) </li><li>Session state set to in-process </li></ul> <p>The setup works fine in testing and when first put live, but after around 2.5 hrs CPU usage goes to nearly 100% and eventually the servers become unresponsive. Recycling app pools fixes the problem temporarily, but it seems to set off a chain reaction and eventually both servers become unresponsive, IIS manager crashes if attempting to view running requests. When the site does become responsive again it runs very slowly, as is IIS is stil trying to catch up.</p> <p>I'm at a loss as to what else to try - has anyone else seen this before?</p> <p>We initially thought it could be the session state (as we had been using the state server) so changed to in-process. This helped a little, as memory usage on the state server was around 1.5 GB but in-process only swelled the worked process by about 100MB; changing the app pools to 32 bit also helped significantly (worker process memory usage fell from 1.4GB to 400MB).</p> <p>Any thoughts would be really welcome!!</p> <p>Thanks</p> <p>Sam</p> 2013-06-18T10:39:13-04:002013-06-18T10:39:13.177-04:00urn:uuid:00000000-0000-0000-0000-000002053183http://forums.iis.net/p/1199942/2053183.aspx/1?Privileges+instantiate+for+Outlook+COM+componentsPrivileges instantiate for Outlook COM components <p><span>Hi all,</span><br> <span>I am implemented functionality for opening email content in Outlook. Its working fine in Visual studio debugging mode. But in iis its showing error</span><br> <span>&nbsp;</span><br> <span>&quot;Retrieving the COM class factory for component with CLSID {0006F03A-0000-0000-C000-000000000046} failed due to the following error: 80070005.&quot;</span><br> <span>&nbsp;</span><br> <span>Its the problem of privileges instantiate for Outlook COM components. I tried some steps that i got from google search. But not working. Please see below link.</span><br> <span>&nbsp;</span><br> <br> <a href="http://technoblogy.net/retrieving-the-com-class-factory-for-component-with-clsid-00024500-0000-0000-c000-000000000046-failed-due-to-the-following-error-80040154/">http://technoblogy.net/retrieving-the-com-class-factory-for-component-with-clsid-00024500-0000-0000-c000-000000000046-failed-due-to-the-following-error-80040154/</a><span>[</span><a href="http://technoblogy.net/retrieving-the-com-class-factory-for-component-with-clsid-00024500-0000-0000-c000-000000000046-failed-due-to-the-following-error-80040154/" target="_blank" title="New Window">^</a><span>]</span><br> <span>&nbsp;</span><br> <span>Please help me to resolve from this Error.</span><br> <span>Thanks,</span><br> <span>Manu v nath</span></p> 2013-06-18T09:55:14-04:002013-06-18T09:55:14.793-04:00urn:uuid:00000000-0000-0000-0000-000002053126http://forums.iis.net/p/1199915/2053126.aspx/1?could+not+load+type+assembly+name+error+in+IIS+handler+mappingcould not load type 'assembly name' error in IIS handler mapping <p>Hello IIS experts</p> <p>I added one module using .net framework visualstdio2010 and I added handler mapping to application .while browsing it shows the error</p> <p>&quot;could not load type' myassembly name' &nbsp;.what might be the reason for such error .In handler mapping I gave the path like 'namespace.classname&quot; ,is it right way or some other causes this error.can any one suggest help ful.</p> <p></p> <p>Thanks and regards</p> <p>Muralikrishna</p> 2013-06-17T12:49:03-04:002013-06-17T12:49:03.053-04:00urn:uuid:00000000-0000-0000-0000-000002053244http://forums.iis.net/p/1199992/2053244.aspx/1?Error+Code+0x80070002+Local+SharePoint+siteError Code 0x80070002 - Local SharePoint site <p>Hi,</p> <p>I am brand new to the forum and am looking for assistance. I have the following issue.</p> <p>I recently installed a local version of SharePoint to my computer, but for whatever reason I am no longer able to access it and my IIS won't enable. I was able to access my SharePont site last Thursday as well.</p> <p>I was following the directions from the microsoft link below:</p> <p><a href="http://msdn.microsoft.com/en-us/library/ee554869%28v=office.14%29.aspx">http://msdn.microsoft.com/en-us/library/ee554869%28v=office.14%29.aspx</a></p> <p>I received three separate errors: 1. When entering the script. 2. Trying to manually turn on IIS through the Windows features. 3. Accessing my SharePoint.</p> <p>The following appeared when I tried to enter the script:</p> <p>&quot;Operation Failed with 0x80070BC9</p> <p>The requested operation failed. A system reboot is required to roll back changes made.&quot;<br> Then once I got to 2.8 - &quot;Manuallys enable each of the required Windows Features&quot;, it no longer worked. I tried to manually turn on the Windows features, primarily the IIS, but it errors out stating that changes could not be saved.</p> <p>Each time I try to go to my SharePoint site the following error pops up:</p> <p>HTTP Error 404.0 - Not Found</p> <p>Detailed Error Information</p> <p>Error Code 0x80070002</p> <p>&nbsp;</p> <p>The other part, not sure how significant this is, is that I am on my companies network which requires a Single Sign On. Could it be that the Network (my SharePoint Site) is not recognizing my username which is why I cannot access it? I posted this in the SharePoint forum and they thought it sounded more like an IIS issue. One more thing is that I am operating on Windows 7 Enterprise.</p> <p>I tried Pasting some images in here, but the image URL does not appear to be working so I apologize for that.</p> <p>&nbsp;</p> <p>Any help would be greatly appreciated!!!</p> <p>Thanks,</p> <p>Greg</p> <p>&nbsp;</p> 2013-06-18T15:11:43-04:002013-06-18T15:11:43.57-04:00urn:uuid:00000000-0000-0000-0000-000002053280http://forums.iis.net/p/1199997/2053280.aspx/1?Using+2+different+modes+of+authentication+Using 2 different modes of authentication. <p>We need to perform Forms based authentication for users who're not in the network and a windows based authentication for users who're connected to the domain. In order to do this, I enabled anonymous authentication and windows authentication on my IIS Application.</p> <p>I haven't been able to get this working. Any ideas on how I need to configure my application? The users who login through windows authentication SHOULD NOT be prompted for a username / password.</p> <p>I am on windows server 2012 running IIS 8.5</p> 2013-06-19T02:15:40-04:002013-06-19T02:15:40.373-04:00urn:uuid:00000000-0000-0000-0000-000002053291http://forums.iis.net/p/1200001/2053291.aspx/1?App+Pool+virtual+memory+allocation+IIS+7+0+64+BitApp Pool virtual memory allocation IIS 7.0 / 64 Bit <p><br> I have a query regarding the app Pool and virtual memory allocation on a 64 bit system. In one of our production environments we noticed that the virtual memory allocation increased when we added more memory to the server.</p> <p>Ex.</p> <p>Server Memory App Pool Virtual Memory</p> <p>16 GB 1.5 GB<br> 18 GB 1.7 GB<br> 20 GB 2.0 GB</p> <p>We don;t have a memory leak in the application. However we were intrigued by the increase in the virtual memory allocation. Is this by design where OS allocates more memory to app pool if more free memory is available? Any info would be helpful!!</p> <p></p> 2013-06-19T03:37:40-04:002013-06-19T03:37:40.397-04:00urn:uuid:00000000-0000-0000-0000-000002053307http://forums.iis.net/p/1200017/2053307.aspx/1?Example+for+rewrite+ModuleExample for rewrite Module <p>Hello IIS Experts,</p> <p>How can I implement URL Rewriting using this (URL rewrite module).please provide some demo .</p> <p>Thanks and regards</p> <p>Muralikrishna</p> 2013-06-19T06:14:50-04:002013-06-19T06:14:50.98-04:00urn:uuid:00000000-0000-0000-0000-000002053295http://forums.iis.net/p/1200005/2053295.aspx/1?Can+you+please+help+me+with+a+re+write+rule+Can you please help me with a re-write rule? <p>Hi, I have a website that has a search engine and therefore can take in any keyword appended after the main domain as shown below</p> <p>e.g. <a href="http://www.mysite.com/keyword.aspx">www.mysite.com/keyword.aspx</a> or <a href="http://www.mysite.com/anotherkeyword.aspx">www.mysite.com/anotherkeyword.aspx</a> or www.mysite.com/yetanotherkeyword.aspx</p> <p>What I would like to do is get this keyword and redirect it to the default.aspx default page via a querystring as shown below for the above example pages</p> <p>e.g. www.mysite.com/default.aspx?id=keyword or <a href="http://www.mysite.com/default.aspx?id=anotherkeyword"> www.mysite.com/default.aspx?id=anotherkeyword</a> or <a href="http://www.mysite.com/default.aspx?id=yetanotherkeyword"> www.mysite.com/default.aspx?id=yetanotherkeyword</a> </p> <p>Until recently I have been using the UrlRewriter and have been able to do this with the example rule below</p> <p>&lt;rewrite url=&quot;~/(.&#43;).aspx&quot; to=&quot;~/Default.aspx?id=&#36;1&quot; /&gt;</p> <p>Which essentially will get any page that ends in .aspx and redirect it to the default.aspx with the keyword as the argument.</p> <p>Since we have recently moved to IIS7 I thought that I would leverage the existing functionality that comes with IIS rather then a third party module but I am having issues getting the re-write rule correct.</p> <p>Any help appreciated :)</p> <p>Best wishes<br> Mark</p> 2013-06-19T05:28:21-04:002013-06-19T05:28:21.467-04:00urn:uuid:00000000-0000-0000-0000-000002053294http://forums.iis.net/p/1200004/2053294.aspx/1?WPI+4+5+install+IIS+Transform+Manager+1+1+FailedWPI 4.5 install IIS Transform Manager 1.1 Failed <p>Dear,</p> <p>I install WPI 4.5 from url:&nbsp;<a href="http://www.microsoft.com/web/downloads/platform.aspx">http://www.microsoft.com/web/downloads/platform.aspx</a></p> <p>When I using it from IIS Manager to install IIS Transform Manager and I have error: We're sorry. The following products have failed to install.</p> <p>IIS Transform Manager 1.1</p> <p>This product did not install successfully: Downloaded file failed signature verification and may have been tampered with</p> <p>Web Platform Installer Log:</p> <p>DownloadManager Information: 0 : Loading product xml from: https://go.microsoft.com/?linkid=9817844<br> DownloadManager Information: 0 : https://go.microsoft.com/?linkid=9817844 responded with 302<br> DownloadManager Information: 0 : Response headers:<br> HTTP/1.1 302 Found<br> Cache-Control: private<br> Content-Length: 175<br> Content-Type: text/html; charset=utf-8<br> Expires: Wed, 19 Jun 2013 05:16:15 GMT<br> Location: https://www.microsoft.com/web/webpi/4.5/webproductlist.xml<br> Server: Microsoft-IIS/7.5<br> X-AspNet-Version: 2.0.50727<br> X-Powered-By: ASP.NET<br> Date: Wed, 19 Jun 2013 05:17:14 GMT</p> <p><br> DownloadManager Information: 0 : https://www.microsoft.com/web/webpi/4.5/webproductlist.xml responded with 304<br> DownloadManager Information: 0 : Response headers:<br> HTTP/1.1 304 Not Modified<br> Cache-Control: max-age=900<br> Accept-Ranges: bytes<br> ETag: &quot;e0ca241a96bce1:0&quot;<br> Server: Microsoft-IIS/8.0<br> P3P: CP=&quot;ALL IND DSP COR ADM CONo CUR CUSo IVAo IVDo PSA PSD TAI TELo OUR SAMo CNT COM INT NAV ONL PHY PRE PUR UNI&quot;<br> VTag: 279132131300000000<br> X-Powered-By: ASP.NET<br> X-Powered-By: ARR/2.5<br> X-Powered-By: ASP.NET<br> Date: Wed, 19 Jun 2013 05:17:16 GMT</p> <p><br> DownloadManager Information: 0 : Remote file has not changed, using local cached file: C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\-201406949.xml.temp<br> DownloadManager Warning: 0 : Could not resolve keyword ID WIF<br> DownloadManager Warning: 0 : Could not resolve keyword ID identity<br> DownloadManager Warning: 0 : Could not resolve keyword ID federation<br> DownloadManager Warning: 0 : Could not resolve keyword ID claims<br> DownloadManager Warning: 0 : Could not resolve keyword ID authentication<br> DownloadManager Information: 0 : Filtering by majorOS: 6, minorOS: 1, majorSP: 1, minorSP: 0, productType: 6, architecture: x64<br> DownloadManager Information: 0 : Loading product xml from: https://www.microsoft.com/web/webpi/4.5/webapplicationlist.xml<br> DownloadManager Information: 0 : https://www.microsoft.com/web/webpi/4.5/webapplicationlist.xml responded with 304<br> DownloadManager Information: 0 : Response headers:<br> HTTP/1.1 304 Not Modified<br> Cache-Control: max-age=900<br> Accept-Ranges: bytes<br> ETag: &quot;99645fe18968ce1:0&quot;<br> Server: Microsoft-IIS/8.0<br> P3P: CP=&quot;ALL IND DSP COR ADM CONo CUR CUSo IVAo IVDo PSA PSD TAI TELo OUR SAMo CNT COM INT NAV ONL PHY PRE PUR UNI&quot;<br> VTag: 438413333000000000<br> X-Powered-By: ASP.NET<br> X-Powered-By: ARR/2.5<br> X-Powered-By: ASP.NET<br> Date: Wed, 19 Jun 2013 05:17:21 GMT</p> <p><br> DownloadManager Information: 0 : Remote file has not changed, using local cached file: C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\-1651292038.xml.temp<br> DownloadManager Warning: 0 : Could not resolve keyword ID ApplicationSpotlight<br> DownloadManager Warning: 0 : Could not resolve keyword ID ApplicationSpotlight<br> DownloadManager Warning: 0 : Could not resolve keyword ID ApplicationSpotlight<br> DownloadManager Warning: 0 : Could not resolve keyword ID ApplicationSpotlight<br> DownloadManager Warning: 0 : Could not resolve keyword ID ApplicationSpotlight<br> DownloadManager Warning: 0 : Could not resolve keyword ID ApplicationSpotlight<br> DownloadManager Warning: 0 : Could not resolve keyword ID ApplicationSpotlight<br> DownloadManager Warning: 0 : Could not resolve keyword ID ApplicationSpotlight<br> DownloadManager Warning: 0 : Could not resolve keyword ID ApplicationSpotlight<br> DownloadManager Information: 0 : Filtering by majorOS: 6, minorOS: 1, majorSP: 1, minorSP: 0, productType: 6, architecture: x64<br> DownloadManager Information: 0 : Sucessfully loaded the feed 'https://www.microsoft.com/web/webpi/4.5/webapplicationlist.xml' after preprocessing, location on disk: 'C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\preprocessor\-1651292038.xml'<br> DownloadManager Information: 0 : Loading product xml from: https://www.microsoft.com/web/webpi/4.5/mediaproductlist.xml<br> DownloadManager Information: 0 : https://www.microsoft.com/web/webpi/4.5/mediaproductlist.xml responded with 304<br> DownloadManager Information: 0 : Response headers:<br> HTTP/1.1 304 Not Modified<br> Cache-Control: max-age=900<br> Accept-Ranges: bytes<br> ETag: &quot;f97d7c1bdeace1:0&quot;<br> Server: Microsoft-IIS/8.0<br> P3P: CP=&quot;ALL IND DSP COR ADM CONo CUR CUSo IVAo IVDo PSA PSD TAI TELo OUR SAMo CNT COM INT NAV ONL PHY PRE PUR UNI&quot;<br> VTag: 791525533200000000<br> X-Powered-By: ASP.NET<br> X-Powered-By: ARR/2.5<br> X-Powered-By: ASP.NET<br> Date: Wed, 19 Jun 2013 05:17:22 GMT</p> <p><br> DownloadManager Information: 0 : Remote file has not changed, using local cached file: C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\-1738152517.xml.temp<br> DownloadManager Information: 0 : Filtering by majorOS: 6, minorOS: 1, majorSP: 1, minorSP: 0, productType: 6, architecture: x64<br> DownloadManager Information: 0 : Sucessfully loaded the feed 'https://www.microsoft.com/web/webpi/4.5/mediaproductlist.xml' after preprocessing, location on disk: 'C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\preprocessor\-1738152517.xml'<br> DownloadManager Information: 0 : Loading product xml from: https://www.microsoft.com/web/webpi/4.5/ToolsProductList.xml<br> DownloadManager Information: 0 : https://www.microsoft.com/web/webpi/4.5/ToolsProductList.xml responded with 304<br> DownloadManager Information: 0 : Response headers:<br> HTTP/1.1 304 Not Modified<br> Cache-Control: max-age=900<br> Accept-Ranges: bytes<br> ETag: &quot;e0a29fbe9e63ce1:0&quot;<br> Server: Microsoft-IIS/8.0<br> P3P: CP=&quot;ALL IND DSP COR ADM CONo CUR CUSo IVAo IVDo PSA PSD TAI TELo OUR SAMo CNT COM INT NAV ONL PHY PRE PUR UNI&quot;<br> VTag: 791606431500000000<br> X-Powered-By: ASP.NET<br> X-Powered-By: ARR/2.5<br> X-Powered-By: ASP.NET<br> Date: Wed, 19 Jun 2013 05:17:23 GMT</p> <p><br> DownloadManager Information: 0 : Remote file has not changed, using local cached file: C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\-1693291424.xml.temp<br> DownloadManager Information: 0 : Filtering by majorOS: 6, minorOS: 1, majorSP: 1, minorSP: 0, productType: 6, architecture: x64<br> DownloadManager Information: 0 : Sucessfully loaded the feed 'https://www.microsoft.com/web/webpi/4.5/ToolsProductList.xml' after preprocessing, location on disk: 'C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\preprocessor\-1693291424.xml'<br> DownloadManager Information: 0 : Loading product xml from: https://www.microsoft.com/web/webpi/4.5/enterpriseproductlist.xml<br> DownloadManager Information: 0 : https://www.microsoft.com/web/webpi/4.5/enterpriseproductlist.xml responded with 304<br> DownloadManager Information: 0 : Response headers:<br> HTTP/1.1 304 Not Modified<br> Cache-Control: max-age=900<br> Accept-Ranges: bytes<br> ETag: &quot;a744a9fbddace1:0&quot;<br> Server: Microsoft-IIS/8.0<br> P3P: CP=&quot;ALL IND DSP COR ADM CONo CUR CUSo IVAo IVDo PSA PSD TAI TELo OUR SAMo CNT COM INT NAV ONL PHY PRE PUR UNI&quot;<br> VTag: 279197433000000000<br> X-Powered-By: ASP.NET<br> X-Powered-By: ARR/2.5<br> X-Powered-By: ASP.NET<br> Date: Wed, 19 Jun 2013 05:17:23 GMT</p> <p><br> DownloadManager Information: 0 : Remote file has not changed, using local cached file: C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\3703606.xml.temp<br> DownloadManager Information: 0 : Filtering by majorOS: 6, minorOS: 1, majorSP: 1, minorSP: 0, productType: 6, architecture: x64<br> DownloadManager Information: 0 : Sucessfully loaded the feed 'https://www.microsoft.com/web/webpi/4.5/enterpriseproductlist.xml' after preprocessing, location on disk: 'C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\preprocessor\3703606.xml'<br> DownloadManager Information: 0 : Sucessfully loaded the feed 'https://go.microsoft.com/?linkid=9817844' after preprocessing, location on disk: 'C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\preprocessor\-201406949.xml'<br> DownloadManager Information: 0 : Getting ratings file from http://go.microsoft.com/?linkid=9752395<br> DownloadManager Information: 0 : http://go.microsoft.com/?linkid=9752395 responded with 302<br> DownloadManager Information: 0 : Response headers:<br> HTTP/1.1 302 Found<br> Cache-Control: private<br> Connection: Keep-Alive<br> Content-Length: 203<br> Content-Type: text/html; charset=utf-8<br> Date: Wed, 19 Jun 2013 05:17:24 GMT<br> Expires: Wed, 19 Jun 2013 05:16:24 GMT<br> Location: http://www.microsoft.com/web/handlers/WebPI.ashx?command=getatomfeedwithavgratingquery<br> Server: Microsoft-IIS/7.5<br> X-AspNet-Version: 2.0.50727<br> X-Powered-By: ASP.NET</p> <p><br> DownloadManager Information: 0 : Ratings file loaded successfully<br> DownloadManager Error: 0 : System.OutOfMemoryException: Out of memory.<br> at System.Drawing.Image.FromFile(String filename, Boolean useEmbeddedColorManagement)<br> at Microsoft.Web.PlatformInstaller.UI.ImageServiceImplementation.GetImage(Uri imageUri)<br> DownloadManager Information: 0 : Adding product IIS Transform Manager 1.1 (TransformManager_1_1) to cart<br> DownloadManager Information: 0 : Adding product 'TransformManager_1_1'<br> DownloadManager Information: 0 : Setting current install to 1<br> DownloadManager Information: 0 : Starting install sequence<br> DownloadManager Information: 0 : Downloading file 'http://download.microsoft.com/download/7/4/4/744AC750-7101-40D6-A7E2-D64009F2A8FE/TransformManager_amd64.msi' to: C:\Users\Administrator\AppData\Local\Temp\tmpBC7D.tmp<br> DownloadManager Information: 0 : Content-disposition header: attachment<br> DownloadManager Information: 0 : File 'C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\installers\TransformManager_1_1\B43410CBB3528944F01BBE55162FB888BA4EE428\TransformManager_amd64.msi' already exists, deleting old copy of the file<br> DownloadManager Information: 0 : Moving downloaded file 'C:\Users\Administrator\AppData\Local\Temp\tmpBC7D.tmp' to: C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\installers\TransformManager_1_1\B43410CBB3528944F01BBE55162FB888BA4EE428\TransformManager_amd64.msi<br> DownloadManager Error: 0 : Signature verification failed on downloaded file. URL: http://download.microsoft.com/download/7/4/4/744AC750-7101-40D6-A7E2-D64009F2A8FE/TransformManager_amd64.msi. File location: C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\installers\TransformManager_1_1\B43410CBB3528944F01BBE55162FB888BA4EE428\TransformManager_amd64.msi. File size: 1104 kb<br> DownloadManager Information: 0 : Product IIS Transform Manager 1.1 done install completed<br> DownloadManager Information: 0 : Increasing current install to 2</p> <p></p> <p>I tried on Windows 7 Pro 64bit sp1 and Windows Server 2008 r2 sp1 is the same result.</p> <p></p> <p>If I try to install IIS Transform Manager 1.1 from file download here:&nbsp;<a href="http://www.microsoft.com/en-us/download/details.aspx?id=29889">http://www.microsoft.com/en-us/download/details.aspx?id=29889</a></p> <p>I can install but when I enter the path : C:\inetpub\media, it's not available here</p> <p>Please help me !!!</p> <p></p> <p></p> 2013-06-19T05:21:25-04:002013-06-19T05:21:25.44-04:00urn:uuid:00000000-0000-0000-0000-000002053293http://forums.iis.net/p/1200003/2053293.aspx/1?Using+Custom+Rewrite+Providers+with+URL+Rewrite+Module+to+rewritwe+my+URLUsing Custom Rewrite Providers with URL Rewrite Module to rewritwe my URL <p>I have read this page:</p> <p>http://www.iis.net/learn/extensions/url-rewrite-module/using-custom-rewrite-providers-with-url-rewrite-module#Configuring_DbProvider_settings</p> <p>I have used FileMapProvider as the custom rewrite in URL Rewrite module. But in the above page it uses Redirect in web.config to show the page,<br> <br> <samp class="prettyprint"><span class="tag">&lt;rule</span><span class="pln"> </span> <span class="atn">name</span><span class="pun">=</span><span class="atv">&quot;FileMapProviderTest&quot;</span><span class="pln"> </span><span class="atn">stopProcessing</span><span class="pun">=</span><span class="atv">&quot;true&quot;</span><span class="tag">&gt;</span><span class="pln"><br> &nbsp; &nbsp; </span><span class="tag">&lt;match</span><span class="pln"> </span><span class="atn">url</span><span class="pun">=</span><span class="atv">&quot;(.*)&quot;</span><span class="pln"> </span><span class="tag">/&gt;</span><span class="pln"><br> &nbsp; &nbsp; </span><span class="tag">&lt;conditions&gt;</span><span class="pln"><br> &nbsp; &nbsp; &nbsp; &nbsp; </span><span class="tag">&lt;add</span><span class="pln"> </span><span class="atn">input</span><span class="pun">=</span><span class="atv">&quot;{FileMap:{R:1}}&quot;</span><span class="pln"> </span><span class="atn">pattern</span><span class="pun">=</span><span class="atv">&quot;(.&#43;)&quot;</span><span class="pln"> </span><span class="tag">/&gt;</span><span class="pln"><br> &nbsp; &nbsp; </span><span class="tag">&lt;/conditions&gt;</span><span class="pln"><br> &nbsp; &nbsp; </span><span class="tag">&lt;action</span><span class="pln"> </span><span class="atn">type</span><span class="pun">=</span><span class="atv">&quot;Redirect&quot;</span><span class="pln"> </span><span class="atn">url</span><span class="pun">=</span><span class="atv">&quot;{C:1}&quot;</span><span class="pln"> </span><span class="tag">/&gt;</span><span class="pln"><br> </span><span class="tag">&lt;/rule&gt;</span></samp><samp class="prettyprint"></samp><samp class="prettyprint"></samp></p> <p></p> <p></p> <p>I would like to know if I could Rewrite the URL, that is</p> <p><br> The url <span class="pln">'old</span><span class="pun">/</span><span class="pln">catalog</span><span class="pun">/</span><span class="pln">product</span><span class="pun">.</span><span class="pln">html' should be shown as</span><span class="pun"> '</span><span class="pln"></span><span class="kwd">new</span><span class="pun">/</span><span class="pln">category</span><span class="pun">/</span><span class="pln">product</span><span class="pun">.</span><span class="pln">html' but the content should be of the url '<span class="pln">old</span><span class="pun">/</span><span class="pln">catalog</span><span class="pun">/</span><span class="pln">product</span><span class="pun">.</span><span class="pln">html</span>'.</span></p> <p><span class="pln"></span>Currently, the url is redirected.</p> <p>Any solutions?<br> </p> 2013-06-19T04:45:37-04:002013-06-19T04:45:37.1-04:00urn:uuid:00000000-0000-0000-0000-000002052538http://forums.iis.net/p/1199662/2052538.aspx/1?whre+from+start+rewrite+url+in+IIs+rewriterwhre from start rewrite url in IIs rewriter <p>I want to rewrite my&nbsp; web url from <a href="http://localhost:14592/">http://localhost:14592/</a> webdesign.com. so how can i do that give me full instruction step by step how to get a wanted url by iis url rewriter.where from start and where to end.</p> 2013-06-10T07:15:31-04:002013-06-10T07:15:31.25-04:00urn:uuid:00000000-0000-0000-0000-000002053159http://forums.iis.net/p/1199931/2053159.aspx/1?Sites+not+working+with+ASP+NET+Classic+v4+AppPool+IIS8+Sites not working with ASP.NET Classic v4 AppPool (IIS8) <p>Hello,</p> <p>When I have a site setup to use a Application Pool running ASP.NET v4 in Classic Mode, the first time I go to load a page, it will come up without issue. Subsequent requests for that same page will sit there and try to load forever. My testing is just loading an index.htm page with the word &quot;Test&quot; in it.</p> <p>If I go ahead and recycle the Application Pool, it will work again for that first load, but fail after that.</p> <p>I do not see anything of use in the Event Logs.</p> 2013-06-18T05:15:05-04:002013-06-18T05:15:05.217-04:00urn:uuid:00000000-0000-0000-0000-000002051883http://forums.iis.net/p/1199276/2051883.aspx/1?Anyone+successfully+using+EFS+with+IIS+7+5+WebDAV+Anyone successfully using EFS with IIS 7.5 & WebDAV? <p>Hi everyone,</p> <p>I'm stumped on this one. Hopefully someone can help!</p> <p>I have a Windows 2008 R2 server that publishes a WebDAV &quot;share&quot; through IIS. The URL for the WebDAV &quot;share&quot; is mapped in Windows explorer on a Windows 7 SP1 client. The client has EFS configured using a self signed certificate.</p> <p>I have custom properties enabled on the Windows 2008 R2 server as described in the post</p> <p><a target="_blank" title="http://forums.iis.net/p/1159609/1911836.aspx" href="http://forums.iis.net/p/1159609/1911836.aspx">http://forums.iis.net/p/1159609/1911836.aspx</a></p> <p>Now I can copy EFS encrypted documents (mainly Word 2010, Excel 2010) from the workstation to the WebDAV share and they retain their encryption - however if I attempt to open the documents directly from the WebDAV share, they open as gibberish in Word and Excel respectively. It appears that the documents cannot be decrypted.</p> <p>However if I manually copy the EFS encrypted documents from the WebDAV share back to the client&nbsp; -&nbsp; then they open fine in their respective applications.</p> <p>I'm scratching my head as my understanding is that WebDAV uses local encryption/decryption on the client when accessing EFS documents stored on a remote server.</p> <p>Any help appreciated!</p> <p></p> <p></p> 2013-06-01T15:30:34-04:002013-06-01T15:30:34.953-04:00