[Actionframework-users] Bug with no components
Status: Inactive
Brought to you by:
ptoman
From: Javier U. F. <fju...@mu...> - 2003-04-09 07:15:48
|
Hi In 0.93 version of the DTD the element <components> is mandatory, with = at least one subelement <component>. However, in 0.94, <components> is not mandatory. This is useful for = starting with a dummy application with only a new session template. But if I don't put the tag <components>, a NullPointerException occurs = in line 598 of ActionRuntime, where the code is getting the length of = the list of components. // parse <component>s subelements for(int i=3D0; i < componentList.getLength(); i++) { = <---- Node node =3D componentList.item(i); It seems that the existence of <components> is not controlled previously. |