[JBoss-user] ERROR : Nested Field does not have a get method

2001-11-25 Thread Kar YEOW
After deploying the jar, I got the following messages   ... [Container factory] Deploying xxx.xxx.xxx[Container factory] Deploying xxx.xxx.xxx[Container factory] ERROR : Nested Field does not have a get method[Container factory] ERROR : Nested Field does not have a get method[ContainerManage

Re: [JBoss-user] Select COUNT????? in Entity

2001-10-15 Thread Kar YEOW
" sql here ... etc return count; } } hope this help. Kar - Original Message - From: "John LYC" <[EMAIL PROTECTED]> To: "Kar YEOW" <[EMAIL PROTECTED]>; "Jboss Mailing List" <[EMAIL PROTECTED]> Sent: Tuesday, October 16, 2001 5:1

Re: [JBoss-user] Select COUNT????? in Entity

2001-10-15 Thread Kar YEOW
Try using Home Interface. Kar - Original Message - From: "John LYC" <[EMAIL PROTECTED]> To: "Jboss Mailing List" <[EMAIL PROTECTED]> Sent: Tuesday, October 16, 2001 1:08 PM Subject: [JBoss-user] Select COUNT? in Entity Hi all, I'm using Bean-managed Entity Beans.. and i wanna do a

Re: [JBoss-user] Example jsp and servlet not working JBoss-2.4.3_Tomcat-4.0 (win 2000)

2001-10-15 Thread Kar YEOW
Title: Example jsp and servlet not working JBoss-2.4.3_Tomcat-4.0 (win 2000) You have to deploy the examples.war file to the  jboss/deploy directory.  Kar - Original Message - From: Patrick Munis To: [EMAIL PROTECTED] Sent: Tuesday, October 16, 2001 4:49 AM Subje

[JBoss-user] Ability to use request.getUserPrincipal() after login with JAAS

2001-10-14 Thread Kar YEOW
I have a JSP which basically login using JAAS (the simple login module).  After login I can obtain the "Subject" by calling loginContext.getSubject() but I could not get the "Subject" from the request.getUserPrincipal().  How do I do it in such a way that I can programmatically log someone i

Re: [JBoss-user] EJB 2.0 CMP implementation class must be abstrac t

2001-09-27 Thread Kar YEOW
Dain, basically explained. I had a look at the source. JBoss uses a 'special' class loader to dynamically generate a 'byte code' class presumably 'wrapper' the ejb abstract class before it is instantiated. Very clever! Kar - Original Message - From: "Andreas Joseph Krogh" <[EMAIL PROTEC

[JBoss-user] EJB 2.0 CMP implementation class must be abstract

2001-09-23 Thread Kar YEOW
According to this article http://developer.java.sun.com/developer/technicalArticles/ebeans/ejbmigrate/?frontpage-jdc an EJB 2.0 CMP bean implementation class must be abstract, will it work in JBoss? As I understand it JBoss does not generate "wrapper" class instead it uses the Proxy class to "

Re: [JBoss-user] Entity change notification to clients

2001-07-30 Thread Kar YEOW
Try JMS. kar - Original Message - From: "David Ward" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 31, 2001 5:07 AM Subject: [JBoss-user] Entity change notification to clients Anyone have experience (preferably using JBoss) implementing a way for EJB clients to get no

Re: [JBoss-user] BLOB

2001-07-15 Thread Kar YEOW
Just using a CMP byte[] field and map your byte[] to BLOB. Kar - Original Message - From: "Jord Sonneveld" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, July 14, 2001 7:02 AM Subject: RE: [JBoss-user] BLOB you'll need to create a class that implements blob, and knows how t

Re: [JBoss-user] URGENT !!! Finder....

2001-07-09 Thread Kar YEOW
You can't do (ie xxx = null) in Oracle. You'll need define another finder (ie xxx is null). Kar - Original Message - From: "Fred Loney" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, July 10, 2001 2:28 AM Subject: Re: [JBoss-user] URGENT !!! Finder m

[JBoss-user] JBossSOAP

2001-06-28 Thread Kar YEOW
I know that ZOAP is dead, but is JBossSOAP still alive?  If so is there a binary distribution anywhere?  TIA. Kar

Re: [JBoss-user] ONLINE FORUM AVAILABLE

2001-06-27 Thread Kar YEOW
same here - Original Message - From: "awc" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, June 28, 2001 2:57 AM Subject: Re: [JBoss-user] ONLINE FORUM AVAILABLE Yes, on ours, it is set up as http traffic goes out only on the port 80 and 443, every thing else is dropped to t

Re: [JBoss-user] How to specify relationships between CMP EJBs?

2001-06-18 Thread Kar YEOW
The relationship stuff is in EJB2.0 and it is still in DRAFT. It is not yet supported in JBOSS. Kar - Original Message - From: "Richard Kasperowski" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, June 19, 2001 7:34 AM Subject: [JBoss-user] How to specify relationships between

[JBoss-user] Repost:Fw: byte[] fields with oracle blob problem

2001-06-18 Thread Kar YEOW
I didn't get any responses on the previous post and I have tried JAWS mailing list and still no response. I do suspect there is a bug or a config problem somewhere.  Anyone? Kar   - Original Message - From: Kar YEOW To: [EMAIL PROTECTED] Sent: Monday, June 18, 2001 9:

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

2001-06-13 Thread Kar YEOW
Remove the EJBException out of the throws clause it is not needed as EJBException extends RuntimeException. The warning message should go away. Kar - Original Message - From: "Richard Kasperowski" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, June 14, 2001 3:17 AM Subject: [

[JBoss-user] byte[] fields with oracle blob problem

2001-06-13 Thread Kar YEOW
I am having some problems using byte[] field with Oracle Blob. I have an EJB with a field id of type String and bytes of type byte[]. I found that there is 2 problems:   1.  if the bytes field is null during creation you get exception of 'Invalid column type'. 2.  if you sucessfully 'inserted

Re: [JBoss-user] jBoss cannot handle char primitive type

2001-06-12 Thread Kar YEOW
By the way I use JBoss-2.2.1 and JDK1.3.  The codes is nothing fancy, as it happened to my 'real' code I wrote a tester to make sure that was the problem. Anyway, here is the codes:   ___Bean___ public class EntityBean implements javax.ejb.EntityBean {    private javax.ejb

Re: [JBoss-user] repackaging JbossUtilAutonumber

2001-06-12 Thread Kar YEOW
AutoNumberBean? What it is? Where can I find more info? TIA. Kar - Original Message - From: "Christoph Sturm" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, June 12, 2001 6:27 PM Subject: [JBoss-user] repackaging JbossUtilAutonumber Hello jboss-userz, Is it legal to sepa

[JBoss-user] jBoss cannot handle char primitive type

2001-06-11 Thread Kar YEOW
I got and exception when calling an EJB with methods that uses char primitive type.  May be I have done something wrong. I have attached the EJB code.  Anyone?   My work around is to use Integer but it would be nice if 'char' works. Kar   --- java.rmi.ServerException:

[JBoss-user] Options handling exception in MDB's onMessage?

2001-06-07 Thread Kar YEOW
Just wondering what people are doing when there is an exception inside the onMessage method?  As you can't throw it back to the client, all I can think of is to - do nothing - log it - send a message back Anybody has any suggestion? TIA Kar

Re: [JBoss-user] EJB Integration with existing Java Framework - Urgent!

2001-06-07 Thread Kar YEOW
I believe you can't use thread or IO either directly or indirectly. As these are resource controlled by the Container. If they are used without the Container's knowledge, the Container will not be able to manage them. eg opened file and unterminated thread etc etc... Kar - Original Message -

[JBoss-user] JAWS's debug flag is hardcoded

2001-06-04 Thread Kar YEOW
Just wondering if there is any plan to remove the hardcoded debug flag in JAWS? The code is already using the log.debug(...), call it shouldn't need to have another flag. I'd like to be able to turn it on and off without recompiling. Kar

Re: [JBoss-user] JBoss hangs at starting DefaultDS pool using Interbase

2001-05-31 Thread Kar YEOW
Check if you have the driver in your $JBOSS_HOME/lib/ext directory. Kar - Original Message - From: "Wiwih "Will" Gunadi" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, May 31, 2001 2:53 PM Subject: [JBoss-user] JBoss hangs at starting DefaultDS pool using Interbase > Hi all,

Re: [JBoss-user] EJB 1.1 throws RemoteException deprecated

2001-05-09 Thread Kar YEOW
Correct me if I am wrong. Declaring of 'throws RemoteException' is not needed in the Bean class but it is still required in the Remote class (cause they are Remote). However, if you want you Bean class to 'implements' you Remote class then you will still need to declare the exception. Kar -

Re: [JBoss-user] findByPrimaryKey(byte[] id) method signature problem

2001-05-08 Thread Kar YEOW
My understanding is that you must use an Java Object with a parameterless contractor (ie no primitive type or array :( ). Kar - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, May 09, 2001 5:10 AM Subject: [JBoss-user] findByPrimaryKey(byte[] id) metho

Re: [JBoss-user] why i can't debug jboss2.2 in jbuilder?

2001-05-07 Thread Kar YEOW
You must also include %JBOSS_HOME%/tmp in your classpath for it to work. Kar - Original Message - From: jikai51 To: jboss-user Sent: Thursday, April 26, 2001 6:31 PM Subject: [JBoss-user] why i can't debug jboss2.2 in jbuilder? I exactly follow the every thin

[JBoss-user] How to prevent jBoss overwrite update done directly to database

2001-04-05 Thread Kar YEOW
o how can you prevent it?  Any help is appreciated.   Kar YEOW

Re: [JBoss-user] Oracle database pool hangs on 2.1

2001-03-22 Thread Kar YEOW
I have expirenced the same problem and I have also gave up and go back to using Minerva. - Original Message - From: "Guy Rouillier" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 22, 2001 2:09 PM Subject: Re: [JBoss-user] Oracle database pool hangs on 2.1 > I don't und