July
31
I’ve been on numerous projects, and the projects that were really successful is where the architect implemented parts of the system or at the least guided the development with the lower level details of the system. Today’s enterprise applications are quite complex, and it requires integration with multiple applications, tools and technologies. The architect acquires the knowledge of these external libraries and tools only by implementing them.
More info – http://www.jrothman.com/blog/mpd/2006/04/architects-must-write-code.html
http://www.jrothman.com/blog/mpd/2006/04/architects-must-write-code.html
July
31
You can view my blog in Atom feed here – http://www.julianjewel.com/wordpress/?feed=atom
February
3
From its first meetings back in early 2010, to a working reference implementation, documentation for stakeholders, best practice recommendations, and soon-to-be-finalized standards, the Direct Project has come a long way. But the proof of any bright idea is in its real world implementation. Explore the Direct Project’s current and future plans, whether they’re in your neighborhood or across the country.
For more information, visit – http://directproject.org/
December
7
I’ve been trying to install Windows Service Pack 3 on my laptop and I kept getting the “You do not have permission to update Windows XP. Please contact a system administrator.” or “Access Denied” even though I had administrator rights. It was because my security policies were messed up. This is how I fixed it. I downloaded the subinacl.exe from http://www.microsoft.com/downloads/en/details.aspx?FamilyID=e8ba3e56-d8fe-4a91-93cf-ed6985e3927b
subinacl /subkeyreg HKEY_LOCAL_MACHINE /grant=administrators=f /grant=system=f
subinacl /subkeyreg HKEY_CURRENT_USER /grant=administrators=f /grant=system=f
subinacl /subkeyreg HKEY_CLASSES_ROOT /grant=administrators=f /grant=system=f
subinacl /subdirectories %SystemDrive% /grant=administrators=f /grant=system=f
subinacl /subdirectories %windir%\*.* /grant=administrators=f /grant=system=f
secedit /configure /cfg %windir%\inf\defltbase.inf /db defltbase.sdb /verbose
And restart your system and you should be able to install Service Pack 3.
May
5
A powerful library which helps developers to implement audit functionality through Hibernate. It uses a global revision number and for every transaction commit it increases the global revision number by one and created an entity record in the designated audit table. The default table would be end with the _AUD suffix. And all you need is to add @Audited annotation to the entities and add the event listeners within the hibernate session factory bean. Pretty cool!
May
5
We had this new error from Hiberante – “java.lang.IncompatibleClassChangeError: class org.hibernate.cfg.ExtendedMappings has interface org.hibernate.cfg.Mappings as super class” – This is due to using the older hibernate entity manager/annotations libraries that were around when we upgraded to the newer 3.5.x version of hibernate. Hibernate includes the entity manager and annotations as part of the hibernate core library.
March
30
We use Ehcache extensively with Hibernate and for temporary caches. I had to write a JMS based distributed cache listener to update cache on a cluster and that works fine. And the JMS based distributed cache is also transactional.
Try the new Ehcache which is part of the open source Terracota kit at http://www.terracotta.org/dl/oss-download-destination?name=terracotta-3.2.1-installer.jar&bucket=TCreleases&file=terracotta-3.2.1-installer.jar
March
30
Red Hat recently released their updated SQA platform with JBoss Enterprise SOA Platform 5.0. MOre information here – http://www.theserverside.com/news/thread.tss?thread_id=59785
I’ve used other ESB’s including Mule, ServiceMix, Sonic etc. I think its a lot easier to integrate with these tools when compared to the JBoss Enterprise SOA Platform.
February
23
You would need this if you want to test your Web GUI for concurrent users. Easy to setup and install.
More info here – http://www.loadtestingtool.com/
November
2
Looking for a tool that can automate your UI testing.
Selenium Remote Control (RC) is a test tool that allows you to write automated web application UI tests in any programming language against any HTTP website using any mainstream JavaScript-enabled browser.
More information here –
http://seleniumhq.org/projects/remote-control/