Why a subdomain for an APEX development system is a bad idea

The Internet Explorer cookie desaster

Do you find dev.apex.mycompany.tld a nice, rememberable address? Unfortunately this will not work - at least when you use Internet Explorer (which is the standard browser in most companies) and you use the same cookie name in some or all applications to share the session across multiple applications.

What is the problem on a subdomain?

Internet Explorer including version 11 has a really bad cookie implementation. If you login to your productive APEX instance under apex.mycompany.tld and then to your development instance under dev.apex.mycompany.tld, IE sends the session cookie from your productive instance to your development instance. You will not be able to login - the server is generating a new session each time because of the invalid session cookie.

It comes to a nightmare if you configured your systems for automatic login with the windows login credentials as described in this document from Niels de Bruijn. The automatic login leads to hundreds new sessions in a few seconds - depending on the speed of your development system.

Not to mention that Chrome and Firefox are working well…

More details about IE’s cookie desaster can be found on blogs.msdn.com - the relevant question for this blog entry is number three.

Happy APEXing :-)

Ottmar