views:

255

answers:

3

It appears that we will have to build/deploy one of our new JBoss apps on Windows.

All our current deployments are on Solaris so we were slightly concerned with the stability of this model. Apparently half of JBoss deployments are on Windows if this article is accurate. But I was wondering what the community had to say.. Is Windows considered a solid platform to deploy JBoss on?

+3  A: 

Should be fine. The JBoss folks have paid careful attention to how their software behaves on Windows, even working with Microsoft on it. Make sure you look at the up to date recommendations for running JBoss on Windows. There are multiple ways to set it up and some are no longer recommended. If you just google it, you'll likely find instructions for the outdated setup.

Asaph
+1  A: 

For development I run JBoss on a Windows platform and it runs without any problems.

One pitfall I tapped in was the different sorting behaviour of the file systems. I had two jar files that happened to contain different versions of the same class. On a Linux system one jar was loaded first, on Windows the other, resulting in strange errors. But of course, you should never have two versions of the same class at one time, so this happens only in a badly configured system.

tangens
A: 

JBoss AS is tested for server editions of Windows - 2003, 2008 etc.

Ondra Žižka