I am not certain this is the correct forum for my question, but it is probably solvable by using an aspx file.
The problem is that I have an IIS server that has a virtual directory that is referenced via an UNC, on the same intranet.
When I have Windows Integrated Authentication turned on, the application does authenticate me, as I can...
I needed to run a development server for our Classic ASP intranet application on a Windows 7 machine at home, and managed to install it with no problems, except that session data does not seem to store on IE8 browsers, but works fine on other browsers.
If I write a simple script just to see the session ID and see what happens when I ref...
My application is a dotnet 4 hybrid - MVC in some areas, web forms in others. This application was recently upgraded to dotnet 4 and includes a lot of older code and some mismatched parts. Unfortunately it includes a telerik component that requires me to run the Application pool in classic mode.
In order to fix this (in IIS7) I have to ...
Our website has been using IIS6 for a long time. We test on IE8, Firefox, and Chrome. All browsers worked fine.
We recently did an upgrade to IIS7, and Chrome and IE8 continue to work normally, but Firefox appears to be unable to get the ASP session cookie. As a result, when our code checks the Session[] object, we see nothing, we th...
Hi,
I am trying to use URL rewriting to convert a URL like http://localhost/Pine/Default/ABCD/ to http://localhost/Pine/Default.aspx?Code=ABCD
I am using Intelligencia.UrlRewriter and it is working fine. But since I have a Silverlight application, when the .xap file is loaded it tries to load from .../Default/ABCD instead of /Pine/
I f...
I have an installer that installs and sets up an intranet web site 'ABC' under the Default Web Site. The ABC site directory is set up to have anonymous access enabled and Windows authentication disabled, so all the pages under the site inherit that access behavior. However, one page that lets users logon with Windows authentication has t...
Here's the deal, I had my website configured as Virtual Directory of my Default Web Site in IIS 7. I could open it in VS.NET 2008 (File > Open > Website) and work with it.
Now I got rid of the Virtual Directory, and created a new website in IIS (localhost:82). Ever since I've done that, I CANNOT open that site in VS.NET. It gives me
V...
I am moving and old asmx webservice to a new server with IIS7.
This webservice basically sends a big dataset (10mb+) to a winform application.
The old solution was implemented using a custom soap extension which compressed the content before sending the stream to the client. The client, of course, implemented the same custom soap extensi...
I know that IIS 7.0 you have an option where you can say load user profile for NETWORKSERVICE or some other custom domain account, but with IIS 6.0 no such option exists. How can thisb e achieved?
...
I have an application where users are allowed to upload images to the server. Our Web Server is a windows 2008 server and we have a site (images.mysite.com) that points to a shared drive on a unix box.
The code used to do the uploading is C# 3.5.
The system currently supports a workflow where after a threshold is met a new subfolder c...
I was getting 404 errors for some long URLs on a website I'm developing. After a bit of digging I discovered that this occurs when the length of certain aspects of the URL exceed configurable limits in IIS7. In this case the maxQueryString attribute of the requestLimits property needed to be increased in the web.config
<system.webServer...
IIS 7.0 (Shared Hosting)
ASP.NET 2.0 Integrated Pipeline mode
MVC 1.0
I get a 404 on every url except /default.aspx.
I have this in my web.config:
<system.webServer>
<defaultDocument enabled="true">
<files>
<clear />
<add value="Default.aspx" />
</files>
</defaultDocument>
<directoryBrowse enabled="false" />
<val...
Ideas to troubleshoot 404 errors when reverting from Classic mode to integrated pipeline on IIS 7?
...
I've used Procmon to identify that NT AUTHORITY\NETWORK SERVICE is being denied access to certain files on my local web server. Occasionally this happens on my compressed css and js files (static.min.js, static.min.css) and at the moment it is happening with newly added image files. I have confirmed through right-clicking on the files, c...
hi i am comletly new to iis and asp.net i am trying to setup bugNET on a godaddy server. i created a virtual directory and once i tried to launch the site i get this error:
Parser Error Message: It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level. This error can be caused by a v...
I have moved this question to Server Fault where it is probably more appropriator.
I have a classic ASP website that is crashing in IIS7.
It is crashing because IIS doesn't allow file uploads greater than a certain size. I know this because files below about 200k work fine.
I removed the Status Code 500 error in IIS but I still don't ge...
I have converted a php to asp.net mvc and have it hosted with the Rackspace cloud. All works great apart from some php links are still linked from other sites and within search engines. My question is what do I need to add to my web.config to force php sites to go through the .net engine?
These links work as expected as I can catch the ...
First off, I'd like to apologise for the ludicrous title. I'm not trying to sound cool or clever by using the word 'bidirectional', I just genuinely couldn't think of another way to describe it. Promise.
On to my problem. I have the following in the <system.webserver>/<rewrite>/<rules> section of my Web.config.
<!-- Who We Are -->
<rul...
I am getting the following warnings on the Event Log for a Asp.Net WebSite running on IIS 7.
Exception information:
Exception type: HttpException
Exception message: Server cannot append header after HTTP headers have been sent.
at System.Web.Hosting.ISAPIWorkerRequest.SendUnknownResponseHeader(String name, String value)
...
Our code relies on checking the Context.User.Identity value in the Global.asax Application_AuthenticateRequest(...) method to retrieve some information about the logged in user. This works fine in classic mode but when I flip IIS to use the Integrated Pipeline "Context.User" comes back as null, but only intermittently. Any ideas why?
...