Friday 27 April 2012

The Underrated Source of Everything!

"Too often we are so preoccupied with the destination,we forget the journey"

With so much ado about the journey being better than the destination..and everyone striving to reach their destination..how many of us wonder about the underrated source ?

Is it just as forgotten as it is in the old saying..that no one really wonders about how it all began,what led to its inception..somehow it is all about the journey or the destination..the traveller with his tales..did he ever say what made him start.. and led to his travels..and I dont mean the thought process or how it struck him..just the trigger that made him get up and get out..that moment suspended in time when you made a path setting decision..and then promptly forgot what made you do it...nope not the thoughts,rather the act,thats what you let go of!

This seemingly uncaring way of being is a waste of some really special information,that elusive "something" which made u act! So you were thinking about something..maybe as inconsequential as asking someone out!..and then that "something" happened and you actually did it..u had your beautiful journey ,took it as it came..and then it changed..did you look back on your "something" and re-live your journey from there on,only to realise how you got to your present? Maybe it could have set the process to improve the present situation,if not then maybe suggest a new thought process,the beginning of yet another journey maybe?

So why not build a new strategy,whenever you are stuck in a muddle and you don't know how to get out of it,look back to what got you there.Remember the trigger and then relive it..and let it set the trend for some new inspiration!


Wednesday 18 April 2012

The Golden Hues!

The Golden Hues! by Viny N
The Golden Hues!, a photo by Viny N on Flickr.

ColdFusion IceBreaker #5: JBOSS 7.1 and OpenOffice for ColdFusion cfdocument


In JBOSS7.1 , there have been major changes in the class loading behaviour of applications .Due to this we need to make a few changes to use ColdFusion's cfdocument and other OpenOffice features.Class loading is based on modules,with each module having its module.xml in which one can specify dependencies on the other modules using the <dependencies> element.

To support OpenOffice with JBOSS7.1 for cfdocument, you need to:
1)Install OpenOffice and add the installation path in the ColdFusion Admin
2)Edit the module.xml located in <JBOSS_HOME>/modules/sun/jdk/main and put the following entry there:
<path name="com/sun/star/lib/loader"/>
3)Start JBOSS with the following flag in the standalone.bat/standalone.sh.
-Djava.ext.dirs=<jboss-deployment-dir>/cfusion.ear/cfusion.war/WEB-INF/cfusion/lib/oosdk/:<java-home>/lib/ext/
(':' for unix based machines and ';' in windows)

The <dependecies> element can be used to specify dependencies on the paths and packages  from the class loader which loaded JBoss Modules.These can in turn be specified for re-exported if specified using the <export> element.The <path> element is used here to list the paths.

Adding the oosdk package to the java.ext.dir ensures that the classes of that package can be found and loaded without them being on the actual class path.

One need not add the individual jars to the JBOSS classpath or the java classpath

Click here  for MAC OSX specific instructions. These just make life easier :D.