[JBoss-user] [HTTPD, Servlets & JSP] - Re: Why is JSTL not included?

2004-11-25 Thread jimpo
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

[JBoss-user] [HTTPD, Servlets & JSP] - Why is JSTL not included?

2004-11-24 Thread jimpo
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

[JBoss-user] [JCA/JBoss] - Re: Jboss 3.2.3, Oracle-DS leaking cursors

2004-06-28 Thread jimpo
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

[JBoss-user] [JCA/JBoss] - Re: Jboss 3.2.3, Oracle-DS leaking cursors

2004-06-28 Thread jimpo
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

[JBoss-user] [Installation & Configuration] - Re: Application-specific log4j.xml settings

2004-06-16 Thread jimpo
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

[JBoss-user] [Installation & Configuration] - Application-specific log4j.xml settings

2004-06-14 Thread jimpo
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

[JBoss-user] [JBoss Getting Started Documentation] - Re: 9.1 Security Using Database ->

2004-06-02 Thread jimpo
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

[JBoss-user] [JBoss Getting Started Documentation] - 9.1 Security Using Database ->

2004-06-02 Thread jimpo
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