Connection Pooling + User Authentication

2003-09-23 Thread Kapadia Mitesh-C23457
Hello. I would like to explore Connection Pooling as opposed to direct JDBC calls to an Oracle V8.1.6 database in a STRUTS application. The queries that are being executed have some kind of security built into them such that they only return results based on the User Id ( a look up of the User Id i

Session Sharing Feasibility

2003-09-11 Thread Kapadia Mitesh-C23457
Hello - I have a question about potential sharing of session information between CGI/Perl and STRUTS applications. We have an application written in CGI/Perl on Netscape Enterprise Server in which we would like to have the capability to spawn the user off to a STRUTS application on a different se

Recall: Struts-example & i18n

2003-09-10 Thread Kapadia Mitesh-C23457
Kapadia Mitesh-C23457 would like to recall the message, "Struts-example & i18n". - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Struts-example & i18n

2003-09-10 Thread Kapadia Mitesh-C23457
I can successfully run the struts-example app provided with the STRUTS install on Tomcat in English, however, I would like to be able to view the i18n capabilities using the 'ja' and 'ru' .properties files. I have added the 'ja' and 'ru' locales and removed the 'en' locale by configuring my browse

Struts-example & i18n

2003-09-09 Thread Kapadia Mitesh-C23457
I can successfully run the struts-example app provided with the STRUTS install on Tomcat in English, however, I would like to be able to view the i18n capabilities using the 'ja' and 'ru' .properties files. I have added the 'ja' and 'ru' locales and removed the 'en' locale by configuring my bro

RE: Java Question

2003-08-26 Thread Kapadia Mitesh-C23457
Sorry folks -- Please disregard my previous message w/subject -- 'Java Question' -Original Message----- From: Kapadia Mitesh-C23457 [mailto:[EMAIL PROTECTED] Sent: Sunday, August 24, 2003 1:33 PM To: [EMAIL PROTECTED] Subject: Java Question Importance: High > I've been

Java Question

2003-08-25 Thread Kapadia Mitesh-C23457
I've been trying to compile my BLB (Business Logic Bean) and have been getting errors during compilation. I haven't a clue as to how I could debug this. Any assistance would be appreciated. Thanks in advance. - Mitesh Error Messages during compilation: [javac] Compiling 2 source files t

Paging through DB ResultSets

2003-08-25 Thread Kapadia Mitesh-C23457
Any suggestions or ideas on how I can page through a DB ResultSet? Thanks in advance. - Mitesh

Java Question

2003-08-24 Thread Kapadia Mitesh-C23457
> I've been trying to compile my BLB (Business Logic Bean) and have been > getting errors during compilation. I haven't a clue as to how I could > debug this. Any assistance would be appreciated. > > Thanks in advance. > > - Mitesh > > Error Messages during compilation: > > [javac] Compil

RE: Generating logs w/Log4J in ActionClass

2003-08-24 Thread Kapadia Mitesh-C23457
just vaguely remember private Logger logger = Logger.getLogger(Test.class); logger.debug("Better Check log4j docs"); and keep the log4j.properties file in classpath. hth navjot singh |-Original Message----- |From: Kapadia Mitesh-C23457 [mailto:[EMAIL PROTECTED] |Sent: Thursday, Augus

java.lang.NoClassDefFoundError: org/apache/struts/legacy/GenericDataSource

2003-08-23 Thread Kapadia Mitesh-C23457
Hello. I have a simple BLB in my STRUTS application that I am using to connect to a database. I have defined my datasource in my struts_config.xml file and I have the struts-legacy.jar file in my classpath, however, I keep getting the following error: java.lang.NoClassDefFoundError: org/apache/

HELP -- Problems Returning ResultSet

2003-08-22 Thread Kapadia Mitesh-C23457
Hello. I am using a HashMap for inter-component communication from my ActionClass to my BLB (Business Logic Bean) which connects to an Oracle DB to execute a query and return a ResultSet. Any assistance you can provide would be most appreciated. Thanks in advance. - Mitesh Kapadia It seems

TEST

2003-08-22 Thread Kapadia Mitesh-C23457

RE: Generating logs w/Log4J in ActionClass

2003-08-22 Thread Kapadia Mitesh-C23457
> Replace isDebugEnabled() with whatever level you want to use. > > HTH, > Mike J > > -Original Message- > From: Kapadia Mitesh-C23457 [mailto:[EMAIL PROTECTED] > Sent: Thursday, August 21, 2003 11:55 AM > To: [EMAIL PROTECTED] > Subject: Generating logs w/Log4J i

Generating logs w/Log4J in ActionClass

2003-08-22 Thread Kapadia Mitesh-C23457
I have the appropriate configurations completed to use Log4J w/Tomcat. However, how would I invoke Log4J from within my action class to generate DEBUG statements? I have the following package imported: import org.apache.log4j.*; Any examples would be most appreciated. Thanks in advance. - Mit

DB Access from BLB

2003-08-21 Thread Kapadia Mitesh-C23457
Hello. I am fairly new to STRUTS and am trying to write a BLB (Business Logic Bean) in the 'Model' to connect to a database, do a simple query, and return a resultset. Should I then read the resultset into the DTO/Value Object/DataBean so I can dispay them on the appropriate page? Any advice a