RE: [JBoss-user] The method return values in the home interface must be of valid types for RMI/IIOP

2003-06-03 Thread Krishnakumar N
Hi, Please check if all the methods in the *remote* interface throw RemoteException. Cheers, Krishna -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, June 02, 2003 6:27 PM To: [EMAIL PROTECTED] Subject: [JBoss-user] The method return values

[JBoss-user] Authentication Exception for an unchecked method

2003-03-28 Thread Krishnakumar N
Hello all, I am using the scheduler plug-in to schedule tasks from an ejb application , say app1 which uses security-domain sec1 (as declared in the jboss.xml file). This task itself creates a session bean and invokes a method on that session bean. The session bean created is task specific and

RE: [JBoss-user] Deploying scheduler after EAR deployment

2003-03-19 Thread Krishnakumar N
Hi, You can do this by using the deployment sorters specified in /conf/jboss-service.xml. For example, you can use the PrefixDeploymentSorter and call your scheduler service xml 1blahblah.xml. Cheers, Krishna -Original Message- From: Marek Lange [mailto:[EMAIL PROTECTED] Sent:

[JBoss-user] Application Initialization

2003-03-10 Thread Krishnakumar N
Hello all, I have created a session bean method that I would like to be called on a 'initialization-once-per-application' basis. I think I will be able to do that from a MBean in JBOSS (should ensure the correct order of deployment though). Weblogic seems to offer an extension called

[JBoss-user] Ear scoped classloading and scheduler service

2003-02-19 Thread Krishnakumar N
Hello all, I have a j2ee application which works fine as a single instance application. Now I am trying to support multiple instances of that application on the same jboss server. The documented way is to do the usual changes (database datasource name, jndi branches to which the ejb names are

RE: [JBoss-user] Multiple database connections

2003-02-16 Thread Krishnakumar N
Works fine! Thanks, Marek. Cheers, Krishna -Original Message- From: Marek Lange [mailto:[EMAIL PROTECTED]] Sent: Friday, February 14, 2003 9:16 PM To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] Multiple database connections Does anybody have a sample Oracle-Service.xml for

[JBoss-user] Multiple database connections

2003-02-14 Thread Krishnakumar N
Hello, Does anybody have a sample Oracle-Service.xml for configuring multiple databases as seperate datasources? Cheers, Krishna --- This SF.NET email is sponsored by: FREE SSL Guide from Thawte are you planning your Web Server Security?

RE: [JBoss-user] List of active users logged in thru JAAS

2003-01-09 Thread Krishnakumar N
We use a combination of a filter and a HttpSessionListener to achieve something like this (we do not store the list of currently stored users in a db). The filter checks whether the current user is logged in and if yes, adds the user id to a application context hashtable. The same hashtable is

RE: [JBoss-user] Deploying images dynamically

2003-01-02 Thread Krishnakumar N
Hi, I use JBOSS-Jetty andI have done this by having an ear file for the packaged web application(s) and another web application deployed as a 'exploded' war. This second web aplication is there purely to manage additions and deletions of images, it hasjust oneservlet to manage these