<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Search results matching tag 'IIS'</title><link>http://forums.asp.net/search/SearchResults.aspx?q=&amp;tag=IIS&amp;orTags=0&amp;o=DateDescending</link><description>Search results matching tag 'IIS'</description><dc:language>en-US</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Re: how to install IIS without xp cd</title><link>http://forums.asp.net/thread/3580365.aspx</link><pubDate>Wed, 23 Dec 2009 05:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3580365</guid><dc:creator>Mind Bird Solutions</dc:creator><description>&lt;p&gt;hello&lt;/p&gt;&lt;p&gt;just use I386 folder or copy I386 folder from windows xp&lt;br /&gt;&lt;br /&gt;OR&lt;/p&gt;&lt;p&gt;download&lt;/p&gt;&lt;p&gt;http://msdn.microsoft.com/en-us/magazine/cc188791.aspx&lt;br /&gt;&lt;br /&gt;http://support.microsoft.com/kb/893391&lt;/p&gt;&lt;p&gt;then go to&lt;/p&gt;&lt;p&gt;control panel---&amp;gt;add remove folder--&amp;gt;add remove windows component--&amp;gt;then check IIS&lt;/p&gt;&lt;p&gt;use i386 folder&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Session Values getting lost</title><link>http://forums.asp.net/thread/3547562.aspx</link><pubDate>Fri, 04 Dec 2009 05:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3547562</guid><dc:creator>ashleyjohn84</dc:creator><description>&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;div&gt;We are facing a strange issue with our web application.The session values are getting lost .This happens only in our UAT server.The application works fine in development and test servers.But when it comes to UAT the session values are not persisting. we are using inProc mode for the session.And also in UAT access is via https while in test server and dev server it is http only.&lt;/div&gt;</description></item><item><title>IIS 7 stop responding</title><link>http://forums.asp.net/thread/3545352.aspx</link><pubDate>Thu, 03 Dec 2009 05:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3545352</guid><dc:creator>frankjperez</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;I&amp;#39;m having problems with my WCF site. In this sites, I&amp;#39;ve been using WCF REST Services, and once in a week (sometimes sooner, sometimes later), the IIS suddenly stops responding. The response for all requests is a 401 error&lt;br /&gt;&lt;/p&gt;&lt;p style="color:red;"&gt;401 - Unauthorized: Access is denied due to invalid credentials&lt;/p&gt;&lt;p&gt;I&amp;#39;m not using any kind of authentication rule in this site. I tried to active the IIS Request Filter, but the action of activating the filter solves the error. An IISRESET also solves the error. The windows logs doesn&amp;#39;t report any kind of error, and the IIS logs looks under normal activity (I don&amp;#39;t think this could be a DOS attack)&lt;/p&gt;&lt;p&gt;I don&amp;#39;t know where else to look for. Any help would be really appreciated&lt;/p&gt;&lt;p&gt;Thanks&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Problem with ASP.net HttpHandler + Reflection + Application Pool Recycling in IIS (6 and 7)</title><link>http://forums.asp.net/thread/3541404.aspx</link><pubDate>Tue, 01 Dec 2009 05:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3541404</guid><dc:creator>gahorn</dc:creator><description>&lt;p&gt;I have a problem with an ASP.net HttpHandler that&amp;nbsp;needs to dynamically load an assembly.&lt;/p&gt;
&lt;p&gt;The following handler tries to find a subclass of the (customly defined) class ServiceBase according to a specified GET parameter.&lt;/p&gt;&lt;pre class="c-sharp" name="code"&gt;public class ServiceHttpHandler : IHttpHandler, IRequiresSessionState
{
    public void ProcessRequest(HttpContext context)
    {
        //get service name
        string serviceName = context.Request.Params[&amp;quot;serviceName&amp;quot;];

        //try to find class with service implementation
        var types = from a in AppDomain.CurrentDomain.GetAssemblies()
                    from t in a.GetTypes()
                    select t;
        var requiredBaseType = types.FirstOrDefault(t =&amp;gt; t.Name == serviceName + &amp;quot;Base&amp;quot; &amp;amp;&amp;amp; t.BaseType == typeof(ServiceBase));
        var serviceImplementations = types.Where(t =&amp;gt; !t.IsAbstract &amp;amp;&amp;amp; t.BaseType == requiredBaseType).ToArray();
        if (serviceImplementations.Length == 0)
            throw new InvalidOperationException(string.Format(&amp;quot;Missing service implementation for {0}.&amp;quot;, serviceName));
        if (serviceImplementations.Length &amp;gt; 1)
            throw new InvalidOperationException(string.Format(&amp;quot;More than one service implementation found for {0}.&amp;quot;, serviceName));

        //create service implementation instance and execute operation
        ServiceBase svc = (ServiceBase)Activator.CreateInstance(serviceImplementations[0]); //!!! the _cast_ in this line causes a problem after app pool recycling !!!
        svc.ExecuteOperation(...);
    }
}&lt;/pre&gt;
&lt;p&gt;The abstract base class ServiceBase resides in its own assembly which is referenced by the assembly containing the HTTP handler and&amp;nbsp;the class(es) derived of ServiceBase:&lt;/p&gt;&lt;pre class="c-sharp" name="code"&gt;public abstract class ServiceBase
{
    public void ExecuteOperation(...)
    {
        ExecuteOperationInternal(...);
    }

    protected abstract void ExecuteOperationInternal(...);
}
&lt;/pre&gt;
&lt;p&gt;When&amp;nbsp;hosting this in IIS (6 or 7 - same problem with both versions) everything works&amp;nbsp;fine until the application pool assigned to the web application is recycled for the first time (either manually or automatically after the specified interval). After this every request to the&amp;nbsp;handler fails with an InvalidCast&amp;nbsp;exception &amp;quot;Unable to cast object of type &amp;#39;System.Object&amp;#39; to type &amp;#39;&amp;lt;MyCustomNamespace&amp;gt;.ServiceBase&amp;#39;.&amp;quot; thrown at the line marked above.&lt;/p&gt;
&lt;p&gt;This&amp;nbsp;maybe means that after the recycling of the worker process only the first assembly with&amp;nbsp;the actual handler implementation&amp;nbsp;is loaded and&amp;nbsp;the second assembly with the implementation of ServiceBase will not be loaded (correctly)&amp;nbsp;anymore.&lt;/p&gt;
&lt;p&gt;After the problem occurred, the application needs to be redeployed(!) in order to be put to work again. Even restarting IIS etc. does not help in this case.&lt;/p&gt;
&lt;p&gt;Can anyone help me here?&lt;/p&gt;</description></item><item><title>Re: Email sitting at C:\Inetpub\mailroot\Queue</title><link>http://forums.asp.net/thread/3539602.aspx</link><pubDate>Mon, 30 Nov 2009 05:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3539602</guid><dc:creator>elitesky</dc:creator><description>&lt;p&gt;&amp;nbsp;Wow thanks man! I am now able to send using my gmail acct within Visual Basic to any destination email!! :D&lt;/p&gt;&lt;p&gt;Now, the next thing to figure out is port of smtp.yahoo.com &amp;nbsp;so I can also &amp;nbsp;send from my yahoo acct :D&lt;/p&gt;&lt;p&gt;thanks again!&lt;/p&gt;</description></item><item><title>Windows 7 IIS Different to Vista?</title><link>http://forums.asp.net/thread/3539495.aspx</link><pubDate>Mon, 30 Nov 2009 05:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3539495</guid><dc:creator>Gimbal5401</dc:creator><description>&lt;p&gt;I have a pre-compiled site that&amp;nbsp;runs locally on several laptops.&lt;/p&gt;
&lt;p&gt;Using Vista, all is well and everything runs as expected.&lt;/p&gt;
&lt;p&gt;We have, however, just been given 10 new laptops to install the site on and they are Windows7.&lt;/p&gt;
&lt;p&gt;This seems to be a problem. all i get is the dreaded &amp;#39;the page has not been pre-compiled&amp;#39; message.&lt;/p&gt;
&lt;p&gt;The code/files etc are identical to the ones on the vista machines and i&amp;#39;ve checked the IIS settings and all is the same there. I&amp;#39;ve checked the permissions on the folders and they are all the same.&lt;/p&gt;
&lt;p&gt;Does anyone have any suggestions as to what else i could check?&lt;/p&gt;
&lt;p&gt;My boss is breathing down my neck to get these new laptops up and running as soon as possible and i&amp;#39;m all out of ideas.&lt;/p&gt;
&lt;p&gt;Any help is appreciated.&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Deleting IIS Log files</title><link>http://forums.asp.net/thread/3519474.aspx</link><pubDate>Wed, 18 Nov 2009 05:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3519474</guid><dc:creator>iGulfam</dc:creator><description>&lt;p&gt;Is is ok to delete all files in IIS Log folder?&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Caching MVC Routes Using IIS 7</title><link>http://forums.asp.net/thread/3515871.aspx</link><pubDate>Mon, 16 Nov 2009 05:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3515871</guid><dc:creator>kengineer</dc:creator><description>&lt;p&gt;We&amp;#39;re trying to add caching to our MVC application using the IIS 7 Caching Module.&amp;nbsp; However, the problem that we&amp;#39;re running into is that the IIS 7 Caching module asks that you provide a file extension when you register a new cache rule.&amp;nbsp; Since this is MVC, there is not file extension, just routes.&amp;nbsp; Does anyone know if it is possible to use IIS 7 caching for MVC?&amp;nbsp; We realize we can use the caching features built into Asp.Net, but we curently would prefer to control the caching at the web server.&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Re: Can I create a new website in IIS with a .NET web setup project?</title><link>http://forums.asp.net/thread/3508996.aspx</link><pubDate>Thu, 12 Nov 2009 05:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3508996</guid><dc:creator>daveblack</dc:creator><description>&lt;p&gt;Hi Benson,&lt;/p&gt;
&lt;p&gt;regarding post at: &lt;a href="http://forums.asp.net/p/1154573/1900398.aspx"&gt;http://forums.asp.net/p/1154573/1900398.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I&amp;nbsp;found your post helpful in the ASP.NET Forum but the link you provided &amp;nbsp;to &amp;quot;create a Website in IIS&amp;quot; is broken.&amp;nbsp; I can&amp;#39;t find the appropriate info anywhere.&amp;nbsp; Could you please redirect me to the updated link or resource?&lt;/p&gt;
&lt;p&gt;Greatly appreciated &lt;img title="Smile" border="0" alt="Smile" src="http://forums.asp.net/tiny_mce/jscripts/tiny_mce/plugins/emotions/img/smiley-smile.gif" /&gt;&lt;/p&gt;</description></item><item><title>Re: How to create subdomain web site using VS2008</title><link>http://forums.asp.net/thread/3504825.aspx</link><pubDate>Tue, 10 Nov 2009 05:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3504825</guid><dc:creator>Critters</dc:creator><description>&lt;p&gt;As was mentioned, you can use two separate projects for your domain and your admin domain. Once the projects are completed you need to create two different websites on your web server and have one configured to direct users to one project, and the other configured to direct users to the other.&amp;nbsp;&lt;/p&gt;</description></item></channel></rss>