Axis 1.4 Read timed out and HTTP 1.1
Posted onFor those getting a SocketTimeoutException
when calling an Axis 1.4 Web Service.
This may be a solution for your problem.
…
Read more »For those getting a SocketTimeoutException
when calling an Axis 1.4 Web Service.
This may be a solution for your problem.
…
Read more »Everyone knows that documentation is not one of JBoss strengths. This article is meant to fill this gap. It describes and exemplifies how to configure JBoss PojoCache as a MBean service, using loadtime transformations with JBossAop framework, so you don’t need precompiled instrumentation.
…
Read more »I really enjoy jQuery. But finding the right UI widget can be a daunting task. Autocomplete is one of those widgets.
I decided to share an asynchronous example on how to use the jQuery Autocomplete plugin with Stripes Framework.
…
Read more »JBoss announced the GA release of JBoss AS 5.0. JBoss 5 is the next generation of the JBoss Application Server build on top of the new JBoss Microcontainer. The JBoss Microcontainer is a lightweight container for managing POJOs, their deployment, configuration and lifecycle. It is a standalone project that replaces the famous JBoss JMX Microkernel of the 3.x and 4.x JBoss series. The Microcontainer integrates nicely with the JBoss framework for Aspect Oriented Programming, JBoss AOP.…
Read more »This example was greatly inspired by the Stripes and jQuery AJAX Forms article from Freddy Daoud, but with some nice improvements
Last week I was working on a new Stripes / AJAX example. It involves having a table listing entities, being the last row of the table a form for adding new ones. The form gets submitted via AJAX, using jQuery, and the response is validated in order to check if the HTTP session is still valid.
If everything is OK, the list is refreshed and a success message appears. On the other hand, if validation errors occur, the list is refreshed and an error message appears. Also, if the user’s session has expired on the server, an alert is shown to inform the user that his session is invalid, and the page is reloaded so the user can login once more.
…
Read more »A long time has passed since my previous BIRT example - Deploying BIRT Report Engine API with Apache Struts. Now that I preferably use Stripes Framework over Apache Struts, I’ve decided to port my last example to this framework.
…
Read more »Inspired by the Spring with Stripes integration I decided to make one for Java EE: Stripes Injection Enricher. Stripes Injection Enricher enriches Stripes Framework objects by satisfying injection points specified declaratively using annotations. There are three injection-based enrichers provided by Stripes Injection Enricher out of the box: @Resource - Java EE resource injections @EJB - EJB session bean reference injections @Inject - CDI injections The source code is available on GitHub at StripesFramework/stripes-injection-enricher.…
Read more »In my current web project I was having some performance issues, I needed a tool that allowed me to do some testing so I can see what’s wrong and what I can do better so my application perform faster. My search lead me to High Performance Web Sites and YSlow, a very good talk by Steve Souders the Chief Performance Yahoo! at Yahoo! YSlow is an easy-for-use plugin that allows you to inspect any web page just clicking a button.…
Read more »After googling a bit for error “java.lang.OutOfMemoryError: PermGen space” I found many sites talking about that problem. Some tried passing command line arguments to the JVM or changing the size of the PermGen space, others end up recommending using a VM from BEA or IBM, all without success. But after a closer look at their comments I ended up at Frank Kieviet blog. Frank explains what really is a PermGen error…
Read more »Coding conventions are rules that computer programmers follow to ensure that their source code is easy to read and maintain. Why is that important? Sun Microsystems provides the following rationale for the Java Programming Language: Code conventions are important to programmers for a number of reasons: 80% of the lifetime cost of a piece of software goes to maintenance. Hardly any software is maintained for its whole life by the original author.…
Read more »