OK, so it might be that JSTL is included, but to "activate" it you need to
include .tlds and add the definitions to your web.xml?
The alternative way (dropping standard.jar and jstl.jar to WEB-INF/lib) seems
much less hassle and I think I will use it.
View the original post :
http://www.jbos
I just spent a few (too many) moments getting my head around the whole JSTL
situation. It seems that none of JSTL is supplied "out of the box" with JBoss /
Tomcat, and I had to include standard.jar and jstl.jar to get my JSTL tags
working. It seems odd that so central piece is not included readi
Also, check out JDBC3.0 specification 11.6.2, which states that connection.close
always closes all (non-pooled) statements, and 14.2.5., which states that resultsets
are automatically closed when statement is closed.
My interpretation of these is that developer should never have to include messy
This cannot be anything else than a bug. If the spec states that closing a connection
releases JDBC resources immediately, and JBoss does not do it, it's definately a bug,
no?
Optimizing the performance is a smart thing to do, but there should at least be a
configuration option for enabling spe
anyone?
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3838944#3838944
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3838944
---
This SF.Net email is sponsored by The
I want to control the logging of my application by including a suitable log4j.xml in
war's WEB-INF/classes/. Initial attempt of just including the xml file in the war
failed, as JBoss' own configuration file in conf/ did override my settings. Using
instructions on
http://www.jboss.org/wiki/Wiki
Similar(ish) problems with example 9.2: using password hashing...
I took the functional UsersRolesLoginModule authentication policy and appended it with
hashing settings:
MD5
base64
After those (and updating user.properties and role.properties) login is no longer
workin
I'm having problems getting the example in 9.1, authentication using database to work.
Other examples so far work, UsersRolesLoginModule works, it seems that the problem is
caused by using DatabaseServerLogingModule. When I configure Duke's bank to use
database as storage for usernames & passwor