Re: [JBoss-user] Replication fails: strange JavaGroups Exception

2003-01-17 Thread Jules Gosnell
The code in question does this : try { target.getClass().getMethod(methodName, argClasses).invoke(target, argInstances); } catch (Exception e) { _log.error(this should never happen - code version mismatch ?, e); } } A method invocation has arrived via JavaGroups and I am

RE: [JBoss-user] serious ejbql compiler problem

2003-01-17 Thread Alexey Yudichev
Title: RE: [JBoss-user] serious ejbql compiler problem The query you proposed makes a join using both relationships as well: SELECT t0_c.id FROM storecategory t0_c, partner t2_p, partner t3_c_partners, partner_categories_stor_1cl2gdd t4_c_partners_RELATION_TABLE, partner t1_c_partnerOwner

should a transaction rollback if CreateException is thrown by jboss? was: [JBoss-user] Rollback Transaction

2003-01-17 Thread Alexey Yudichev
Title: should a transaction rollback if CreateException is thrown by jboss? was: [JBoss-user] Rollback Transaction Then there's a bug in jboss (I use 3.0.4) because when CreateException is being thrown by a CONTAINER (not bean) during ejbCreate(), transaction is not rolled back. Practical

[JBoss-user] Oracle / DataSource Deployment Problem with 3.0.5

2003-01-17 Thread Meyer-Willner, Bernhard
Hi, we just tried switching our JBoss 3.0.4 to 3.0.5. Although the class loading procedure seems to have changed a bit, we managed to pretty much deploy our app in 3.0.5 successfully (we're using an exploded EAR for development use). We do, however, have problems with deploying our oracle

[JBoss-user] JBoss/Jetty and JSP 2.0

2003-01-17 Thread Pete Beck
Anyone know what sort of timeframe we might be able to use JSP 2.0 in JBoss? -- Peter Beck BEng (hons) - Managing Director, Electrostrata Ltd. http://www.electrostrata.com --+-+-- Experts in e-business and e-commerce --- This SF.NET email

[JBoss-user] best practice - selecting a finder based on search criteria VO

2003-01-17 Thread Jim Clayson
Hi, I have web-app being built to run within a jboss304+tomcat406 environment. I have a session facade whose responsibilty it is, amongst others, to take a searchCriteriaVO (value object) and use it to select a particular finder. Now, I know that one could take those criteria and take every

Re: [JBoss-user] best practice - selecting a finder based on search criteria VO

2003-01-17 Thread Alex Loubyansky
There is a dynamic-ql for this. In the bean: public abstract Collection ejbSelectMyDynamicQuery(String ejbQl,Object[] args) throws FinderException; Where ejbQl is EJBQL/JBossQL query, args - array of parameters. In jbosscmp-jdbc.xml: query query-method

Re: [JBoss-user] best practice - selecting a finder based on search criteria VO

2003-01-17 Thread Joey Gibson
On Fri, 17 Jan 2003 12:27:02 +, Jim Clayson [EMAIL PROTECTED] wrote: ||| searchCriteriaVO has ||| engineType (all,1, 2 ,3) ||| condition (any,good, fair, poor) ||| registrationFromDate (could be null) ||| registrationToDate(could be null) ||| ||| The above criteria could

RE: [JBoss-user] Oracle / DataSource Deployment Problem with 3.0.5

2003-01-17 Thread MNewcomb
Do you have loader-repository in your jboss-app.xml file for you EAR? I am getting this same error with jboss-head (1/16/03, 9:30am-ish EST) using a mySQL datasource that was fine in jboss-head from 11/26/02. Everything deploys fine when I use the default loader-repository. -Original

Re: [JBoss-user] Could not enlist in transaction on entering meta-aware object

2003-01-17 Thread David Jencks
Are you somehow sharing a connection handle between threads? that is the usual cause of this problem. One way to cause this is to get and hold a connection handle in a static method in a utility class. david jencks On Thursday, January 16, 2003, at 12:10 PM, David Ward wrote: I am getting

Re: [JBoss-user] best practice - selecting a finder based on searchcriteria VO

2003-01-17 Thread Jim Clayson
Alex Loubyansky wrote: There is a dynamic-ql for this. In the bean: public abstract Collection ejbSelectMyDynamicQuery(String ejbQl,Object[] args) throws FinderException; Where ejbQl is EJBQL/JBossQL query, args - array of parameters. In jbosscmp-jdbc.xml: query

Re: [JBoss-user] Oracle / DataSource Deployment Problem with 3.0. 5

2003-01-17 Thread Meyer-Willner, Bernhard
Yes, I'm using loader-repositorycom.ourcompany.ourproject:loader=ourapp.ear/loader-repos itory (the EAR directory is ourapp.ear) So you are saying if we take the loader-repository out then it would deploy fine? Bernhard -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL

[JBoss-user] Loosing my mind

2003-01-17 Thread James Ward
Shouldn't this work: index.jsp %@ page session=true % Your session id: %= session.getId() % Currently I am getting: Your session id: I am using JBoss 3.0.5 for j2se 1.4 (with Jetty). Thanks in advance. -James --- This SF.NET email is

RE: [JBoss-user] Oracle / DataSource Deployment Problem with 3.0. 5

2003-01-17 Thread MNewcomb
I've traced the problem to DriverManager. In my case, I'm using mySQL, and DriverManager has the Driver class loaded, but it skips it because it tries to load the class from the callers ClassLoader, and class doesn't match the class that was already loaded, so, it skips it. So, either the

Re: [JBoss-user] best practice - selecting a finder based on searchcriteria VO

2003-01-17 Thread Jim Clayson
Joey Gibson wrote: On Fri, 17 Jan 2003 12:27:02 +, Jim Clayson [EMAIL PROTECTED] wrote: ||| searchCriteriaVO has ||| engineType (all,1, 2 ,3) ||| condition (any,good, fair, poor) ||| registrationFromDate (could be null) ||| registrationToDate(could be null) ||| ||| The

Re: [JBoss-user] Http Clustering: No store ?!?

2003-01-17 Thread João Clemente
On Fri, 17 Jan 2003 07:36:57 + Jules Gosnell [EMAIL PROTECTED] wrote: João Clemente wrote: As I've reported some days ago, when using 3.0.5RC2, I am getting these strange lines in my log file. This time I'm using 3.0.5 binaries available in sourceforge. 01:16:45,502 INFO

[JBoss-user] JBoss Axis - Updates To A Session Bean With Complex Types

2003-01-17 Thread Nicholas
When exposing a session bean as a web service, the serialization of a remote to be retrieved by a SOAP client seems to be pretty easy. e.g. Session Bean: ClientManager Function: getClient(int i) Returns: ClientRemote The remote, ClientRemote can be viewed as a bean (since it is a collection of

Re: [JBoss-user] Oracle / DataSource Deployment Problem with 3.0. 5

2003-01-17 Thread Meyer-Willner, Bernhard
Does anybody from the JBoss dev team like to comment on the changes in classloading behavior? I believe this would be interesting for a lot of people. Bernhard -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Gesendet: Freitag, 17. Januar 2003 16:51 An: [EMAIL

AW: [JBoss-user] JBoss Axis - Updates To A Session Bean With Complex Types

2003-01-17 Thread Jung , Dr. Christoph
Write a custom bean deserializer whose create method contacts a factory or something. See org.jboss.net.axis.server.EntityBeanDeserializer and the jboss.net testsuite (it´s still crappy and only copes with a single, primitive primary key, but works). The deserializer caches the properties until

Re: [JBoss-user] Oracle / DataSource Deployment Problem with 3.0. 5

2003-01-17 Thread Scott M Stark
jboss-head uses a different class loading model than 3.0.5/3.2.0RC1 so its not clear its related to the class loading model. Create a bug report on 3.0 or 3.2 with the details of how the driver is deployed. Include any stack traces and try to include the class loading ucl.log that results from

Re: [JBoss-user] JBoss/Jetty and JSP 2.0

2003-01-17 Thread Ricardo Argello
Tomcat 5 supports the Servlet 2.4 and JSP 2.0 specifications: http://jakarta.apache.org/tomcat/tomcat-5.0-doc/index.html I am not sure if it works, but there is a tomcat50 module in JBoss CVS: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/jboss/contrib/tomcat50/ Ricardo Argüello -

Re: AW: [JBoss-user] JBoss Axis - Updates To A Session Bean With Co mplex Types

2003-01-17 Thread Nicholas
Thanks for the reference. Looking through the code now. setOptions() seems prety key, since it is the hey to retrieve the according Home object. Where/When does that get called ? //Nicholas --- Jung , Dr. Christoph [EMAIL PROTECTED] wrote: Write a custom bean deserializer whose create method

Re: [JBoss-user] JBoss/Jetty and JSP 2.0

2003-01-17 Thread Daniel Bruce Lynes
On Friday 17 January 2003 01:50, Pete Beck wrote: Anyone know what sort of timeframe we might be able to use JSP 2.0 in JBoss? You can probably use it right now, if you use Tomcat 5 in it. The main problem with JSP 2.0, is that the JSP 2.0 spec isn't finalized (Tomcat 5 is still in alpha,

[JBoss-user] JBoss 3.0.0-3.0.4

2003-01-17 Thread Daniel Bruce Lynes
My datasource SAR won't even deploy in 3.0.5, so I can't comment on it. However, I cannot seem to get Chinese text to work properly in JBoss 3 series. I was running JDK 1.4 under JBoss 2.4.10, Tomcat 4.1.18 with the Oracle 9iR2 JDK 1.4 driver. After adding 3.0.x into the mix, all of the

[JBoss-user] JMX4ODP

2003-01-17 Thread Lucas McGregor
The new version of JMX4ODP was released today. JMX4ODP is an open source collection of packages that extend the Sun JMX remoting framework with the focus enabling JMX to manage systems distributed across networks. JMX4ODP v0.2 includes: * A peer-to-peer networking model that allows you

Re: AW: [JBoss-user] JBoss Axis - Updates To A Session Bean With Co mplex Types

2003-01-17 Thread Nicholas
Sorry; I jumped the gun a bit there. I think I understand how it works. Do you have a sample WSDD file you can send me ? //Nicholas --- Jung , Dr. Christoph [EMAIL PROTECTED] wrote: Write a custom bean deserializer whose create method contacts a factory or something. See

Re: [JBoss-user] Replication fails: strange JavaGroups Exception

2003-01-17 Thread Vladyslav Kosulin
Jules Gosnell wrote: Alternatively, d/l the latest Jetty 4.2.5? from jetty.mortbay.org and follow the instructions in this FAQ for updating your jbossweb.sar with fresh Jetty jars... Unfortunately, FAQ is not clear in some details: 1) Jetty 4.2.5 includes org.mortbay.jetty.jar and

[JBoss-user] Big problem deploying on direrent servers

2003-01-17 Thread Jordi Valldaura i Riqué
Hello, I have to deploy the same code to diferent servers(3 to be exact), the only diference are the deployment descriptors (generated by xdoclet). Servers interact each other, my problem is that when I change my code and redeploy it without stopping the servers I get ClassCastException when one

[JBoss-user] Debian JBOSS packages

2003-01-17 Thread Joe Phillips
I have some JBOSS/Tomcat packages built for Debian GNU/Linux available for general use. They are currently based on the 3.0.2+tomcat binary files found on Sourceforge. JBOSS 3.2 packages are in the works. You can find the packages on my company's Debian archive[1]. The packages can be

Re: [JBoss-user] serious ejbql compiler problem

2003-01-17 Thread Dain Sundstrom
This is a bug. Please file a bug report at sourceforge. MEMBER OF should be generating a sub select or a left join. This is simmilar to the IS NULL bug we recently fixed. -dain On Friday, January 17, 2003, at 02:49 AM, Alexey Yudichev wrote: The query you proposed makes a join using both

Re: [JBoss-user] FW: Open Source Excellence Awards

2003-01-17 Thread marius
On Thu, Jan 16, 2003 at 11:36:33AM -0500, Ben Sabrin wrote: Thought you might want to read the official release. We are swimming with the Sharks:) I think we can and should win the open source project as we have a more mature code base and more downloads than any of the other projects. It

Re: [JBoss-user] Oracle / DataSource Deployment Problem with 3.0. 5

2003-01-17 Thread Scott M Stark
Read the class loading architecture excerpt from here: http://sourceforge.net/docman/display_doc.php?docid=14516group_id=22866 Scott Stark Chief Technology Officer JBoss Group, LLC - Original Message - From: Meyer-Willner, Bernhard

[JBoss-user] JBoss 3.2 RC1 ClassLoader - Can't find bundle for base name

2003-01-17 Thread Muruga Chinnananchi
Hi, Thanks very much for JBoss 3.2 RC1 release. I just upgraded from JBoss 3.2 Beta3 to JBoss 3.2 RC1 and i didn't change any configuration, i just moved my EAR file from Beta3 /deploy to RC1 /deploy directory. And i get this following error. The startup.war file uses some resources.properties

[JBoss-user] Docs for 3.2 release?

2003-01-17 Thread Muruga Chinnananchi
Hi, I noticed that JBoss Comprehensive Documentation 12 month Subscription from Jboss Group covers only 3.0.4. But i am looking for some docs/materials on 3.2 release. Do you know where i can purchase docs for 3.2 release? Is there any plan to include 3.2 release docs to the 12 month

Re: [JBoss-user] anyone have a checkout right now? (need javants.exe)

2003-01-17 Thread Rob Helmer
Great, thanks for your help :) On Thu, Jan 16, 2003 at 12:20:07AM -0500, Guy Rouillier wrote: Sent to your email address. - Original Message - From: Rob Helmer [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, January 15, 2003 2:14 AM Subject: [JBoss-user] anyone have a

Re: [JBoss-user] jms issues

2003-01-17 Thread Ed Brown
Quoting Peter Fagerlund [EMAIL PROTECTED]: torsdagen den 16 januari 2003 kl 03.49 skrev Ed Brown: Here are the list of problems that I ran into when I used the JBoss implementation: 1. If too many messages were queued up, and the server was stopped and restarted, the server

[JBoss-user] Hi Remember me..!!?

2003-01-17 Thread Isabelle
=3Chtml=3E =3Chead=3E =3Ctitle=3EDo you remember me=3F=3C=2Ftitle=3E =3Cmeta http-equiv=3D=22Content-Type=22 content=3D=22text=2Fhtml=3B charset=3Dwindows-1252=22=3E =3C=2Fhead=3E =3Cbody bgcolor=3D=22#FF=22 text=3D=22#00=22=3E =3Cfont size=3D=225=22=3E=3Ca

Re: [JBoss-user] Docs for 3.2 release?

2003-01-17 Thread Scott M Stark
All docs are release to the subscription as they come available. The 3.2 docs will be available next month. Scott Stark Chief Technology Officer JBoss Group, LLC - Original Message - From: Muruga Chinnananchi [EMAIL PROTECTED] To:

Re: [JBoss-user] Docs for 3.2 release?

2003-01-17 Thread Muruga Chinnananchi
Hi Scott, --- Scott M Stark [EMAIL PROTECTED] wrote: All docs are release to the subscription as they come available. The 3.2 docs will be available next month. Scott Stark Chief Technology Officer JBoss Group, LLC - Original

Re: [JBoss-user] Help! ClassNotFoundException: org.jboss.ejb.plugins.local.LocalHomeProxy

2003-01-17 Thread Guy Rouillier
- Original Message - From: Matthew Van Horn [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, January 17, 2003 1:48 AM Subject: [JBoss-user] Help! ClassNotFoundException: org.jboss.ejb.plugins.local.LocalHomeProxy Anyone know what might lead to this error?

Re: [JBoss-user] jms issues

2003-01-17 Thread Peter Fagerlund
fredagen den 17 januari 2003 kl 21.37 skrev Ed Brown: 1) I suspect a corrupted DB from a not clean shutdown 2) I suspect a corrupted DB from a not clean shutdown Shutdown was done using CTRL-C at the console. Since that was the way to shut it down, corrupted queues resulting from shutdown

[JBoss-user] JMS under JBoss

2003-01-17 Thread Daniel Bruce Lynes
I'm curious. Does JMS under JBoss guarantee delivery of messages? If so, what steps does it take to guarantee this? And, is there a size limitation on messages for which it guarantees delivery? Thanks. --- This SF.NET email is sponsored

[JBoss-user] SF task lists

2003-01-17 Thread Bill Burke
If you haven't already heard, I have created task lists on SourceForge for every JBoss project. All developers with CVS access can view and be assigned tasks. Only Lead Developers have the power to create and assign tasks so if you need to log a new task, communicate with the Lead Developer with

Re: [JBoss-user] jms issues

2003-01-17 Thread Rob Finneran
Hi Listees, Just to give feedback, and not to rant too much: I have also seen the problems stated in 1 and 2 of these messages. I had to remove message queueing from my production environments because of it. IMHO, It would be very big plus if the JMS reliability issues were resolved. I hate to