All Forumshttp://forums.iis.net/default.aspxAll ForumsTue, 21 May 2013 23:38:56 -0400urn:uuid:00000000-0000-0000-0000-000000000000urn:uuid:00000000-0000-0000-0000-000002049906http://forums.iis.net/p/1198037/2049906.aspx/1?Failing+to+recycle+app+poolFailing to recycle app pool <p>Hello!</p> <p>I'm having a problem where when I try to upload a new .dll or web.config on one of my projects the server fails to recycle automatically. At least that is what I suspect is happening. The app pool doubles in memory and the process increases dramatically until it eventually seems to crash.</p> <p>When I recycle manually it works quite well and there are not problems. Also the auto recycling seems to work well for some other applications.</p> <p>I realize this might be something that needs to be fixed in the code rather than the server but I thought I'd ask for advice here as well.&nbsp;</p> <p>Thanks!</p> <p>/Juha</p> 2013-05-13T07:51:35-04:002013-05-13T07:51:35.62-04:00urn:uuid:00000000-0000-0000-0000-000002050935http://forums.iis.net/p/1198813/2050935.aspx/1?Not+getting+video+from+live+stream+on+iPhone+only+getting+audioNot getting video from live stream on iPhone, only getting audio <p>I've got an Expression Encoder Pro session encoding live and am sending content to an IIS Server 7.5 running the Smooth Streaming Services.&nbsp; I have an example setup in the following video tag:</p> <p>&lt;video width=&quot;640&quot;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; height=&quot;480&quot;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; src=&quot;http://server/MobileStream.isml/manifest(format=m3u8-aapl).m3u8&quot;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; autoplay=&quot;true&quot;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; controls=&quot;true&quot; &gt;Live&lt;/video&gt;</p> <p>I am able to get the audio to play, however, I am finding that the video does not want to play.&nbsp; I am assuming that this is something regarding my setup.&nbsp; Does anyone have any idea regarding what I have setup incorrectly?</p> <p>Unfortunately, I am still learning this smooth streaming stuff.&nbsp; Does any of this make sense?</p> <p>Wally</p> 2013-05-17T13:39:54-04:002013-05-17T13:39:54.82-04:00urn:uuid:00000000-0000-0000-0000-000002051153http://forums.iis.net/p/1198913/2051153.aspx/1?FileUpload+quit+workingFileUpload quit working <p>FileUpload was working. Then, I added a File.Delete statement to remove the file before uploading a new one. Since then, it will not upload a file although I have removed the File.Delete statement. This is the error message:</p> <p>Could not find file 'C:\Users\richnval\Documents\My Web Sites\SIR34Golf\App_Data\Index list.csv'.&nbsp; on the line containing this statement: <span style="color:#222222">userData</span> <span style="color:#222222">=</span> <span style="color:#1e7c70"> File</span><span style="color:#222222">.</span><span style="color:#222222">ReadAllLines</span><span style="color:#222222">(</span><span style="color:#222222">dataFile</span><span style="color:#222222">);</span></p> <p>The error is correct, there is no Index list.csv in App_Data.</p> <p>Here is my code and yes, the &quot;File uploaded&quot; line does get displayed:</p> <pre style="background:white; color:black; font-family:Consolas; font-size:10pt"><span style="background:#d7bf49; color:#222222">@</span><span style="color:#4f76ac">using</span> <span style="color:#222222">System</span><span style="color:#222222">.</span><span style="color:#222222">IO</span><span style="color:#222222">;</span> <span style="background:#d7bf49; color:#222222">@{</span> <span style="color:#222222">Layout</span> <span style="color:#222222">=</span> <span style="color:#823125">&quot;~/_SiteLayout.cshtml&quot;</span><span style="color:#222222">;</span> <span style="color:#222222">Page</span><span style="color:#222222">.</span><span style="color:#222222">Title</span> <span style="color:#222222">=</span> <span style="color:#823125">&quot;NCGA Index list Upload&quot;</span><span style="color:#222222">;</span> <span style="color:#4f76ac">var</span> <span style="color:#222222">fileName</span> <span style="color:#222222">=</span> <span style="color:#823125">&quot;&quot;</span><span style="color:#222222">;</span> <span style="color:#4f76ac">var</span> <span style="color:#222222">fileMime</span> <span style="color:#222222">=</span> <span style="color:#823125">&quot;&quot;</span><span style="color:#222222">;</span> <span style="color:#4f76ac">var</span> <span style="color:#222222">dataFile</span> <span style="color:#222222">=</span> <span style="color:#222222">Server</span><span style="color:#222222">.</span><span style="color:#222222">MapPath</span><span style="color:#222222">(</span><span style="color:#823125">&quot;~/App_Data/Index list.csv&quot;</span><span style="color:#222222">);</span> <span style="color:#1e7c70">Array</span> <span style="color:#222222">userData</span> <span style="color:#222222">=</span> <span style="color:#4f76ac">null</span><span style="color:#222222">;</span> <span style="color:#4f76ac">char</span><span style="color:#222222">[]</span> <span style="color:#222222">delimiterChar</span> <span style="color:#222222">=</span> <span style="color:#222222">{</span><span style="color:#823125">','</span><span style="color:#222222">};</span> <span style="color:#4f76ac">int</span> <span style="color:#222222">nr</span><span style="color:#222222">=</span><span style="color:#222222">1</span><span style="color:#222222">;</span> <span style="color:#4f76ac">int</span> <span style="color:#222222">ni</span><span style="color:#222222">=</span><span style="color:#222222">0</span><span style="color:#222222">;</span> <span style="color:#4f76ac">if</span> <span style="color:#222222">(</span><span style="color:#222222">IsPost</span><span style="color:#222222">)</span> <span style="color:#222222">{</span> <span style="color:#4f76ac">var</span> <span style="color:#222222">uploadedFile</span> <span style="color:#222222">=</span> <span style="color:#222222">Request</span><span style="color:#222222">.</span><span style="color:#222222">Files</span><span style="color:#222222">[</span><span style="color:#222222">0</span><span style="color:#222222">];</span> <span style="color:#222222">fileName</span> <span style="color:#222222">=</span> <span style="color:#1e7c70">Path</span><span style="color:#222222">.</span><span style="color:#222222">GetFileName</span><span style="color:#222222">(</span><span style="color:#222222">uploadedFile</span><span style="color:#222222">.</span><span style="color:#222222">FileName</span><span style="color:#222222">);</span> <span style="color:#222222">userData</span> <span style="color:#222222">=</span> <span style="color:#1e7c70">File</span><span style="color:#222222">.</span><span style="color:#222222">ReadAllLines</span><span style="color:#222222">(</span><span style="color:#222222">dataFile</span><span style="color:#222222">);</span> <span style="color:#4f76ac">foreach</span> <span style="color:#222222">(</span><span style="color:#4f76ac">string</span> <span style="color:#222222">dataLine</span> <span style="color:#4f76ac">in</span> <span style="color:#222222">userData</span><span style="color:#222222">)</span> <span style="color:#222222">{</span> <span style="color:#222222">nr</span><span style="color:#222222">&#43;&#43;</span><span style="color:#222222">;</span> <span style="color:#4f76ac">if</span> <span style="color:#222222">(</span><span style="color:#222222">nr</span><span style="color:#222222">&gt;</span><span style="color:#222222">5</span><span style="color:#222222">)</span> <span style="color:#222222">{</span> <span style="color:#4f76ac">foreach</span> <span style="color:#222222">(</span><span style="color:#4f76ac">string</span> <span style="color:#222222">dataItem</span> <span style="color:#4f76ac">in</span> <span style="color:#222222">dataLine</span><span style="color:#222222">.</span><span style="color:#222222">Split</span><span style="color:#222222">(</span><span style="color:#222222">delimiterChar</span><span style="color:#222222">))</span> <span style="color:#222222">{</span> <span style="color:#4f76ac">&lt;</span><span style="color:#823125">p</span><span style="color:#4f76ac">&gt;</span><span style="background:#d7bf49; color:#222222">@</span><span style="color:#222222">dataItem</span><span style="color:#4f76ac">&lt;/</span><span style="color:#823125">p</span><span style="color:#4f76ac">&gt;</span><span style="color:#222222">;</span> <span style="color:#222222">}</span> <span style="color:#222222">}</span> <span style="color:#222222">}</span> <span style="color:#222222">}</span> <span style="background:#d7bf49; color:#222222">}</span> <span style="color:#4f76ac">&lt;</span><span style="color:#823125">!DOCTYPE</span> <span style="color:#cf4820">html</span><span style="color:#4f76ac">&gt;</span> <span style="color:#4f76ac">&lt;</span><span style="color:#823125">html</span><span style="color:#4f76ac">&gt;</span> <span style="color:#4f76ac">&lt;</span><span style="color:#823125">head</span><span style="color:#4f76ac">&gt;</span> <span style="color:#4f76ac">&lt;</span><span style="color:#823125">title</span><span style="color:#4f76ac">&gt;</span>NCGA Index list Upload<span style="color:#4f76ac">&lt;/</span><span style="color:#823125">title</span><span style="color:#4f76ac">&gt;</span> <span style="color:#4f76ac">&lt;/</span><span style="color:#823125">head</span><span style="color:#4f76ac">&gt;</span> <span style="color:#4f76ac">&lt;</span><span style="color:#823125">body</span><span style="color:#4f76ac">&gt;</span> <span style="color:#4f76ac">&lt;</span><span style="color:#823125">h1</span><span style="color:#4f76ac">&gt;</span>Loading NCGA Index list.csv<span style="color:#4f76ac">&lt;/</span><span style="color:#823125">h1</span><span style="color:#4f76ac">&gt;</span> <span style="background:#d7bf49; color:#222222">@</span><span style="color:#1e7c70">FileUpload</span><span style="color:#222222">.</span><span style="color:#222222">GetHtml</span><span style="color:#222222">(</span> <span style="color:#222222">initialNumberOfFiles</span><span style="color:#222222">:</span><span style="color:#222222">1</span><span style="color:#222222">,</span> <span style="color:#222222">allowMoreFilesToBeAdded</span><span style="color:#222222">:</span><span style="color:#4f76ac">false</span><span style="color:#222222">,</span> <span style="color:#222222">includeFormTag</span><span style="color:#222222">:</span><span style="color:#4f76ac">true</span><span style="color:#222222">,</span> <span style="color:#222222">uploadText</span><span style="color:#222222">:</span><span style="color:#823125">&quot;Upload&quot;</span><span style="color:#222222">)</span> <span style="background:#d7bf49; color:#222222">@</span><span style="color:#4f76ac">if</span> <span style="color:#222222">(</span><span style="color:#222222">IsPost</span> <span style="color:#222222">&amp;&amp;</span> <span style="color:#222222">fileName</span> <span style="color:#222222">!=</span> <span style="color:#1e7c70">String</span><span style="color:#222222">.</span><span style="color:#222222">Empty</span><span style="color:#222222">)</span> <span style="color:#222222">{</span> <span style="color:#4f76ac">&lt;</span><span style="color:#823125">span</span><span style="color:#4f76ac">&gt;</span>File uploaded!<span style="color:#4f76ac">&lt;/</span><span style="color:#823125">span</span><span style="color:#4f76ac">&gt;&lt;</span><span style="color:#823125">br</span><span style="color:#4f76ac">/&gt;</span> <span style="color:#222222">}</span> <span style="color:#4f76ac">&lt;/</span><span style="color:#823125">body</span><span style="color:#4f76ac">&gt;</span> <span style="color:#4f76ac">&lt;/</span><span style="color:#823125">html</span><span style="color:#4f76ac">&gt;</span> </pre> 2013-05-21T18:56:37-04:002013-05-21T18:56:37.887-04:00urn:uuid:00000000-0000-0000-0000-000002049373http://forums.iis.net/p/1197778/2049373.aspx/1?Is+it+possible+to+install+a+Windows+service+for+a+Gallery+application+Is it possible to install a Windows service for a Gallery application? <p>My web application needs a back-end Windows Service to function for a scheduling purpose. And I'd like to submit it to Web Gallery.</p> <p>If I get it right, only web application packages are accepted to a Web Gallery.</p> <p>I only see the following options to install a service:</p> <ol> <li>If there is no service installed, the web application can ask a customer to download a MSI installer (is such a behavior legal in Web Gallery?); </li><li>I can ask customers to add a custom feed to Web PI, and install a service from it; </li><li>I can put all the code into a web app and do&nbsp;<a href="http://stackoverflow.com/questions/542804/best-way-to-run-scheduled-tasks">several tricks to get a mediocre emulation of a scheduler</a>&nbsp;in a web app. </li></ol> <p>Is #1 (linking to a MSI file) legal in Web Gallery?</p> <p>Are there any other options?</p> 2013-05-07T10:12:34-04:002013-05-07T10:12:34.32-04:00urn:uuid:00000000-0000-0000-0000-000002048658http://forums.iis.net/p/1197427/2048658.aspx/1?ASP+Trust+level+web+configASP Trust level, web.config <p>Hi, everyone<br> <br> Recently found one of our web servers had ASP NET trust level set to FULL (seems its a default). That makes it vulnerable to ASP Net shell scripts that use cmd.exe and can list all files on the web server.<br> <br> I set the default for trust level to be medium in the global asp net web.config file, but some sites or apps require trust level=high, so some hacker could, if he obtained access to web.config, change the trust level...<br> <br> Is there anything else I can do besides audit changed web.config files?<br> <br> Thanks.</p> 2013-04-30T00:11:44-04:002013-04-30T00:11:44.183-04:00urn:uuid:00000000-0000-0000-0000-000002051161http://forums.iis.net/p/1198914/2051161.aspx/1?How+can+I+increase+the+toolkit+s+link+depth+How can I increase the toolkit's link depth? <p>Hello,</p> <p>The SEO toolkit seems to have a max link depth of 4.</p> <p>Does anyone know how to increase the link depth?</p> <p>TIA,</p> <p>An</p> 2013-05-21T21:14:54-04:002013-05-21T21:14:54.233-04:00urn:uuid:00000000-0000-0000-0000-000002015391http://forums.iis.net/p/1187490/2015391.aspx/1?Deployment+issue+of+a+web+application+with+msdeploy+Deployment issue of a web application with msdeploy <p>I have a web application and I am trying to deploy it on a webserver using MSDeploy.exe (Web Deploy 2)</p> <p>I have tried 4 scenarios:<br> 1. Through VS2010 Publish method with following settings:</p> <blockquote> <p>Publish Method: Web Deploy<br> Service Url: <a href="https://%3c%3cmyservername%3e%3e:8172/MsDeploy.axd">https://&lt;&lt;MyServerName&gt;&gt;:8172/MsDeploy.axd</a><br> Site/application: &lt;&lt;MyWebSiteName&gt;&gt;<br> Allow untrusted: checked<br> Username: &lt;&lt;MyUsername&gt;&gt;<br> Password: &lt;&lt;MyPassword&gt;&gt;<br> This method works just fine. On &lt;&lt;MyServerName&gt;&gt; machine I have Web Management Service running; I have a website &lt;&lt;MyWebSiteName&gt;&gt; and &lt;&lt;MyUserName&gt;&gt; is an IIS Manager for it.</p> </blockquote> <p>2. Through VS2010 Publish method with following settings:</p> <blockquote> <p>Publish Method: Web Deploy<br> Service Url: <a href="https://%3c%3cmyservername%3e%3e:8172/MsDeploy.axd">https://&lt;&lt;MyServerName&gt;&gt;:8172/MsDeploy.axd</a><br> Site/application: &lt;&lt;MyWebSiteName&gt;&gt;/&lt;&lt;MyWebAppName&gt;&gt;<br> Allow untrusted: checked<br> Username: &lt;&lt;MyUsername&gt;&gt;<br> Password: &lt;&lt;MyPassword&gt;&gt;<br> This method works just fine.</p> </blockquote> <p>3. Through MSDeploy.exe command line (within a Powershell script)</p> <blockquote> <p>&#36;Source = &quot;contentPath='....\_PublishedWebsites\MyWebApp'&quot;<br> &#36;Destination = &quot;contentPath=MyWebSiteName,computerName='https://fc-wapps-trial:8172/MsDeploy.axd?Site=WebSiteTest',Username=MyUsername,Password=MyPassword,AuthType=basic,IncludeAcls=False&quot;<br> MSDeploy -verb:sync -source:&#36;Source -dest:&#36;Destination -allowUntrusted<br> This method also works fine.</p> </blockquote> <p>4. Through MSDeploy.exe command line (within a Powershell script)</p> <blockquote> <p>&#36;Source = &quot;contentPath='....\_PublishedWebsites\MyWebApp'&quot;<br> &#36;Destination = &quot;iisApp=MyWebSiteName/MyWebAppName,computerName='https://fc-wapps-trial:8172/MsDeploy.axd?Site=WebSiteTest/MyWebAppName',Username=MyUsername,Password=MyPassword,AuthType=basic,IncludeAcls=False&quot;<br> MSDeploy -verb:sync -source:&#36;Source -dest:&#36;Destination -allowUntrusted</p> </blockquote> <p>This method doesn't work. I am getting the following error.<br> Error Code: ERROR_USER_UNAUTHORIZED<br> More Information: Connected to the destination computer (&quot;MyServerName&quot;) using the Web Management Service, but could not authorize. Make sure that you are using the correct user name and password, that the site you are connecting to exists, and that the credentials represent a user who has permissions to access the site.<br> Error: The remote server returned an error: (401) Unauthorized.</p> <p>I was&nbsp;looking at&nbsp;what is the actuall MSDeploy command that the method 2 uses and I got something like:</p> <blockquote> <p>msdeploy.exe<br> -source:manifest='...\MyWebApp.SourceManifest.xml' <br> -dest:auto,ComputerName='https://MyServerName:8172/MsDeploy.axd?site=WebSiteTest',UserName='MyUsername',Password='MyPassword',IncludeAcls='False',AuthType='Basic' <br> -verb:sync <br> -disableLink:AppPoolExtension <br> -disableLink:ContentExtension <br> -disableLink:CertificateExtension <br> -skip:objectname='dirPath',absolutepath='...\App_Data&#36;' <br> -setParam:kind='ProviderPath',scope='IisApp',match='^...\\PackageTmp&#36;',value=WebSiteTest/WebAppTest <br> -setParam:kind='ProviderPath',scope='setAcl',match='^..\\PackageTmp&#36;',value=WebSiteTest/WebAppTest <br> -allowUntrusted <br> -retryAttempts=2 <br> <br> Now this doesn't seem to be anything close to what I am using in method 4.</p> </blockquote> <p>So my questions are: <br> - What I am doing wrong?<br> - How can I deploy a web application as a website application in IIS7 using MSDeploy.exe command</p> <p>Thanks in advance for your help<br> Iulian</p> 2012-02-24T05:11:09-05:002012-02-24T05:11:09.64-05:00urn:uuid:00000000-0000-0000-0000-000002050743http://forums.iis.net/p/1198657/2050743.aspx/1?Can+t+Run+Classic+ASP+Pages+Outside+of+WWWRootCan't Run Classic ASP Pages Outside of WWWRoot <p>Hi,&nbsp;</p> <p>The title says it all.&nbsp; I can't run classic asp pages outside of WWWRoot.&nbsp; I have Windows 7 and IIS 7 installed.&nbsp; I can access a simple asp page as long as it is in the WWWRoot folder.&nbsp; If I create a virtual directory or application outside of that folder, the browser never connects to the page. I don't get a time out or error in the logs.&nbsp; Nothing is logged in the IIS log about a visit to that page.</p> <p>I compared permissions for my folder to WWWRoot and added IIS_USRS, but that didn't help.</p> <p>Any suggestions?</p> <p>Thanks!</p> 2013-05-16T20:56:04-04:002013-05-16T20:56:04.577-04:00urn:uuid:00000000-0000-0000-0000-000002048768http://forums.iis.net/p/1197455/2048768.aspx/1?Problem+with+FTPS+Window+2008+Server+IIS+7+Problem with FTPS Window 2008 Server IIS 7 <p>I have&nbsp;followed the instructions on&nbsp;your website step by step for</p> <p><a href="http://www.iis.net/learn/publish/using-the-ftp-service/using-ftp-over-ssl-in-iis-7">http://www.iis.net/learn/publish/using-the-ftp-service/using-ftp-over-ssl-in-iis-7</a></p> <p>It is not working&nbsp;for FTP Client (FileZilla), it is showing the following error message (see below)&nbsp;&nbsp;without FTPS is no problem but it&nbsp;needs to be&nbsp;block Plain FTP.</p> <p>Can you advise?</p> <p>Status:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Connecting to xxx.xxx.xxx.xxx:21...</p> <p>Status:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Connection established, waiting for welcome message...</p> <p>Response:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 220 Microsoft FTP Service</p> <p>Command:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AUTH TLS</p> <p>Response:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 234 AUTH command ok. Expecting TLS Negotiation.</p> <p>Status:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Initializing TLS...</p> <p>Status:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Verifying certificate...</p> <p>Command:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; USER NHSFTPS</p> <p>Status:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; TLS/SSL connection established.</p> <p>Response:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 331 Password required for NHSFTPS.</p> <p>Command:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PASS ***********</p> <p>Response:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 230 User logged in.</p> <p>Command:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; OPTS UTF8 ON</p> <p>Response:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 200 OPTS UTF8 command successful - UTF8 encoding now ON.</p> <p>Command:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PBSZ 0</p> <p>Response:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 200 PBSZ command successful.</p> <p>Command:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PROT P</p> <p>Response:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 200 PROT command successful.</p> <p>Status:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Connected</p> <p>Status:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Retrieving directory listing...</p> <p>Command:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PWD</p> <p>Response:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 257 &quot;/&quot; is current directory.</p> <p>Command:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; TYPE I</p> <p>Response:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 200 Type set to I.</p> <p>Command:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PASV</p> <p>Response:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 227 Entering Passive Mode (xxx,xxx,xxx,xxx,201,158).</p> <p>Command:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; LIST</p> <p>Response:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 150 Opening BINARY mode data connection.</p> <p>Error:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Connection timed out</p> <p>Error:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Failed to retrieve directory listing</p> 2013-05-01T11:48:07-04:002013-05-01T11:48:07.577-04:00urn:uuid:00000000-0000-0000-0000-000002051143http://forums.iis.net/p/1198908/2051143.aspx/1?Firewall+Windows+Security+Internet+Explorer+or+any+other+Issue+I+need+to+address+to+install+IIS+7+0Firewall, Windows Security , Internet Explorer or any other Issue I need to address to install IIS 7.0 <p>I have a Windows Server 2008 Enterprise Edition.&nbsp;</p> <p>I am trying to install IIS 7.0 but will not install.</p> <p>Is there any Firewall, Windows Security , Internet Explorer or any other Issue I need to turn off to install IIS 7.0?</p> 2013-05-21T13:00:07-04:002013-05-21T13:00:07.12-04:00urn:uuid:00000000-0000-0000-0000-000002051094http://forums.iis.net/p/1198898/2051094.aspx/1?Session+ExpiredSession Expired <p>Hello,</p> <p>&nbsp;</p> <p>I have a trick situation in one of my company's IIS. It expires the session really quickly and randonly when the Session State is set to In Process or State Server, but it works fine when it is set to SQL Server.</p> <p>Can anyone help me with that? It is a windows server 2008 R2 standard machine.</p> <p>TIA</p> <p>Marcos</p> 2013-05-20T20:37:52-04:002013-05-20T20:37:52.713-04:00urn:uuid:00000000-0000-0000-0000-000002051145http://forums.iis.net/p/1198909/2051145.aspx/1?FTP+and+Virtual+DirectoriesFTP and Virtual Directories <p>Hi There,</p> <p>I have a IIS 7 site running on server 2012. IIS is working great for annonomous FTP connections. However, I want to use user isolation with &quot;User name Directory (disable global virtual directories&quot;</p> <p>I have setup my virtual directory and given it the name &quot;triumphadmin&quot; and pointed this to a physical directory. However when the FTP conncetion comes in i get &quot;530 user cannot login&quot;</p> <p>My question is where is IIS authenticating the &quot;triumphadmin&quot; user with. I read that it was a local account in computer management but no local accounts are being created in here.</p> <p>Any help would be much appreciated.</p> <p>Thanks</p> <p>Dave</p> 2013-05-21T13:41:21-04:002013-05-21T13:41:21.67-04:00urn:uuid:00000000-0000-0000-0000-000002051152http://forums.iis.net/p/1198912/2051152.aspx/1?Auto+Generate+Event+IDAuto Generate Event ID <p><span style="text-decoration:line-through">I have figured out the restarting the publishing point based on the encoder somehow being disconnected.&nbsp; Using EE Pro 4, is there any way to automatically generate an Event ID so that a user won't have to?&nbsp; Having to manually hit the button to autogenerate a new event id seems really error prone.</span></p> <p>It looks like I needed to get to EE Pro 4 SP2.&nbsp; Once I got that installed, I see an encoder option to autoupdate the event id.</p> <p>Wally</p> <p>PS. I'm a media services newb, so expect more dumb questions.</p> 2013-05-21T18:35:47-04:002013-05-21T18:35:47.513-04:00urn:uuid:00000000-0000-0000-0000-000002051151http://forums.iis.net/p/1198911/2051151.aspx/1?+Publishing+point+is+in+use+Reset+it+on+the+server+"Publishing point is in use. Reset it on the server." <p><span style="text-decoration:line-through">I am running IIS 7.5, IIS Media Services 4.0 on the server.&nbsp; On my desktop, I am using Expression Encoder 4 Pro SP1.&nbsp; I am finding that whenever there is any hiccup, the encoder is generating the error &quot;Publishing point is in use. Reset it on the server.&quot;&nbsp; I have found the setting restartOnEncoderReconnect and have placed this within my .isml file.&nbsp; Unfortunately, I am finding that if I stop the encoding server and then attempt to reconnect, I continue to to get the error message &quot;Publishing point is in use. Reset it on the server.&quot;&nbsp; Any thoughts on what else I can do to fix this problem?</span></p> <p><span style="text-decoration:line-through"><br> </span>I found this blog post that explained what to do: <a target="_blank" href="http://blogs.msdn.com/b/expressionencoder/archive/2011/02/02/10124054.aspx"> http://blogs.msdn.com/b/expressionencoder/archive/2011/02/02/10124054.aspx</a><span style="text-decoration:line-through"><br> </span></p> <p>Wally</p> 2013-05-21T18:12:53-04:002013-05-21T18:12:53.247-04:00urn:uuid:00000000-0000-0000-0000-000002050936http://forums.iis.net/p/1198814/2050936.aspx/1?Streaming+to+AndroidStreaming to Android <p>I'm working on setting up the Smooth Streaming services in IIS 7.5.&nbsp; I'm working on getting this setup to run with iOS.&nbsp; What happens with Android?&nbsp; I'm reading that Android 4.0&#43; supports Http Live Streaming that apple has.&nbsp; Is that correct?&nbsp; So, there would be no hope for the Android 2.3, which is still a fairly high percentage, but dropping?</p> <p>Wally</p> 2013-05-17T13:52:51-04:002013-05-17T13:52:51.84-04:00urn:uuid:00000000-0000-0000-0000-000002049679http://forums.iis.net/p/1197883/2049679.aspx/1?Oracle+WebLogicOracle WebLogic <p>Currently I'm using ARR and URL Rewrite Module to access Oracle WebLogic Server without port like <a href="http://orclwl.company.com">http://orclwl.company.com</a> , Actually it's working with some page of the admin page, but some link still have the local address instead of the above public address. How to fix this problem?</p> 2013-05-10T03:02:11-04:002013-05-10T03:02:11.33-04:00urn:uuid:00000000-0000-0000-0000-000002051147http://forums.iis.net/p/1198910/2051147.aspx/1?Directory+virtualDirectory virtual <p>Hello,</p> <p>I am having the following problems, I have a directory of images that is on a different server than this my IIS 7.5, however when trying to access this with the following error:</p> <h1>Server Error in '/' Application.</h1> <hr color="silver" size="1" width="100%"> <h2><i>Configuration Error</i></h2> <p><span face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif " style="font-family:Arial,Helvetica,Geneva,SunSans-Regular,sans-serif"><span face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif " style="font-family:Arial,Helvetica,Geneva,SunSans-Regular,sans-serif"><b>Description: </b>An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. <br> <br> <b>Parser Error Message: </b>An error occurred loading a configuration file: Failed to start monitoring changes to '\\10.100.205.90\logo' because access is denied.<br> <br> <b>Source Error:</b> <br> <br> </span></span></p> <table width="100%" bgcolor="#ffffcc"> <tbody> <tr> <td> <pre>[No relevant source lines]</pre> </td> </tr> </tbody> </table> <p><span face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif " style="font-family:Arial,Helvetica,Geneva,SunSans-Regular,sans-serif"><span face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif " style="font-family:Arial,Helvetica,Geneva,SunSans-Regular,sans-serif"><br> <b>Source File: </b>\\10.10.10.10\logo\web.config<b> Line: </b>0 <br> <br> </span></span></p> <hr color="silver" size="1" width="100%"> <p><span face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif " style="font-family:Arial,Helvetica,Geneva,SunSans-Regular,sans-serif"><b>Version Information:</b> Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.17929</span></p> <p>What can be?????? Anyone ever had this error?????</p> 2013-05-21T15:39:04-04:002013-05-21T15:39:04.813-04:00urn:uuid:00000000-0000-0000-0000-000002051135http://forums.iis.net/p/1198906/2051135.aspx/1?IIS+7+Windows+2008+Issue+in+https+ConfigurationIIS 7 Windows 2008 Issue in https Configuration <p>dear Guy,</p> <p></p> <p>I have been rambling for the solution to configure my website with IIS 7:</p> <p>I just want to configure my sit as follow:</p> <p>ab.mydomain.com should be accessable through: <a href="https://ab.mydomain.com"> https://ab.mydomain.com</a>&nbsp;but when I am trying to configure the host header shown disabled.</p> <p></p> <p>I Have implement this article :</p> <p><a href="http://www.sslshopper.com/article-ssl-host-headers-in-iis-7.html">http://www.sslshopper.com/article-ssl-host-headers-in-iis-7.html</a>&nbsp; It attach the host header but the &nbsp;SSL certificate not selected with the site.</p> <p>I have also use this utilitie but all in van.&nbsp;</p> <p><a href="http://www.simplygoodcode.com/search/label/utilities">http://www.simplygoodcode.com/search/label/utilities</a>&nbsp;</p> <p></p> <p>Please help me how to configure it. has microsfot provide any patch for this bug??????????</p> <p></p> <p></p> 2013-05-21T09:21:44-04:002013-05-21T09:21:44.33-04:00urn:uuid:00000000-0000-0000-0000-000001985572http://forums.iis.net/p/1179077/1985572.aspx/1?Missing+ASP+NET+section+in+Windows+7+Professional+64+bitMissing ASP.NET section in Windows 7 Professional 64 bit <p>I am at a bit of a loss, and could use some help.&nbsp; I am a developer, and am setting up a new development environment.&nbsp; My old and new machine both have Windows 7 Professional, 64 bit.&nbsp; On my new machine, I have enabled IIS.&nbsp; I believe it is running IIS 7.5.&nbsp; After setting up IIS, I open up IIS Manager, and browse to the default website.&nbsp; Under the default website, there is normally an ASP.NET section.&nbsp; It is there on my old machine, but my new machine doesn't have it.&nbsp; The App Pool the website is assigned to is using .NET Framework 2.0.&nbsp; I have changed it to use version 4.0, and I still don't see the ASP.NET section in IIS Manager.&nbsp; I am not sure what I am doing wrong. </p> <p>&nbsp;I am going to try pasting a screen shot of my IIS Manager.&nbsp; As you can see, under the areas there is no section for ASP.NET.&nbsp; On my other machine there is.&nbsp; My understanding is that there is a 32 bit version and a 64 bit version of IIS Manager.&nbsp; I have tried running them both, and it doesn't make a difference.&nbsp; I have tried turning on and off 32 bit support for the app pool, and it doesn't make the ASP.NET section show (my understanding is that this could make a difference in IIS 6).&nbsp; Does anyone know what I am doing wrong?&nbsp; Specifically I am trying to get to the ASP.NET section so I can get to the SMTP Email section so I can set up how email is delivered.&nbsp; I was able to do this on my old machine, but can't on the new one because the whole section is missing.<br> </p> <p><img src="http://forums.iis.net/data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABK8AAAJUCAIAAABc45JTAAAgAElEQVR4nNy9eXQj93XvWf3XzOTNm5c3L5mZk8ROnMyTLFtybOnMTCxZave&#43;yLIUd9y2LMV2LKUtubvVC3cQO1BYC1WoBfu&#43;rwRIAFxAAiR2EgABcCe7W71pbct2RlLsyZvlxfPHr6oAskk2u2Unink&#43;h6dQrCpU3bq/5XvvrSL00F/8xZ23365OT9&#43;DbLbN9HRt85ra9HSbmZnazEx9Zqaey9Xz&#43;Xo&#43;P5/Lzefz90U9l9uR3f&#43;6C&#43;CstqO2GXC9c9nsXCYzm8nMTk1VpqYq6XRlcrKSTlfS6XI6XWKZmChNTBTHx4vj44WxMUB&#43;bCw/NpZLpWiSyVwyOZNMziQT2UQiMzw8GY&#43;nh2IT0aGxcCQZDCUCgRG/f9jnj3t9cY93yOMdcnuG3O4hlyvqckWcrojTGXY4wg5HyO4I2exBmz1otQWttqDVGrTaghZrwGKhMVsCZovfZPabzH6jyWc0eQ1Gr8Ho1Rs8eoNHb3Dr9G6dDuC6a8Gj03v1Br/R6DeaAiYzOGbQYg1ZbWGLNWy1ha22iM2&#43;CauNJcxisW5LyGLZC&#43;AqAmbzXjHtAaPJbzT5DUaf3uDT672Uzk1SboJ04YRTiztQzK5BbYjGqkbMSpVJqTTKFQaZXC&#43;T6aQwJZGSEgkpFhMisVYoxPgClMfXcHkaLg8Z5CKDXDVnUM0ZVA1w7omawwEb3w8cVQdqDkfN4SCDg&#43;CrHxjNIFczOIhsgcsF13U36H2i4XI1XK4G2GeQqx7kqjiDKs6gikN/RLg8BBycx0d5fOx&#43;QHnA&#43;Dw1h6ca4Cr6ufI&#43;LtwzKO0ZlHQPSroHxVvh3ou7d3lQunZE1DUo6uLsClfcBc6HJ&#43;7mSbp5kh6etIcv7RXAfQK4XyAbEMoHRHKOSM4RKzhixaBYOShRcSUqrlS9Bd4WYACyE/y7ke2Ehi/TCO5GzoIK5KhwLyi2IlJg94dyN8QPCLo7ok&#43;AcFsUqFChAQgAbWMiAjljeVjNh1VcWMWVApSDLBIFByCWc8TyAbF8QCQfEMn6RbJ&#43;oaxfCPcLpX1CaZ9A2iuQ9AgkPTyAuJsn7uaKugCDoq5B4eVB4WWO8DJHcAkwwL80wLs4wLvYD&#43;C&#43;0c99ow8weL5v8HxvJ5xzPZxz3Z0MnOseONs1cLab5lwP51wP51zv4Bu93Df6eBf6&#43;BcHBJcHRV1ccTdf2iuQ9QvlA2IFR6IclKq4wG93dEWAmidT82QqHjAOrBwESBUcKTCLnCORD0jkA2L5gFjWLwYGgfsEAGmvQNLLl/Twxd18cTdP1AXgAsuAlivp4ki6B&#43;DuAVnPgLyvX9nXr&#43;rvRwZ6EU6vhtOLcnpRTg/K6UEHepCBbqS/W93fre7rVvV2qXq7lL1dyt5uhh5VX4&#43;qr1fd34v092n6&#43;zScAZQzgA0OYoNcjMvDeHyMJ8R4QpQnQnkSDU&#43;i4UkRHozwZAiPbZVyDV&#43;OfJpQ834TcAGy&#43;wQGgLuvGoRVjAOwsJ6gGJDI&#43;8WyfjHcJ4b7RNJekbRXsOnWX&#43;YKLw8KLw8KLg3yL3H4Fzn8iwP8CwO8C/28N4DzM5xnYFrEIN0iAP0Abge8NwZ4FwZ4Fzid8C9w&#43;Bc4gouDbS4xXKYRXuYKL3NFl3k0XXxRF18M6OaLu/mSbgFNj0DaK4R7RXAfADi8WNYvlveDViCRD0gVHKliEFYOylRcmYorU/HkKnAL&#43;AqEr0AESo1AqREqNUIVKlRhIjUmVmNiRCtBtBINLtXgUpSAUQLGSBlGyrSkXEvJtToFrlMQeiWhV5EGFWlQUwY1ZUR0Jo3OpNGbNHozajBjBgtmBFi1JitusuFmG2G2ExY7YbGTFjtlsZMWB2V16mxOnc2pswNcBgeD3WV0uI3Om9duHHj66&#43;/cfnupubjUXFymWVpudbCwtLKw3MnqwvLq4vLq4grL2uLK2tIq4O3bbwt4gp9/8PO1pdX15TWWteW1tc7lpVX6N83KWscBO3nr1lv4D198q1JaMVMrZmrdTG2YqatW6pqVetNK3bRSt2zkWzbyHRv5jo1830HecZB3HMTPduYDB/GBg/iZgwT81EH&#43;1EHdcVDvO6h3HdQ7Duo2wK67Ydddt&#43;vetOquWnVXrLo1q&#43;6tTPrb&#43;5985/bbidAw4Oa1G5/70889&#43;9wLkJ4kl6vVTWJvV2qMOKwxv9vaL5erAzlXKDSKxWap1AS/y&#43;VWudyqVLYH/HVnmp2USjTgT&#43;zHvVMsbkuDpVCYZ8nn6/l8WyhOT1enp&#43;ey2blsdpYlk5nNZCpAMU5OAsoMrGIsdijG/OhobnR0JpnMJpOZkZEpVhwOxSaGYuPR6Hg0OhaJjEUiY&#43;HwaDicCoVSoVAyGKQJBJKBQCIQSPj9CZ8/4fMP&#43;3zDXm/c6417PCwxtzvmdsdcrigtKZ00Dsc22O1gIepwRB2OmMsVc7nibnfc4xn2eEY8nhGfL&#43;HzJf3&#43;pN8PTmBHwDYMCRafby&#43;MeL004Ht/cwx7PHG3O&#43;5yxZzOIYcjarOFrdaQxRI0mQIGg0&#43;v95CkmyBcWq0DwxwoakMQK4JYVCqzSmVSKIxyuUEm08OwTiqlJBJCJCJEIlwoxIVCrUCA8fkYn4/yeHsBuxs&#43;/wHQ3o1AsHfw3REKt4XYOwIhIRDiAiEuEOB8gZYv0AqEWgH4LcQF7AFFwJgAco8IRYRQhAuEuECo5YOZk1DDFSBcATIoQAYF6kHhvy6qLXA6EagGOuB0MAgQqgeFaq5QzRUhXBHCEyE8sYYn1vAlqECCCaSYENYKYVwE4yIZIZIRYhkhlpNiOSlRdEJ1ImVR7o4OAANUe0cv24J6T8jVhq0g94FiR4wKzSfH8NtBr0C2QY7o5YheptbLEL0M0cnUOpiGglWUlEVJSljkBEAsJ8RyXCzDxTJcJNOKZJgIxoQsUlQgRQUSDZ&#43;BJ0a4YoQrVnNF6kEaxlEFSsCAQDnAV/QDeIp&#43;nryfJ&#43;/jyfu4sj4u3MeFewcZONIelgFJ91bEXf0sku4BSTdH2s2RdnPgHg7cOyjr4yr6ecoBgYojRHgiDV&#43;CCqRaEYyL5YREQUqVJKyiYHUHqm0hYSUpZZAoCLGCEMtxgEiOi&#43;RakUwrlGmFsBaYRQBjAinKl6J8ILoAmyyjGhSqOUL1oAAZFCBcvmaQr&#43;HyUS4P5fEwLlfL4&#43;J8Ls7n4jwOzufgPA7O42i5AxgDOjig4fRrOANtBgc0gxwUwB3EuIMYd1DL5eI8Hs7nEwIBIRASIjEhkpAiKSmSEmKYksgpSbvl6mAluF7WPT413Ed3sQsdrv7gkDRKUqokxEpCTPsDIaKdARfKtEIYE8AdDgBuvUg1KFINCpUcoZIjVA4IlKAJ9PHlfXx5L0/eRzcEGYO8jyfvBXBlLH0szDYMigH&#43;doAWJ6C/l7Nl1BCqOEIVV6zm0v6JcMUIDyBBWO/lSzV8KcqXogIYE8CYUIYJZVqhTCsCyHERaBEKXKwgJApgJYppXzqZWidDdHKmL1JoDArUoEQNStSoxIwqzKjCTGqtSY2b1bgZISwADWlFSRtK2TCdDdPZtXq7Vu/A9Q7c4CSMTtLoJI0u0uSmTG6d2aOzePQWt97s0Vs8eqvXYPUarD6jzW&#43;0&#43;00On8nhN9MEzI6A2Rm0OINWV8jqClldQas7ZHOH7J6QzR22uW9fv3l4/4G3b91erDcX59sszbeW5ltLDZrlRmu52VpuLtC0FlZai5tYWAKsLiy9dfMWn8v74M5PVxeWVheWVheXaRaWlUri1Okzu6BQEFuP3Fq8feMm/vK3bhdzizpkWYes6pBVPbKhR67okTcNyA0jcsOIvGVE3jIi7xo17xmRO0bkp0bkAyPygRHBL/ewB8cv92y75gMj8lMj8r4Jed&#43;kedekeduEvmVCb5rQmyb0ugm9ZkSvGNF1I7puQFcN6M302Kmv/dV7b78zEU8CytN5Uot/6S&#43;/An3w3nuswtkLbHqwCnRgR96vkc8DEdgqlxfK5YVKZWF2dnFubmlubqlaXd6OpS2AjXdgcTN72WYLCyyz" alt=""> <br> </p> 2011-06-14T03:53:58-04:002011-06-14T03:53:58.237-04:00urn:uuid:00000000-0000-0000-0000-000002051134http://forums.iis.net/p/1198905/2051134.aspx/1?IIS+Express+installed+On+Windows+Professional+and+XP+virtual+but+Hidden+from+view+IIS Express installed On Windows Professional and XP virtual but Hidden from view? <p>I've install IIS Express on both XP vitual and Windows 7 Professional but cannot find them in Services. They show as installed in the Progam Manger. Please help.</p> 2013-05-21T09:09:31-04:002013-05-21T09:09:31.89-04:00