-
Follow me on Twitter
- @CollinMel color organ surely... it sounds far more intriguing!September 8, 2010 1:00
- @mike_1727 tis true but they're just for looking at! Still maybe more people will take up cycling as a result of the strike.September 6, 2010 5:04
- RMT can be contacted at: info@rmt.org.uk or at Unity House. 39 Chalton Street.London. NW1 1JD #tubestrikeSeptember 6, 2010 4:53
- Make 800 strikers redundant and give their jobs to those who actually want to work and can't find employment #tubestrikeSeptember 6, 2010 4:42
- RMT concerned over welfare of passengers so they're striking causing chaos, disruption and danger to passengers #tubestrike #idiots #failSeptember 6, 2010 4:40
JBoss Archive
-
Changing the HTTP port Oracle uses
Posted on December 12, 2009 | No CommentsIn a production environment your database server will be completely separate from your application server or at least it should be. So in theory you should never really need to change this setting unless its for your development environment. In my case I needed to... -
How to Setup Debugging in Eclipse for JBoss
Posted on December 12, 2009 | No CommentsThis is really useful – only recently found out how to do this and the benefit is enormous. Basically by a small configuration on JBoss’s startup configuration and a setting in Eclipse we can toggle breakpoints in our java code so that we can see... -
Hot Deploy Java code/ ATG components on JBoss
Posted on December 12, 2009 | 4 CommentsPretty simple, on a production environment you start JBoss with its run file and a series of commands, which then picks up your EAR file from the deployment directory. Which is a fine process to go through, but what if you’re developing code and you... -
Setting Database Connections in JBoss/ ATG
Posted on December 12, 2009 | No CommentsATG communicates to a database via JBoss via a dynamo server setup or in your home/localconfig directory if you’re not using specific dynamo servers. In this setup you specify the JNDI connection name which will then refer to an XML file which makes up part... -
Adding and changing Mod JK JVM route, URI encoding and thread settings for JBoss
Posted on July 28, 2009 | No CommentsIn your JBoss server there is a file that can be amended to alter the URI encoding and the number of threads used by JBoss. Additionally if you’re using mod_JK to link Apache HTTP and JBoss/Tomcat you can specify a JVM route parameter here that... -
Setting the JDK version and compiler in JBoss for JSP pages
Posted on July 28, 2009 | No CommentsIf you need to run Java 1.5 in your JSP’s in JBoss 4.0.5.GA you can do so by editing a small setting in an XML file in your server directory: jbossserver[SERVER NAME]deployjbossweb-tomcat55.sarconfweb.xml You can then change the compiler version by un-commenting the code below which... -
Running multiple instances of Jboss on one server.
Posted on July 28, 2009 | No CommentsTo run multiple Jboss instances on the one server is pretty easy – but remember that if you’re running something like ATG commerce you’re going to need a few Gb of memory to run just the one JBoss instance let alone multiples. So you may...