iis

Lightweight servlet engine for serving java application via IIS

I have an old legacy java web application that I want to deploy on the same server as my asp.net-applications (running on IIS 7). And I need to have all applications running on port 80, so I can't just install two web servers on different ports. The java-application is really simple, just a couple of serverlets (no JSP) with functional...

Developing a rich internet application

Hello, I have been a desktop developer for a few years mostly doing object oriented stuff. I am trying to branch out into web development, and as a hobby project trying to put a web application together. I have been reading quite alot of information, but I still can't seem to decide on the path to take and would really like some advice....

PHP error_log: Won't write to specified file

...

wcf msmq binding in iis 6.0

Hosting env : Windows 2003 server IIS : 6.0 Dev env : Windows XP IIS : 5.1 Scenario: Client will be pushing some message into MSMQ and WCF service will be the one keeping an eye on MSMQ. Once the message is pulled from MSMQ WCF service will process and then put the data/message on to some other MSMQ. We are thinking of creating a WCF...

SSI commands not working is for shtml files in iis

the following code should show either the port or servername not both i always get both no matter what ? <!--#if expr="${SERVER_PORT} = 80" --> <!--#echo var="SERVER_PORT"--> <!--#else --> <!--#echo var="SERVER_NAME"--> <!--#endif --> i have also tried the follwoing with no joy either !! <!--#if expr="${SERVER_PORT} = '8...

URL Rewriting/Redirects with Querystring?

We have a situation where I have a bunch of urls with query params that are used to bascially redirect to various sites, kind of like a short URL or index. Ex: www.mysite.com/abc?x=123 which redirects to www.google.com www.mysite.com/abc?x=456 which redirects to www.yahoo.com and so on... The issue is that there isn't an actual pag...

In WiX how can I select an IIS website by name?

What I would like to do is show the installer user a list of the websites on their server and allow them to choose one (using the method described here: http://www.cmcrossroads.com/content/view/13160/120/, which now seems broken see here for the core code). The installer would then create a virtual directory in the chosen website. Howev...

how to set permissions for sql database?

I'm trying to host an asp.net website using iis 5.1 on my computer using xp pro. I'm using windows authentication in iis. Folder permissions for the site are set to allow authenticated users. Impersenation has been set to true in the web.config file. The website uses a local database which works just fine when accessed through VWD expr...

HTTPModule for static files sometimes fails to run on IIS 6

I have and HTTP module that cleans, compresses and minifies CSS, JS, and HTML files based on their content type header. It works great in my staging environment and localhost (ISS7, classic pipeline mode). On IIS 6 (production), it is not reliable. Sporadically, this static files stop being processed by asp.net and appear to be reverting...

FTP cannot access virtual folder

I've created a virtual folder for a folder residing at C:\Documents and Settings\..\Data Remote users are able to see the base folder of the FTP site, but are unable to see the Virtual folder. Is sharing a folder in the path forbidden? -zeekial ...

Blank .net file generating "Illegal characters in path" error

I have a completely blank ".aspx" file residing on an IIS6 web server. The server has .net 3.5 installed. When executed, this file generates an "Illegal characters in path" error. A full stack trace of this error is available here. The problem can be temporarily cured by IISReset. However, once any site on this server starts exhibit...

Integrated security in connection string.

I just tried to move one of WCF service to windows authentication. using this connection string <add name="MembershipConnection" connectionString="Data Source=DBADDRESS ;Initial Catalog=aspNetMembership;Persist Security Info=True;Integrated Security=SSPI;"/> WCF service is hosted in IIS (2003) and the user I have setup under 'Directory...

View not found exception when runnig an ASP.NET MVC site from a network share

I'm getting a View not found exception when my ASP.NET MVC site is configured with is home directory pointing to a network share in IIS. The weird thing is that this error appears intermittently, sometimes the view loads fine and others the same view fails. I've tested this in IIS 6 and 7, both have the same problem. I also have other...

Multiple SSL certificates to access one ASP.NET application in IIS

Hi, I have an ASP.NET application that's currently accessible via a single domain name, with an SSL certificate. We'd like to be able to access the same application via a second domain name. The non-SSL part is easy, just set up a second host header value for the website in IIS. We know we'll need a second SSL certificate for the second...

Using IIS as a trusted proxy (for Vivismo Velocity)

Hi, I've got the following setup: IE7 on the desktop in a corporate environment, capable of Kerberos/NTLM authentication IIS6 with integrated windows authentication (Kerberos/NTLM) enabled Enfold Proxy (basically, URL-rewriting/proxying) plugin in IIS enabled, proxies to a Python web application (using Paste and WSGI) This setup pro...

How To start/stop IIS 6.0/7.0 remotely using PowerShell Scripts ?

I have two servers Server A and Server B i want to Stop server A from Server B remotely using powershell script Can anybody help me on this its urgent. Thank you in advance ...

Can't browse/open .aspx pages

I'm having this problem on a new cruisecontrol.net install running on Windows Server 2003 where I cannot browse to http://localhost/ccnet/default.aspx. I can, however, browse/open .html files, just not .aspx pages. The errors I get when trying to access .aspx pages are: In IE: "Internet Explorer cannot display the web page". ...

Flex - Passing request data with URL fragments

Hi, I'm passing the following parameter as an url fragment to flex. (#groupID=2385) This works great on the development box, but when I put it on the production server.. nothing. Do you think this is a server configuration issue. I presume that flex is talking to the javascript file 'AC_OETags.js' to make this all happen. Any pointer...

Get UserName even if windows authentication fails

Hi, Below is the scenario for a virtual directory following are the setting in IIS Enable Anonymous Access is DISABLED (check box is unchecked). Integrated Windows Authentication is DISABLED (check box is unchecked) Basic authentication is ENABLED (checkbox is selected) In the web.config of the webapplication (for the same virt...

Debugging an existing ASP.NET application in VS 2008 and IIS

Hi! I'm an asp.net newbie. I have inherited a base of asp.net mvc code and in order to help myself orient better in the heaping pile of source in front of me I'd like to step through it in a debugger. However, being the microsoft platform newbie I am, I don't know how to go about this. Our application serves content under many different...