Re: [JBoss-user] Remote JMX Notifications - Having Trouble With Example ch2 xmbean1 in JBoss > 3.2.1

2003-11-24 Thread Nicholas
Perfect. Thanks. //Nicholas --- Scott M Stark <[EMAIL PROTECTED]> wrote: > > You have to replace the > deploy/jmx-invoker-adaptor-server.sar with the > docs/examples/jmx/jmx-rmi-adaptor.sar. The > jmx-invoker-adaptor-server.sar > does not support the remoting of the jmx > notifications in 3.2.2

[JBoss-user] apache + mod_jk + jboss*2 = no load balancing.

2003-11-24 Thread Mike Lindsey
I've got apache talking to a clustered jboss setup, using mod_jk, but I cannot get the load balacing to work. I can force connections to a specific app server, but no matter what I do, I can't get the initial connection to hit a 'random' server. my workers.properties: worker.list=node1,node2,

Re: [JBoss-user] EJB home methods are not allowed to access CMP or CMR

2003-11-24 Thread Scott M Stark
The only usecase for the ejbActivate/ejbPassivate callbacks is to cleanup resources like jms connections. The logic for calculating the derived value you showed is what needs to be done, and is a cache mechanism as ejbLoad is only called when the cache state is inconsistent with the persistent stor

Re: [JBoss-user] Remote JMX Notifications - Having Trouble With Example ch2 xmbean1 in JBoss > 3.2.1

2003-11-24 Thread Scott M Stark
You have to replace the deploy/jmx-invoker-adaptor-server.sar with the docs/examples/jmx/jmx-rmi-adaptor.sar. The jmx-invoker-adaptor-server.sar does not support the remoting of the jmx notifications in 3.2.2. -- Scott Stark Chief Technology Officer JBoss Group, LLC xxx

Re: [JBoss-user] JAAS Problem (login in same VM)

2003-11-24 Thread Scott M Stark
If the session is not secured then what exception are you getting in the absence of the JAAS login? Show the stack traces that are occurring. -- Scott Stark Chief Technology Officer JBoss Group, LLC Meyer-Willner, Bernhard wrote: Hi, this is the s

Re: [JBoss-user] Setting up Stores on JBoss

2003-11-24 Thread Scott M Stark
It looks correct and consistent with the 3.2.x admin devel guide section on the subject. -- Scott Stark Chief Technology Officer JBoss Group, LLC Brian McSweeney wrote: Hi all, I run a web application packaged as an ear on JBoss-3.2.2. I want to

Re: [JBoss-user] JBoss 3.2.3

2003-11-24 Thread Scott M Stark
Its named 3.2.3RC1 for release candidate 1 status. Its not the final 3.2.3 release. -- Scott Stark Chief Technology Officer JBoss Group, LLC [EMAIL PROTECTED] wrote: Hallo, I founfd JBoss 3.2.3 at SF.net. Is it the production release or only relea

Re: [JBoss-user] [ANN] JBoss-IDE 1.2.2 released

2003-11-24 Thread snpe
I am try update with Eclipse 3.0 M5 and get error : 'cannot unzip org.apache.xalan_2.4.1' regards Haris Peco On Saturday 22 November 2003 11:07 pm, Laurent Etiemble wrote: > Hi, > > The JBoss-IDE 1.2.2 release is available. It is a maintenance release which > addresses many bugs. See release notes

Re: [JBoss-user] C/C++-Client connecting to JBoss via JMS

2003-11-24 Thread Langelage, Frank
Hi Holger, we are thinking about different scenarios to advance our legacy "old" ERP-System with "new" modules written in java/j2ee running on jboss. I implemented an JCA interface to call "old" procedures from "new" java technology. But the other way is not quite clear so far. I thought about u

Re: [JBoss-user] [ANN] JBoss-IDE 1.2.2 released

2003-11-24 Thread Ionel GARDAIS
--- Laurent Etiemble <[EMAIL PROTECTED]> a écrit : > > Available releases are : > - JBoss-IDE 1.2.2 for Eclipse 2.1.1 or higher > - JBoss-IDE 1.2.2330 for Eclipes 3.0.0M4 I am running Eclipse 3.0.0 M4 w/ JBoss IDE 1.2.230. Update result is "no update available" Where is the problem ? thanks, io

Re: [JBoss-user] Authentication Problem

2003-11-24 Thread Jack Lauman
Scott: Sorry, forgot the files. Thanks again, Jack Jack Lauman wrote: > > I am trying to move an app from 3.0.7 to 3.2.3RC1 and am getting the > following error. Apparently it's trying to connect to hsqldb > instead of the mysql db named java:/RestaurantDS. The app works > correctly under 3.

Re: [JBoss-user] Authentication Problem

2003-11-24 Thread Jack Lauman
Scott: I have attached both the boot.log and server.log as seperate zip files as requested. Thanks, Jack Jack Lauman wrote: > > I am trying to move an app from 3.0.7 to 3.2.3RC1 and am getting the > following error. Apparently it's trying to connect to hsqldb > instead of the mysql db named j

Re: [JBoss-user] C/C++-Client connecting to JBoss via JMS

2003-11-24 Thread Holger Baxmann @ mac
Hi Frank, i currently have a client who is trying to implement this via SLSB and native library calls. Not the recommended way, but it works to some degree ;-) The problem here is that the C MQ is communicating (in the Prod systems) via SHMem and so there is no JMS lib for the interface. We a

[JBoss-user] [ANN] JBoss-IDE 1.2.2 released

2003-11-24 Thread Laurent Etiemble
Hi, The JBoss-IDE 1.2.2 release is available. It is a maintenance release which addresses many bugs. See release notes for more details : https://sourceforge.net/project/shownotes.php?release_id=199388 Available releases are : - JBoss-IDE 1.2.2 for Eclipse 2.1.1 or higher - JBoss-IDE 1.2.2330 for

[JBoss-user] SNMP Adaptor causing OutOfMemory errors?

2003-11-24 Thread Chris Bonham
Environment: IBM JDK 1.4.1 SR1 JAVA_OPTS: -Xgcpolicy:optavgpause -Xms1024m -Xmx1536m -Xss512k Linux RedHat 7.3 2GB RAM 8192 File Descriptors JBoss 3.2.2 final + Tomcat 4.1.27 While upgrading our application from JBoss 3.2.2beta to JBoss 3.2.2 final, we seem to keep running out of memory. There

[JBoss-user] JSP compilation

2003-11-24 Thread Matthew Oatham
Hi, Is there any way to prevent JSP pages being recompiled everytime JBoss restarts? i.e I deploy the web app - run the jsp - restart JBoss and tr-run a JSP - instead of using a cached copy of the jsp page it is re-compiled. How can i prevent this? Thanks _

Re: [JBoss-user] EJB home methods are not allowed to access CMP or CMR

2003-11-24 Thread Pedro Salazar
> > I've read the EJB spec but I only found one error that happens when the > > load is called on my entity bean. The load is always called before an > > activate() even the entity bean isn't changed (read-only for instance), > > which would always eliminates my cache effect. > > Are you sure ejbL

Re: [JBoss-user] EJB home methods are not allowed to access CMP or CMR

2003-11-24 Thread Alexey Loubyansky
Pedro Salazar wrote: On Fri, 2003-11-21 at 21:13, Alexey Loubyansky wrote: You are doing it wrong. In ejbPassivate the flag should be set to false. Please, read about activation/passivation in the spec. There is also a nice picture on this subject. Alexey, I've read the EJB spec but I only f

[JBoss-user] Remote JMX Notifications - Having Trouble With Example ch2 xmbean1 in JBoss > 3.2.1

2003-11-24 Thread Nicholas
I have been trying to get RMI based remote JMX notifications working on version of JBoss 3.2.2 and higher. So I went back to the exmaples in the 3.2.1 docs (the latest I have...??) and ran the XMBean example TestXMBean1. It still works in JBoss 3.2.1 but no longer works in 3.2.2 or 3.2.3RC1. I get

Re: [JBoss-user] Optimistic locking and Commit Option A

2003-11-24 Thread Alexey Loubyansky
Pete Beck wrote: Hi all, I have just been reading through the docs about using optimistic locking. According to the docs, to use optimistic locking, you must also use the "instance per transaction" policy. However, the docs also state that you cannot use commit option "A" with instance per transac

Re: [JBoss-user] BindAddress and Remote JMS (was JMS to remote hosts doesn't work any more)

2003-11-24 Thread Didi Posselt
Hi, I'm running SUSE-Linux 8.2 (kernel 2.4.20), so I think this is on all systems. I tried InetAddress.getByName("0.0.0.0") which returns /0.0.0.0 PS: java version "1.4.2" Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2-b28) Java HotSpot(TM) Client VM (build 1.4.2-

[JBoss-user] JAAS Problem (login in same VM)

2003-11-24 Thread Meyer-Willner, Bernhard
Hi, this is the setup (please don't comment on design issues, the design is screwed, I know;): The ejb-jar with the session bean in question is not secured, i.e. jboss.xml doesn't include a security-domain tag. The session bean calls a class (same VM), which in turn calls this session bean again.

[JBoss-user] JBoss 3.2.3

2003-11-24 Thread konf
Hallo, I founfd JBoss 3.2.3 at SF.net. Is it the production release or only release candidate? At jboss.org I se 3.2.2 only. Thanks, Jiri - This mail sent through IMP: http://horde.org/imp/ --

Re: [JBoss-user] EJB home methods are not allowed to access CMP or CMR

2003-11-24 Thread Pedro Salazar
On Fri, 2003-11-21 at 21:13, Alexey Loubyansky wrote: > You are doing it wrong. In ejbPassivate the flag should be set to false. > Please, read about activation/passivation in the spec. > There is also a nice picture on this subject. > Alexey, I've read the EJB spec but I only found one error t

Re: [JBoss-user] How fine grained are cmp commit options?

2003-11-24 Thread Alexey Loubyansky
Alwyn Schoeman wrote: Hi, At what level can you specify different cmp commit options? Container level. This is specified in jboss.xml like this: Child ChildLocal custom container ... custom container A Can differen

[JBoss-user] Optimistic locking and Commit Option A

2003-11-24 Thread Pete Beck
Hi all, I have just been reading through the docs about using optimistic locking. According to the docs, to use optimistic locking, you must also use the "instance per transaction" policy. However, the docs also state that you cannot use commit option "A" with instance per transaction. Therefore

[JBoss-user] Setting up Stores on JBoss

2003-11-24 Thread Brian McSweeney
Hi all,   I run a web application packaged as an ear on JBoss-3.2.2.   I want to create stores on my website. This is standard webapp stuff. Let me give an example.   Imagine I run Ebay. A new person signs up, as a seller from a company named BrianCorp. Ebay allows them to run a st

[JBoss-user] How fine grained are cmp commit options?

2003-11-24 Thread Alwyn Schoeman
Hi, At what level can you specify different cmp commit options? Can different beans in the same jar have different commit options? Must all beans in the same CMR have the same commit option? Regards, -- Alwyn Schoeman SMART Money Inc. If you're a SMARTY and you're using the better DNS conne

AW: [JBoss-user] Error Redeploying Ear with Schedulable MBean

2003-11-24 Thread Scheil, Sven
sorry scott, do u mean the jboss-service.xml? true com.cargosoft.scmtool.server.services.mbean.DueDateScheduler 4711 java.lang.String NOW -1 8640

Re: [JBoss-user] Authentication Problem

2003-11-24 Thread Scott M Stark
The query is going against the DefaultDS, not the RestaurantDS. Show the full stack trace. -- Scott Stark Chief Technology Officer JBoss Group, LLC Jack Lauman wrote: I am trying to move an app from 3.0.7 to 3.2.3RC1 and am getting the following er