[JBoss-user] org.jboss.deployment.DeploymentException: Could not load class

2003-06-06 Thread Hanson, Matthew
Hi, I am updating my project to deploy with jboss 3.2.1. The following error is thrown when the server tries to deploy my project jar. I do see that the class exists in the ejb jar... 08:41:15,529 ERROR [URLDeploymentScanner] MBeanException: Exception in MBean operation 'checkIncompl

[JBoss-user] Should I cache ejbRefs?

2003-06-06 Thread Brian McSweeney
Hi all, my app is fronended with struts, using local beans. The local beans usestateless session facades as a frontend. In a book discussing struts there is a chapter on using entity beans which describes how it is a good idea to cache the ejb refs in application scope. The idea is,

RE: [JBoss-user] How to depend the farming service...

2003-06-06 Thread Sacha Labourey
Can you try again with a fresh Branch_3_2 checkout (or wait for the next official release, or compile one of the snapshot, tomorrow morning, from here http://jboss.sf.net/snapshots/) Cheers, sacha -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of

re : Re: [JBoss-user] conditional method permission

2003-06-06 Thread tsmets
You will have to provide some code of yours to do the validation, thru' JAAS. We had someting similar to that a : Object.getProperty (ATTRIBUTE_NAME); would be allowed / not allowed according to the property requested (an of course the user permissions). Unfortunatelly it is not available

Re: [JBoss-user] Should I cache ejbRefs?

2003-06-06 Thread DavidNeuer
Brian, The XDoclet utilobject pattern caches Remote and (Local Homes the latter is of course only valid w/in one JVM), I've seen this mentioned on theserverside.com and elsewhere as a best practice, and after digging through the spec to be sure, apparently both Remote Homes and Remote interfaces

Re: [JBoss-user] Should I cache ejbRefs?

2003-06-06 Thread Lawrence Mount
I think they are talking about the EJBHomeFactory pattern as shown at http://java.sun.com/blueprints/patterns/ServiceLocator.html Brian McSweeney wrote: Hi all,my app is fronended with struts, using local beans.The local beans use stateless session facades asa frontend.In a book discussing

Re: [JBoss-user] JBoss and JDO

2003-06-06 Thread Tom Davies
On Wed, 2003-06-04 at 18:36, Pete Beck wrote: This leads me on to my questions. Has anyone had any experiences with using JDO from within JBoss? We use Kodo JDO (www.solarmetric.com) very happily in JBoss. It isn't free, but it is good value for money, IMHO. Tom -- Tom Davies [EMAIL

Re: [JBoss-user] Core Developers Network Announces Public Launch - whatshappening?

2003-06-06 Thread DavidNeuer
No offense meant, but this group is for technical questions about JBoss right? I would hope the Core Developers Network folks from JBG will still post here and answer questions, but aside from that, I have a ton of lists to read and a job to do and if I want gossip and intrigue, I'll stay home

[JBoss-user] MBean deployment ignores depends tag

2003-06-06 Thread Alex Hornby
I'm seeing a problem deploying an EJB jar and an mbean -service.xml file into JBoss 3.2.1. If I copy them into the deployment directory one by one whilst jboss is running its fine - the EJBs deploy followed by the service MBean. The problem is that when JBoss is restarted the mbean depends tag

Re: [JBoss-user] EJB-QL Finder and POJO

2003-06-06 Thread DavidNeuer
It's not allowed as a finder (if you mean a method named findXXX in the bean Home class), but it's valid EJB-QL if its in a select method (private method -- see note below -- called ejbSelectXXX in the bean class, that's called from a business method -- i.e. getSomeFieldBasedOnQuery()). Finders,

Re: [JBoss-user] JBoss 4.0

2003-06-06 Thread snpe
Hello, I limit log4j.xml for org.jboss and org.apache. I have more WARN messages and any ERROR messages. What is errors ? Complete output is in attach (11k in bz2 format) Thanks Haris Peco On Thursday 05 June 2003 12:03 am, Ken Yee wrote: snpe [EMAIL PROTECTED] wrote: I try JBoss 4.0 (cvs

RE: [JBoss-user] Had the Pay-For Documentation Been updated for 3.2?

2003-06-06 Thread Bill Burke
The 3.2 documentation is in the process of being updated. The updated, free, O'Reilly JBoss 3.0 Workbook has been updated for 3.2 as well, we're just waiting on publisher. Links to buy doco or review free doco is here: http://www.jboss.org/index.html?module=htmlop=admindisplayid=670 Best

[JBoss-user]

2003-06-06 Thread [EMAIL PROTECTED]
Title: 158

[JBoss-user] Quick Explanation.

2003-06-06 Thread Mark.Gargan
Title: Message Hi folks, This snippet is taken from the JBOSSCMP docs. I can't understand how it returns the remote entities.It is a BMP custom finder. public abstract class GangsterBean implements EntityBean { public Collection ejbFindByPrimaryKeys(Collection keys) { return keys; } }

[JBoss-user] 3.2 Documentation ?

2003-06-06 Thread Alban Soupper
Hi all, we have baught the all the year subcription documentation, I have wait 'til now for a documentation (at least the installation/configuration part) of the 3.2 version of JBoss. BUT I can't find any doc for installation/configuration of JBoss 3.2 ! Where can I find some information ?

Re: [JBoss-user] EJB-QL Finder and POJO

2003-06-06 Thread DavidNeuer
Whoops, I totally misunderstood your question (obviously). The spec says that EJB-QL operates on abstract schema types. I would imagine that, for DVCs (which is what we're talking about here, right?) the abstract schema type is just Object. I don't see anything in the spec which contradicts it,

Re: [JBoss-user] Had the Pay-For Documentation Been updated for 3.2?

2003-06-06 Thread Stefan Arentz
On Thursday, Jun 5, 2003, at 16:48 Europe/Amsterdam, Bill Burke wrote: The 3.2 documentation is in the process of being updated. The updated, free, O'Reilly JBoss 3.0 Workbook has been updated for 3.2 as well, we're just waiting on publisher. Links to buy doco or review free doco is here:

Re: [JBoss-user] JBoss and JDO

2003-06-06 Thread David Jencks
If you are willing to struggle with applying patches, I've implemented jca support for tjdo and it works fine in jboss. You could push the tjdo committers to apply my patches. david jencks On 2003.06.05 09:59 Tom Davies wrote: On Wed, 2003-06-04 at 18:36, Pete Beck wrote: This leads me on

Re: [JBoss-user] AOP typical usages

2003-06-06 Thread Andreas Mecky
Hi Bill, I guess that most of us have already read through this page. But where are the real examples? I mean intercepting every method in one class (as an example) to put a logger in before and after is a useless example. Since you cannot for example get the calling parameters it is kind of

Re: [JBoss-user] MBean deployment ignores depends tag

2003-06-06 Thread Scott M Stark
All dendencies must be started before you mbean. Show the startup message ordering that illustrates otherwise. You say you specify one ejb dependency. If other ejbs are used directly or indirectly then some ejbs in the jar may not have been started when you mbean is started. EJBs are deployed in

[JBoss-user] http session clustering

2003-06-06 Thread Stefano Maestri
Is possible to use http session clustering in a partition with a name different from DefaultPartition. If yes, where have I to set the partition name? I didn't find anything in Clustering docs and I take a look to the code but I can't figure where it take the Partition name. But if I set a

RE: [JBoss-user] http session clustering

2003-06-06 Thread Sacha Labourey
Take a look at server\all\deploy\jbossha-httpsession.sar\ClusteredHttpSessionEB.jar\META-IN F\jboss.xml -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Stefano Maestri Sent: jeudi, 5. juin 2003 17:56 To: [EMAIL PROTECTED] Subject: [JBoss-user]

RE: [JBoss-user] EJB-QL Finder and POJO

2003-06-06 Thread DavidNeuer
The findByAge(Inteter) one works fine by itself? I.e., you verfied that the syntax is valid for Integers but not Objects? What's the SQL-type/JDBC-type your CMP POJO class is mapped as? Dave Rupp,Heiko [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 06/05/2003 12:00 PM Please respond to

Re: [JBoss-user] MBean deployment ignores depends tag

2003-06-06 Thread Alex Hornby
On Thu, 2003-06-05 at 16:45, Scott M Stark wrote: All dendencies must be started before you mbean. Show the startup message ordering that illustrates otherwise. You say you specify one ejb dependency. If other ejbs are used directly or indirectly then some ejbs in the jar may not have been

[JBoss-user] CMP EjbCreate on Identity Field

2003-06-06 Thread Felipe Oliveira
hi all, i am writing a CMP entity bean that uses a mssql table with a identity (auto-increment) primary key. how do i tell jboss not to use the primary key field on inserts? is it possible? i tried to set the field as read-only but it didn't work. jboss didn't let me have a pk field as

RE: [JBoss-user] AOP typical usages

2003-06-06 Thread Bill Burke
Please go to the following link. We have implemented pre-packaged aspects that leverage JBoss itself. Notice that logging is NOT one of them! First half of doco on this page is about framework, 2nd half is the aspects. Transactional ACID Objects, Replication, Caching, Remoting, transactional

RE: [JBoss-user] Had the Pay-For Documentation Been updated for 3.2?

2003-06-06 Thread Bill Burke
Whoops, sorry! http://www.jboss.org/index.html?module=htmlop=userdisplayid=developers/pro jects/jboss/aop -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Stefan Arentz Sent: Thursday, June 05, 2003 11:17 AM To: [EMAIL PROTECTED] Subject: Re:

Re: [JBoss-user] Quick Explanation.

2003-06-06 Thread Mikael Eriksson - Swedish Connection
Hi The interception is after the call, so that before the client gets its collection the objects in it are remote references to the bean. All finder methods (in the bean) returns either a primary key object (finders that finds one object) or a collection of primary key objects (multifinders). I

[JBoss-user] Jetty OutOfMemoryError

2003-06-06 Thread mlange
Hi, I am taking some pressure on a web app which is running under JBoss3.2.0/Jetty???. I can reproduce the following error: java.lang.OutOfMemoryError: unable to create new native thread at java.lang.Thread.start(Native Method) at

[JBoss-user] EJB-QL

2003-06-06 Thread Maiquel Sampaio de Melo
Hi friends, Please, anybody can say where is the error? This is my procedure: findByParamenter(String name, String age). SELECT OBJECT(o) FROM Client o WHERE (o.name = ?1 OR ?1 IS NULL) AND (o.age = ?2 OR ?2 IS NULL). If any paramenter is null, there isn't any problem. Can you understand

RE: [JBoss-user] http session clustering

2003-06-06 Thread Bill Burke
This is in the doco. Chapter 5. Clustering EJB. in jboss.xml jboss enterprise-beans session ejb-namenextgen.StatelessSession/ejb-name jndi-namenextgen.StatelessSession/jndi-name clusteredTrue/clustered cluster-config partition-nameMyPartition/partition-name

RE: [JBoss-user] EJB-QL Finder and POJO

2003-06-06 Thread Jeremy Boynes
The spec does not support comparison of unknown Seralizable types, but this is supported by JBoss-QL. However, as the object is stored in the database as a binary array, it may not be supported by the resulting SQL query (e.g. if it is a BLOB column) A possible option is to map the class to a

RE: [JBoss-user] EJB-QL

2003-06-06 Thread Jeremy Boynes
You must use fully qualified class names findByParamenter(java.lang.String name, java.lang.String age) Jeremy /* * Jeremy Boynes * Partner * Core Developers Network */ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

Re: [JBoss-user] Jetty OutOfMemoryError

2003-06-06 Thread Hunter Hillegas
Running on Linux? Try 1.4.0_x We had problems with 1.4.1. From: [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Thu, 5 Jun 2003 19:22:23 +0200 (CEST) To: [EMAIL PROTECTED] Subject: [JBoss-user] Jetty OutOfMemoryError Hi, I am taking some pressure on a web app which is running

RE: [JBoss-user] EJB-QL

2003-06-06 Thread Jeremy Boynes
Sorry, I meant to say in the deployment descriptor query query-method method-namefindByParamenter/method-name method-params method-paramjava.lang.String/method-param method-paramjava.lang.String/method-param /method-params /query-method ... /query At least, I think

Re: [JBoss-user] CMP EjbCreate on Identity Field

2003-06-06 Thread Alexey Loubyansky
Hello Felipe, Something like the following in jbosscmp-jdbc.xml entity ejb-nameMyBean/ejb-name cmp-field field-nameid/field-name auto-increment/ /cmp-field ... !-- retrieves generated key of the record inserted into

[JBoss-user] Web security problem

2003-06-06 Thread David Whitmarsh
I'm trying to enable web security on a j2ee application under jboss-3.2.0_tomcat-4.1.24. Problem is that After making (what I think is) all the necessary config changes, I always get a 403 error from tomcat when accessing secure pages - the browser doesn't display a login screen. There are no

[JBoss-user]

2003-06-06 Thread
ºô¸ô¥[·ù¥i¥H¿à¥Hºû¥Í,¬Æ¦ÜÅý±zÅܦ¨´I¦³,¬O¯uªº¶Ü?¦b¼Ú¬ü¦U°ê,ºô¸ôªº Soho±Ú¥H¥[·ùºô¯¸¨ÓÁÈ¿úªº¨Ò¤l,¦h¤£³Ó¼Æ;[EMAIL PROTECTED],«o¤£¦h¨£,³o¬O¬°¤°»ò©O? [EMAIL PROTECTED],¨ä©â¦þª÷±ø¥ó,[EMAIL

Re: [JBoss-user] JBoss 4.0

2003-06-06 Thread Ken Yee
snpe [EMAIL PROTECTED] writes: Complete output is in attach (11k in bz2 format) 1) don't *ever* send attachments into a mailing list (sorry...I admin a few lists and this is one of my pet peeves and I banned it at the list server level). All listers will see is a bunch of garbage ASCII text 2)

RE: [JBoss-user] Web security problem

2003-06-06 Thread Dan Durkin
Try changing rolesQuery to return two columns named Role and RoleGroup, module-option name=rolesQueryselect 'Operator', 'Roles' from operator where login_name=?/module-option To module-option name=rolesQueryselect 'Operator' as Role, 'Roles' as RoleGroup from operator where

Re: [JBoss-user] JBoss 4.0

2003-06-06 Thread Bavo De Ridder
Hi, .bz2 format is a newer, mostly unix/linux zip format with a supposedly higher compression rate but more cpu demands. Attachments are always bad on lists, it is better to: 1) copy-paste just to relevant parts 2) supply a URL to the attachment(s) B. On Thursday 05 June 2003 21:19, Ken Yee

RE: [JBoss-user] Jetty OutOfMemoryError

2003-06-06 Thread Bill Burke
Seriously? I've been on 1.4.1_02 for awhile on Linux RH8. Seems ok. Of course, I'm just doing development and testing on it, although I did run ECPerf once. Bill -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Hunter Hillegas Sent: Thursday, June

Re: [JBoss-user] OT: XDoclet problem - empty ejb-jar.xml / Neither interface gener

2003-06-06 Thread robert
Hello, list. I have a simple little class that I'm trying to use to get started with XDoclet (v1.2 b2), but my ejb-jar.xml turns up empty (except for the generated placeholders) and I can't seem to generate interfaces. I've tried a few variations of the attached, and nothing seems to work.

Re: [JBoss-user] OT: XDoclet problem - empty ejb-jar.xml / Neither interface gener ated

2003-06-06 Thread Matthew Hixson
This looks very similar to my build.xml, which is working. Are you sure you've the right tags in your source files? -M@ On Thursday, June 5, 2003, at 01:05 PM, Bruyn, Bill wrote: Hello, list. I have a simple little class that I'm trying to use to get started with XDoclet (v1.2 b2), but my

Re: [JBoss-user] Jetty OutOfMemoryError

2003-06-06 Thread Hunter Hillegas
Yeah... I watched the java process go from 256MB to 512MB to 1.5GB of used memory and then crash... Reverting back to 1.4.0 saved us... 1.4.2 fixes a couple of bad memory leaks so I'm hoping that will let us move forward again. From: Bill Burke [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED]

Re: [JBoss-user] JBoss 4.0

2003-06-06 Thread snpe
Hello, I'm sorry, but I can see file (return from list) on linux with kmail and click on file. File is only 11k. I have a lot errors and this is bigger file I'm sory, again Regards Haris Peco This is errors (not all) : 17:42:23,467 WARN [MainDeployer] The manifest entry in

RE: [JBoss-user] OT: XDoclet problem - empty ejb-jar.xml / Neither interface gener ated

2003-06-06 Thread Bruyn, Bill
I'm not sure of anything at this point. :o] The good news is, a guy from the XDoclet list pointed out that I needed to set my fileset attribute to .., so now it's happy. Thanks anyway. -Original Message- From: Matthew Hixson [mailto:[EMAIL PROTECTED] Sent: Thursday, June 05, 2003 1:55

Re: [JBoss-user] Should I cache ejbRefs?

2003-06-06 Thread Brian Wallis
On Fri, 6 Jun 2003 00:01, [EMAIL PROTECTED] wrote: Brian, The XDoclet utilobject pattern caches Remote and (Local Homes the latter is of course only valid w/in one JVM), I've seen this mentioned on theserverside.com and elsewhere as a best practice, and after digging through the spec to be

[JBoss-user] Problems with JBoss on JNDI Data Source Connection

2003-06-06 Thread Paulo Francesco Pacheco
Hi... I have taken some exceptions with my JBoss...jboss-3.0.6_tomcat-4.1.18 ...the client classpath is ok... my jdk version is jdk1.3.1and it´s ok... I wrote a simple test code... package com.ccibm.wiredsys.xclient; import java.beans.Beans;import java.io.IOException;import

RE: [JBoss-user] Problems with JBoss on JNDI Data Source Connection

2003-06-06 Thread Finn, Michael
Two problems: 1) Anything in JNDI starting with java:/ is only accessible from in-VM, meaning the lookup must be from within the same VM as JNDI. 2) You cannot access DataSources from out-of-VM anyway. Solution: 1) Try this from in-VM, like in a JSP page. 2) Make sure you are addressing

[JBoss-user] Some J2EE Design Questions

2003-06-06 Thread Sasidharan, Manoj
Title: JBoss XA transaction with WebSphere MQ Hello All, 1. How can a daemonprocess/service implemented in J2EE world? Any design pattern? 2. Is there any way to trap J2EE client disconnect events - we want to timeout user sessions if they fail to logout properly from our J2EE app and

RE: [JBoss-user] EJB-QL Finder and POJO

2003-06-06 Thread Rupp,Heiko
David, The findByAge(Inteter) one works fine by itself? I.e., you verfied that the syntax is valid for Integers but not Objects? What's the Yes, exactly. SQL-type/JDBC-type your CMP POJO class is mapped as? It is a varbinary. I can access it without problem in getters and setters. It makes

[JBoss-user] Running Jboss (3.2.0) as background process

2003-06-06 Thread Ramrakhiani, Vikas
Hi, What should I do to run jboss as background process? thanks for your help, vikas. --- This SF.net email is sponsored by: Etnus, makers of TotalView, The best thread debugger on the planet. Designed with thread debugging features you've

RE: [JBoss-user] EJB-QL Finder and POJO

2003-06-06 Thread Rupp,Heiko
Jeremy, It's not that it is forbidden, just not allowed. The spec defines Thanks, this helped. Just for completeness: can you tell me the location in the spec - I seem to always overlook it. Thanks Heiko -- Bancotec GmbH EMail: [EMAIL PROTECTED] Calwer Str. 33 Telefon: +49 711 222

[JBoss-user] CMR and caching

2003-06-06 Thread Rafal Kedziorski
hi, at this time we are not using CMR and I have a small question. whe have this three tables: tree structure: CREATE TABLE category_tree ( category_tree_id BIGINT NOT NULL, -- (PK) parent_idBIGINT, mandant_id BIGINT NOT NULL, -- (FK) position

Re: [JBoss-user] http session clustering

2003-06-06 Thread Stefano Maestri
Thanks, it works. just a suggestion add this on your very good JBoss Clustering docs. And another thing: I read in jbossbook3.2.1 draft docs in chapter Using Clustering with Tomcat this phrase: If you are using a load balancer, make sure that your setup uses sticky session. I'm agree that's

[JBoss-user] 2 cents utility for generating DynamicMBean code

2003-06-06 Thread Marco.Mistroni
Hi all, in my spare time i have written a small utility that generates code for Dynamic MBean based on an XML file (and XSLT transformations). anyone would like to try it out/enhance/modify etc? pls mail me ([EMAIL PROTECTED]) so that i'll send u the zip, since i dont' want to spam the

Re: [JBoss-user] CMR and caching

2003-06-06 Thread Lawrence Mount
My experience is that using commit option A or D and cmr speeds up these processes significantly once the caching kicks in. Rafal Kedziorski wrote: hi, at this time we are not using CMR and I have a small question. whe have this three tables: tree structure: CREATE TABLE category_tree (

[JBoss-user] JBoss specific XDoclet Tags

2003-06-06 Thread Hansen, Erik
Hi. I'm using an Eclipse plugin for generating EJB code and due to its limitations, I've needed to add XDoclet tags to take care of the things that the plugin doesn't. For the most part everything works, but I've been having problems with some of my EJBs. Specifically, I have an EJB with a

[JBoss-user] [EJB-QL] dealing with collection relationship even if they are empty

2003-06-06 Thread Ionel Gardais
Hi, I am trying to create a JBOSS-QL query that need to use collection condition. the query is : SELECT DISTINCT OBJECT(t) FROM ejbTask AS t, IN(t.mandatories) m, IN(t.optionals) o WHERE ((t.owner.name LIKE ?1) OR (m.name LIKE ?1) OR (o.name LIKE ?1)) AND ((t.startDate BETWEEN ?2 AND ?3

Re: [JBoss-user] Should I cache ejbRefs?

2003-06-06 Thread DavidNeuer
Handles are serializeable, refs aren't. But for Entity beans anyway, refs are supposed to survive a restart. From the spec: Each entity object has an identity which, in general, survives a crash and restart of the container in which the entity object has been created. The object identity is

Re: [JBoss-user] JBoss specific XDoclet Tags

2003-06-06 Thread Richard Stack
In Xdoclet 1.2.3beta there are 21 class level 10 method level tag references for JBoss. Take a look at @jboss.finder.query @jboss.query in the Javadocs for Xdoclet. Richard Hansen, Erik wrote: Hi. I'm using an Eclipse plugin for generating EJB code and due to its limitations, I've needed

[JBoss-user] Call an EJB from an Oracle Java Stored Procedure

2003-06-06 Thread Stefano Maestri
We are trying to write a java Stored procedure for oracle that call a session bean. We are experiencing some troble because when we set the InitialContext we get an error because org.jnp.interfaces.NamingContextFactory is not present in Aurora. We tryied to load it (extracted from

RE: [JBoss-user] Bug in 3.2.1?

2003-06-06 Thread Danny . Yates
ObjectNotFoundException is a subclass of FinderException. You can catch either: try { find(...) } catch (FinderException fe) { // something went wrong } or try { find(...) } catch (ObjectNotFoundException onfe) { // could not find object - do something clever, like

Re: [JBoss-user] java.lang.ClassCastException: $Proxy320

2003-06-06 Thread Janardhan Burugupalli
HI guys, I get the java.lang.ClassCastException: $Proxy320 exception when i deploy the jar file while the jboss is running that is the hot deploy...and then if i again try to get the Home interface it gives the above exception on JBoss-tomcat-3.2.1 can any one explain this regards jani

RE: [JBoss-user] Bug in 3.2.1?

2003-06-06 Thread Danny . Yates
I should just add, that the exception handler you show below should work OK. -- Danny Yates -Original Message- From: Jon Haugsand [mailto:[EMAIL PROTECTED] Sent: 06 June 2003 15:42 To: [EMAIL PROTECTED] Subject: [JBoss-user] Bug in 3.2.1? Look at this fragment. The call

RE: [JBoss-user] Bug in 3.2.1?

2003-06-06 Thread Rupp,Heiko
Hi, Look at this fragment. The call 'findAktivtByIsin' is a finder in another bean and it fails (just check the stacktrace). However, it fails with ObjectNotFoundException: No such entity. Why is that? If it does not exist, shouldn't it fail with FinderException? ObjectNotFoundException

RE: [JBoss-user] [EJB-QL] dealing with collection relationship even if they are empty

2003-06-06 Thread Jeremy Boynes
That second query looks OK to me - can you say how it fails to deploy? Another approach might be: SELECT DISTINCT OBJECT(t) FROM ejbPerson p, ejbTask t WHERE p.name LIKE ?1 AND (t.owner = p OR p MEMBER OF t.mandatories OR p MEMBER OF t.optionals) AND ((t.startDate BETWEEN ?2 AND ?3 OR t.endDate

RE: [JBoss-user] Some J2EE Design Questions

2003-06-06 Thread Finn, Michael
Title: JBoss XA transaction with WebSphere MQ 1. If EJB Timer (2.1) does not fit the bill for you, an MBean is a typically a good solution for this problem. Depends on what you mean by service. 2. Since RMI is a connectionless protocol (not a persistent connection), there is really no

Re: [JBoss-user] Bug in 3.2.1?

2003-06-06 Thread DavidNeuer
ObjectNotFoundException is a subclass of FinderException. NoSuchObjectExsists is what gets throw if you reference an actual bean interface method on an Entity that's beed removed. Dave Jon Haugsand [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 06/06/2003 10:41 AM Please respond to

Re: [JBoss-user] Some J2EE Design Questions

2003-06-06 Thread Dan Avram
1. If EJB Timer (2.1) does not fit the bill for you, an MBean is a typically a good solution for this problem. Depends on what you mean by service. What is the status of JBoss implementing EJB 2.1 specs ? The only source of information I have on this subject is theserverside's matrix, which

[JBoss-user] BUSINESS PROPOSAL

2003-06-06 Thread JACOB OKUNDAYE
Dear sir We wish to solicit your assistance to provide us with a solution to a money transfer of Thirty nine Million United States Dollars. Our duty is to review all contracts awarded to foreign firms/contractors from the Ministry of Petroleum from 1993 to May 28th 1999. It may interest you to

Re: [JBoss-user] Some J2EE Design Questions

2003-06-06 Thread Richard Stack
Hello Mike, Could you explain what you mean when you say RMI is a connectionless protocol (not a persistent connection) Richard Finn, Michael wrote: 1. If EJB Timer (2.1) does not fit the bill for you, an MBean is a typically a good solution for this problem. Depends on what you mean by

RE: [JBoss-user] Some J2EE Design Questions

2003-06-06 Thread Finn, Michael
Title: RE: [JBoss-user] Some J2EE Design Questions Pretty sure it's all in cvs head at this point, which means 4.0 (should be in DR1). I don't think there are plans to backport to 3.2 branch, but to be sure, check jboss-dev. mike -Original Message- From: Dan Avram [mailto:[EMAIL

Re: [JBoss-user] java.lang.ClassCastException: $Proxy320

2003-06-06 Thread Mauricio De Diana
I had the same error when I had a deployed ear with another name but the same classes. Regards, Mauricio --- Janardhan Burugupalli [EMAIL PROTECTED] escreveu: HI guys, I get the java.lang.ClassCastException: $Proxy320 exception when i deploy the jar file while the jboss is running

RE: [JBoss-user] bind to specific IP

2003-06-06 Thread JD Brennan
I haven't tried this, but I think you'd just need to change: JBOSS/server/default/conf/jboss-service.xml change 1099, 8083 and JBOSS/server/default/deploy/jbossmq-service.xml change 8091 and if you're running the tomcat bundle, also: JBOSS/server/default/deploy/tomcat4-service.xml

[JBoss-user]

2003-06-06 Thread
1+1 100M asp cgi,php +ACCESS 300/ () 200M asp cgi,php +ACCESS350/() 300M asp cgi,php +ACCESS ,, 500/ 3721500 http://www.2500.cn 0592-5814630 0592-5814561 QQ93767793 --- This SF.net email is sponsored by:

RE: [JBoss-user] Microsoft Virtual Machine

2003-06-06 Thread Astie, Sebastien
Magesh, The web cosole features an applet, the message you have means that you do not have a java plugin enabled in you Internet Explorer. You just need to install the java VM from SUN then enable your Java plugin at the end of the installation process. -Original Message- From: Magesh

RE: [JBoss-user] bind to specific IP

2003-06-06 Thread Astie, Sebastien
I forgot to mention that you do not have to change port configurations -Original Message- From: Nathan Hoover [mailto:[EMAIL PROTECTED] Sent: Friday, June 06, 2003 12:07 PM To: [EMAIL PROTECTED] Subject: [JBoss-user] bind to specific IP We run JBoss on our HP NonStop mainframe system...

RE: [JBoss-user] bind to specific IP

2003-06-06 Thread Astie, Sebastien
Nathan, Try the following attribute for your mbean configurations: attribute name=BindAddress%YOUR IP ADDRESS THERE%/attribute you can add that, for example, in /jboss/server/default/deploy/jms/jbossmq-service.xml mbean code=org.jboss.mq.il.oil.OILServerILService

RE: [JBoss-user] DefaultJMSProvider not bound

2003-06-06 Thread Astie, Sebastien
Title: Message Hello Mark, This is due to the fact that the jms configuration is in /deploy/jms folder in JBoss 3.2.1. By default the deploy folder is parsed first for deployments and then its subfolders. So your EAR is deployed before the JMS implementation. To get rid of that problem

Re: [JBoss-user] Some J2EE Design Questions

2003-06-06 Thread Nicholas
We have attacked this problem in two ways. One was to use the MBean timer to time out sessions after a period of inactivity. The second, more difficult but with some fringe benefits, was to use heartbeating from the client. We used JMS heartbeats. See

Re: [JBoss-user] Call an EJB from an Oracle Java Stored Procedure

2003-06-06 Thread Nicholas
Stefano; I have had some luck loading classes using a custom Ant task. It is really just a wrapper for LoadJava but easier to use if you are Ant inclined. It looks like this: patternset id=oracle.load.classes include name=jbossall-client.jar/ /patternset

RE: [JBoss-user] EJB-QL Finder and POJO

2003-06-06 Thread Jeremy Boynes
though one can think of comparing hash values of it or such). But - and this is why I ask - I don't see it forbidden in the spec. It's not that it is forbidden, just not allowed. The spec defines comparisons for * string * boolean * datetime * entity_bean * arithmetic (number) and defines which

[JBoss-user] O'Reilly JBoss 3.2 workbook

2003-06-06 Thread Bill Burke
The Title still says 3.0, but the O'Reilly 3.2 companion workbook for O'Reilly 3rd edition. Look for more stuff with O'Reilly in the future. Best regards, Sacha and Bill --- This SF.net email is sponsored by: Etnus, makers of TotalView,

[JBoss-user] JBoss 3.0.7 Windows installer available

2003-06-06 Thread Marcel Ammerlaan
Hi, When deploying one of our applications for our clients, we needed an installer for JBoss on the windows platform so we developed one. This installer is now available (without the application itself) for everyone to enjoy. It basically installs JBoss 3.0.7 with an optional JRE and starts JBoss

[JBoss-user] RE: [JBoss-dev] O'Reilly JBoss 3.2 workbook

2003-06-06 Thread Bill Burke
Whoops, it would be nice if I gave the actuall URL. 3.2 Workbook is free BTW. http://www.oreilly.com/catalog/entjbeans3/workbooks/index.html Bill -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Bill Burke Sent: Friday, June 06, 2003 5:59 PM To:

RE: [JBoss-user] JBoss 3.0.7 Windows installer available

2003-06-06 Thread Rod Cope
In case others would like something similar on Linux, the Community Edition of Out-of-the-Box works on both Windows and Linux. It optionally installs JDK 1.4.1_02, JBoss 3.2.0, MySQL 4.0.12, Ant 1.5.3, JUnit, and a bunch of other projects. It starts both JBoss and MySQL as a service on either

[JBoss-user] 3.0.8 Release is available from SF

2003-06-06 Thread Scott M Stark
The 3.0.8 release is available from sourceforge. http://sourceforge.net/project/showfiles.php?group_id=22866 The release notes are available here: http://sourceforge.net/project/shownotes.php?release_id=163197 -- Scott Stark Chief Technology Officer JBoss Group, LLC