Recent Posts

Jboss mdb example

1 minute read

This is an example on writing a Message Driven Bean in JBossif you decide to use jboss as your application servercomponents usedjboss-4.0.5.GAeclipse 3.2xdo...

Programming struts redirect howto

less than 1 minute read

struts redirect howto different web contextswebappA sendredirect to webappBString url = response.encodeRedirectURL(“urlwithparameters”);System.out.println(“...

Apache httpd reverse proxy howto

less than 1 minute read

apache httpd reverse proxy settings howtoLoadModule proxy_module modules/mod_proxy.soLoadModule proxy_ajp_module modules/mod_proxy_ajp.soLoadModule proxy_ba...

Programming struts tags usage

less than 1 minute read

struts tags usageusing arraylist and mapsdefine in your action<pre>List urlName = new ArrayList();for (Iterator i = st.iterator(); i.hasNext();) {Str...