iis

IIS SMTP server (Installed on local server) in parallel to Google Apps

I am currently using free version of Google Apps for hosting my email.It works great for my official mails my email on Google is [email protected]. In addition I'm sending out high volume mails (registrations, forgotten passwords, newsletters etc) from the website (www.mydomain.com) using IIS SMTP installed on my windows machine. T...

Frame Redirect to .Net site from a sub domain hosted on Linux host SEO hit in 1and1?

My host : 1and1.com My setup : I have my main domain and a sub domain hosted on the Linux host. What I need : Sub domain (currently on Linux host) should be pointed to that of a .Net site hosted on MS Business hosting on 1and1. What is the best way of achieving it? What I did so far : Used Frame redirect (from Sub domain to .Net site)...

Intermittent issue - IIS offering to donwload ASPX file instead of executing

We're getting an intermittent problem with the homepage of our site when IIS will suddenly start offering to download the ASPX file instead of executing it. It happens about once a month, on a random basis. If I open the file in Notepad and re-save it (without making a single change to the code), IIS starts executing the script as normal...

Cassini vs IIS Authentication Issue

Hi All, I have a C# webservice in .net 4.0. The webservice will create a file on a UNC path. If I let the Cassini web server in visual studio do the authentication it works fine. But if I change the application to use IIS (Windows 7) then the file doesn't get created but no error is reported. If I change the location of the generate...

Is there a way to use WCF to redirect all HTTP requests on a certain port

I need to redirect all requests on port 80 of an application server to a web server. I'm trying to avoid the need to install IIS and instead use WCF to do the job. It looks like an operation such as the one below is suitable but one problem I've got is if a URL of the form http://mydomain.com/ is used then WCF will present a page about ...

How can I make an upload widget in JavaScript with upload progress that will post a file to an IIS server?

I need to make a upload widget in JavaScript with upload progress that will post file to a IIS server, any suggestions guidelines or documentation? ...

Does processModel/serverErrorMessageFile work when accidentally mixing ASP.NET versions in IIS6?

I've tried setting serverErrorMessageFile to a path relative to machine.config, and to an absolute path, but when accessing an app on our IIS6 server that shares a pool with another ASP.NET version, we still get the big, ugly, red, default Server Application Unavailable message. Since one of our ASP.NET apps recently (and mysteriously) ...

Setting custom header values in an IIS ISAPI filter

I have an ISAPI filter that I am using to do URL rewriting for my CMS. I am processing SF_NOTIFY_PREPROC_HEADERS notifications, and trying to do this: DWORD ProcessHeader(HTTP_FILTER_CONTEXT *con, HTTP_FILTER_PREPROC_HEADERS *head) { head->SetHeader(con, "test1", "aaa"); con->AddResponseHeaders(con, "test2:bbb\r\n", 0); retu...

1 application, different domains: how to preserve sessions on ASP.NET?

Hi, I have an application with different sections. Each section is accessed through a domain. Ex.: www.section1.com, www.section2.com, www.section3.com. I need to preserve the session when the user navigates from one to another URL. The application is the same in IIS. How to accomplish that? Thanks. ...

what is the diffence between WAS and IIS?

Is WAS distinct from IIS? How is WAS better than IIS? ...

IIS 6.0: what is the WMI equivalent of "Convert Folder To Application"?

Basically, imagine you need to automate these steps: Open Internet Information Services. Find the web site, find the folder, right click the folder and select properties. Click the Directory folder. Under Applications settings, click the Create button. The application is now created. Click OK to finish. (click for a pictoral walk...

Is there any way to filter certain things in pages served by IIS?

Hello, This is my first time posting here so please keep that in mind... I'll try to be short and get right to defining the problem. We have an ASP.NET 2 application (eCommerce package) running on IIS (Windows Server 2003). The main site's page(s) are using plain HTTP (no SSL), but the whole checkout process and the shopping cart page ...

How to check whether your code environment on Windows or on Linux or other OS

hi, right now, i code custom wordpress theme and testing it in xampp windows XP on apache server. But as long as i concern, there's no wp build-in function to identify the code environment. Is there's any PHP build-in function to identify such thing ? for the record, what i want to code need to read a directory. in my apache (in window...

Different OS and Server Path

in windows (using apache as server), my file path directory will be C:\xampp\htdocs\mysvn\PhpDocumentor\phpdoc.php. But what happen with other OS such as linux on APACHE, or IIS on windows, Or other OS i don't know and never use ? i would like to know to make sure i wrote the bullet proof, file reading via PHP. Care anyone give an exam...

Why can't I use shell_exec from a PHP script on a network share in IIS?

I have some PHP scripts that reside on a network share. For argument's sake, let's call the share \\nas\dev. I have a Web Site on \\w2k3dev\ set up in IIS6 that uses \\nas\dev\ as its home directory by setting "A share located on another computer". Some of my scripts use shell_exec to execute functions on the server and return results t...

Cannot open log for source {0} on Windows 2003 Server

I am having a huge problem with the eventlog on my server. Right let me first of all explain the setup. I have a domain setup with 2 computers One computer is running IIS the other is a workstation. The IIS is running Win2k3 the workstation Win XP. The IIS computer is hosting a website which uses Windows Impersonation and tries to log ...

Does Windows Azure support the Application Warm-Up module or something similar?

We have a Web Role that we are hosting in Windows Azure that uses an old ASMX based Web Reference to contact an external system. The Web Reference proxy code is big enough that instantiating it the first time has a significant cost. We'd like to be able to have this run when the Web Role starts instead of on the first request. I kno...

ASP.NET: How can I properly redirect requests with 404 errors?

Hi, I'd like my ASP.NET MVC application to redirect failed requests to matching action methods of a certain controller. This works fine on my development machine running Windows 7, but not on my production machine running Windows 2008 R2. I set up my web.config as follows: <customErrors mode="On" defaultRedirect="/Error/ServerError/50...

How to use WIX to deploy and run WCF service

Hi I am trying to make an installer which deploys my wcf service, at the moment it is creating the virtual directory, but when I try connect my app to it, I get a CommunicationException was unhandled by user code The remote server returned an error: NotFound. I notice that if I create a virtual directory manually that it will ...

Differences in behaviour between IIS and the ASP.Net Web Development Server?

During development, I usually test ASP.Net applications using the Web Development Server (sometimes called Cassini). Occasionally, when I publish to a real IIS environment, I notice that the application behaves differently. So, what are the differences between the way that production IIS servers and the ASP.Net Web Development Server be...