Thursday, August 25, 2011
I have recently begun to wotk with web services in Java. Testing these web services in Java was not as easy as just typing a random request into soapUI. The soapUI test needs to follow the order defined by the interface definition or XSD.
Admit that Spring is very hard to configure. If you are like me and you do not setup a new Spring project each month you would most likely search it up on google for answers. Admit it once more that you do not always find what you are looking for. And its true, its a [...]
I really agree on the fact that connection pools need connection validation on return or on borrow. A connection pool without connection validation isnt worth much. But its certainly the last step to do while creating an application. The last fine tuning before the app goes live. Not the first thing to setup. Because the [...]
I found this interesting article covering the reasons for why a project should use Grails. Why use Grails? « Intelligrape Groovy & Grails Blogs.
Groovy on Grails (Grails) is certainly the meaning of life for a professional programmer. Grails brings me closer to programming heaven than I will ever get. But I will most propably not be using it in the near future. Working with a tool like Grails makes alot things easier but it all needs to be [...]
Tuesday, November 30, 2010
Sometimes as a programmer you get to a point where you have to choose HOW to do your stuff. You have plenty of options. In Java almost everything is done before. So there is no need to it your self. But consider this, would it be worth while to use a library when you could [...]
Monday, November 22, 2010
A lot of critical voices are shouting out about the bad things the module pattern in JavaScript brings with it. Well, I am going to shout back because they are just silly stupids that doesnt know how to code. Maybe they are still living with their mom eating pizzas. Who knows. But who am I [...]
It is truly unquestionably the best cms framework for Java. And it makes managing content with pluggable dynamic sections easy. It excels in many ways and features. but it is mainly aimed towards bigger sites. i had actually began the work of making my own cms/blog when i accidentally discovered Brix. i fooled around with [...]
I have in my past two years as a professional Java web developer stumbled upon the fact that if my code is not reusable and readable, as well as not structured and modularized, it cannot be maintained in the long run. I have had the need for good web frameworks and I have learnt a [...]
The magic about a one time clickable button in C# is to override Button and place the default onclick event to aspnet_onclick and add another function to onclick that disables the button if Page_IsValid. I will not post the whole solution, but I will share the javascript that enable the disable effect. function SubmitButton_InitOnClick( id, [...]