Re:

2001-06-29 Thread Gordon Reynolds \(Cyonara\)
package com.cyonara.gw.sql; import com.cyonara.gw.util.*; import java.sql.Connection; import javax.naming.Context; import javax.naming.InitialContext; import javax.naming.NamingException; import javax.sql.DataSource; public class DataSourceSqlConnector implements SqlConnector {

Re: Can't get taglibs to work in orion

2001-06-12 Thread Gordon Reynolds \(Cyonara\)
Tim, I think your taglib-location should point to a taglib descriptor file instead. Following is an example fromone of myapplications: taglib taglib-uri/util/taglib-uri taglib-locationweb-inf/tlds/tags.tld/taglib-location /taglib Also note the slash before 'util' and the absence of

Re: NT Security Integration?

2001-06-08 Thread Gordon Reynolds \(Cyonara\)
No, but I hope someone has. I can tell you this much, it'll require 2 things: first writing native code to access the NT authentication system (I've seen an article on this sometime in the last year in one of my many Java magazines), then writing your own UserManager to access the native code.

Re: [EJB/Servlet 1.5.1]Classpath driving me nuts...

2001-05-29 Thread Gordon Reynolds (cyonara)
Steffen, That's how I read the spec, with one exception: place only *.jar files in web-inf/lib; place *.class files in web-inf/classes. I don't do either, however. I build an ear and place all the jar files in meta-inf/lib. Regards, Gordon. - Original Message - From: Steffen Stundzig

Re: unable to configure form-based authentication correctly

2001-05-15 Thread Gordon Reynolds (cyonara)
Humphrey, I compared your descriptors with the ones I have in my own app and found just a few differences that might suggest changes you can try to get this working: 1. I defined the security roles in both application.xml and web.xml, not web.xml alone. 2. My protected

Re: Standar Template

2001-05-10 Thread Gordon Reynolds (cyonara)
Dan, Take a look at this article: http://developer.java.sun.com/developer/technicalArticles/javaserverpages/js p_templates/ I think it provides a solution you should consider. I've built my own version of the taglib (I wanted default values for the parameters) and it works