I am basically trying to do the same thing as this question,
create a new application within a folder so it could be accessed as follows.
* http://www.domain.com/ < Main App
* http://www.domain.com/newapp < New App
The problem is that newapp is reading the web.config from the Main App, which is causing errors because it doesn't have ...
I am trying to run a website locally in Windows 7 under IIS 7. I have the AppPool configured to use "Classic" mode, but connecting to a MySQL DB that requires SSL fails. If I change the identity to my user account it works perfectly. It fails when using the default "ApplicationPoolIdentity" account. Is there something I'm missing somewhe...
I have written an HttpModule that adds a response filter. The filter is capturing page output and storing it in a session variable.
I am able to access HttpContext.Current.Session in my HttpModule.
The HttpModule is handling the PostAcquireRequestState event.
I am still able to access HttpContext.Current.Session in the PostAcquireReque...
Is there any method I could use in my web application to view the locale value used by IIS 6.0 on Windows 2003 Server? I call GetLocale which returns me the LOCALE_SYSTEM_DEFAULT, but I would like to confirm that even IIS is using the same locale.
The reason I want to view IIS locale value is, two web servers having the same LOCALE_SYST...
We have an ASP (not ASP.NET) application running on Windows 2003 server. One of the functions of the application is to generate reports using Crystal Report 9.
It has been working without any problem with .NET Framework 2.0 and now it is required to install .NET Framework 3.5 SP1 on the server but after we installed the 3.5 SP1, every t...
Hi.
There is a problem that bother me for some time.
I have an asp.net mvc that uses NHibernate for modeling the database. The infrastructure is the following:
Windows 2008 R2 for all virtual machines.
IIS 7.5 is working on one virtual machine.
Sql Server 2008 is working on another virtual machine. We have couple of databases, two that s...
Hi,
I have a winform application calling web services hosted in IIS, by default, the client app will use Kerberose for authentication to IIS, and it failed for some reasons。 But the same app works fine at another PC(with different user login), and I found it is using NTLM by checking the IIS server event log.
is there anyway we can cha...
Hopefully a simple question although one I have found impossible to answer myself using the Googles!
I have a website on IIS with the URL http://www.contoso.com/ which points to C:\www\public\
There has been a forced directory restructure so now all of the data (Default.aspx, Product.aspx, etc.) that originally resided in C:\www\public...
I just moved my website (asp.net) to the live environment. I realized they are running IIS 6 so all my nice and clean url rewriting doesn't work anymore. I was trying to implement URL rewriting using the .htaccess file.
I want to rewrite:
www.amicobio.co.uk/Menu.aspx to www.amicobio.co.uk/Food-Menu
So in .htaccess I set:
CaseInsensit...
Hi,
I have been using an open source WebDAV framework named "Sphorium" for quite some time to talk to my data repository.. I have been using Cassini web server to host my WebDAV server module and everything was working just fine if I map the server as a web folder in my system. However, i found that Cassini web server does not support "h...
Login failed for user ''. The user is not associated with a trusted SQL Server connection.
When I try to use IIS locally instead of Cassini I get this error.
The ASP.NET MVC 1.0 site is running on WinXP.
The database is local and has SQL Server and Windows Authentification mode enabled.
The website runs OK using Cassini, with the sam...
My background is not with web applications so this problem is hard for me to explain easily. First I'll try to describe the setup. Client setup:-Only browser that is effected is IE 6-8 (Firefox, chrome, opera, and safari all work fine)
-A user will try to access our web application from a company laptop that is not connected to our netwo...
When i complete gzip with IIS, and i restart the server the problem came: that the "web
service extension" point to "c:\windows\system32\inetsrv\gzip.dll" has been auto deleted!
so awesome, but why? And i google it, but find nothing about it, have anyone even meet this
questiong?
Please help me, thanks a lot!
...
Hi there,
I'm trying to use the PHP exec() or system() (or any other similar function) to run a batch file, but I can't seem to get these to return anything.
The simplest example I've seen is this, which outputs nothing:
<?php
echo system('dir');
?>
The script is running on a windows XP machine on IIS with PHP installed and I've...
I'm encountering strange permission issues with Perforce when running it from a NAnt script - but only if that NAnt script is kicked off from a PHP script. Hopefully someone can enlighten me as to what's going on!
I've got a PHP script running in an application pool that is set up to use the "build.user" user account. The script curre...
In an ISAPI Filter, how can I retrieve metabase properties for the current application?
I know I can get the metabase path by retrieving the server variable APPL_MD_PATH.
How can I get, for example, the PutReadSize property, at runtime, within an ISAPI Filter?
...
Is there a way, inside an ISAPI Filter, to determine the virtual path for the IIS application or virtual directory?
It's basically the same question as IIS Root Path vs Path of virtual directory, but rather than within an ASP.NET application, I want this from within an ISAPI filter.
Does the value of the server variable APPL_MD_PATH a...
Hi,
I have a server/client architecture where the client hits the ASP.NET server's service at a certain host name, IP address, and port. Without thinking, I logged on to the server and set up permanent HTTP301 redirection through IIS from that service to another URL that the machine handles via IIS (same IP and port), mistakenly thinkin...
Hi guys
Just wondering if its possible to get the status of a request from another request?
To help provide some context, I want to use ajax to upload some files to the server. When the upload is started I want triggered another ajax request that checks to see how much of the file has been uploaded (or in other words how big was the o...
I'm building my first ASP.NET MVC website, and I'm trying to figure out how to implement a 404 page.
Should I create a controller called "404Controller?" If so, how do I then register this Controller with IIS so that it redirects 404s to that page? Also, in a situation where something is not found (in the database, for example) by some...