Re: [JBoss-user] Tips for development environment with JBoss

2004-01-15 Thread Bob Cotton
"Francisco Figueiredo Jr." <[EMAIL PROTECTED]> writes: > Hi all. > > I'd like to know some tips you have to development with JBOSS. > > Here at my job, we are using Eclipse as IDE and JBOSS IDE to help in > debugging. > > I'd like to know what else I could use to help in the development with > JBo

Re: [JBoss-user] Change partition name for JBoss cluster configuration

2004-01-09 Thread Bob Cotton
You can also use the ServiceBindingManger to manage these values without editing the xml files in the deploy directory. - Bob "Boulatian, Misak" <[EMAIL PROTECTED]> writes: > Hi, > > I am trying to run JBoss 3.2.3 in a clustered environment for production. > I need to change the name 'Default

Re: [JBoss-user] MDB transaction help

2003-12-15 Thread Bob Cotton
"Brian Styles" <[EMAIL PROTECTED]> writes: > Now because my mail server requires it, I have to do pop > authentication before I can send a message. > > However what I'm noticing is that sometimes when I use the mdb to send > lots of emails at one time, the onMesage gets called for each one > simu

Re: [JBoss-user] AWT and XServer connection issues

2003-12-08 Thread Bob Cotton
"Rupp, Heiko" <[EMAIL PROTECTED]> writes: > Link: File-List > You might try to put -Djava.awt.headless=true in your JAVA_OPTS If that does not work, you will need to set a DISPLAY environment variable so that swing can connect to a DISPLAY. We run VNC as a service in linux to provide a display

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

2003-11-25 Thread Bob Cotton
Make sure the tomcat config includes a jvmRoute="node1" in your for each of the nods. -Bob Mike Lindsey <[EMAIL PROTECTED]> writes: > 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 > spe

Re: [JBoss-user] NameAlreadyBoundException When mixing MDB and EJB

2003-10-21 Thread Bob Cotton
ent contain a jndi.properties? Normally you see > the opposite problem where java: is unavailable because jndi goes > over RMI. No, no jndi.properties. What trace/debug can I turn up to help debug this problem? -Bob > Regards, > Adrian > > On Wed, 2003-10-15 at 21:06, Bob Cotton

[JBoss-user] NameAlreadyBoundException When mixing MDB and EJB

2003-10-17 Thread Bob Cotton
jboss 3.2.1 We have statless session beans deployed in the same ear as MDBs. Both the statless and the MDB make other EJB calls. Depending on which starts working first, if the call is made before the other has been deployed, we get this error: Ideas? -Bob 2003-10-15 19:31:42,992 ERROR [org

Re: [JBoss-user] Connection to JMS on a multihomed machine

2003-10-15 Thread Bob Cotton
Adrian Brock <[EMAIL PROTECTED]> writes: > On Wed, 2003-10-15 at 23:21, Bob Cotton wrote: >> jboss 3.2.1 >> >> I have JBossMQ running on a multihomed machine. >> >> The lookup (from another machine) of the connection factory

[JBoss-user] Connection to JMS on a multihomed machine

2003-10-15 Thread Bob Cotton
jboss 3.2.1 I have JBossMQ running on a multihomed machine. The lookup (from another machine) of the connection factory works over HAJNDI, but upon calling QueueConnectionFactory.createQueueConnection() i get this: 21:27:21,987 ERROR [STDERR] org.jboss.mq.SpyJMSException: Cannot authenticate

Re: [JBoss-user] Problems with HTTP invoker

2003-10-07 Thread Bob Cotton
Adrian Brock <[EMAIL PROTECTED]> writes: >> > org.jboss.invocation.jrmp.interfaces.JRMPInvokerProxyHA.invoke(JRMPInvokerProxyHA.java:291) > > This is HA RMI. > Did you lookup the correct jndi name? DUH. Thanks -Bob -- SynXis Corporation | [EMAIL PROTECTED]| no .sig today. 1610 Wynkoo

[JBoss-user] Problems with HTTP invoker

2003-10-07 Thread Bob Cotton
JBoss 3.2.1 Apache 1.3 w/ mod_jk Apache has mod_jk a list of workers configured as an 'lb' worker, against a list of jboss servers all running tomcat with mod_jk. Apache is installed on machine a, and the http invoker (in jboss ) is installed on machine b. The http invoker is accessed through mo

[JBoss-user] log4j JMSAppender and dependencies on JMS

2003-09-30 Thread Bob Cotton
Jboss 3.2.1 I'm trying to setup a JMS appender to log to a queue, but there is a dependency problem, the ConnectionFactory is not bound when the Appender is initialized. Is there another/better way to handle this? Also, If I'm subclassing from JMSAppender, and I need a custom param, do I need t

Re: [JBoss-user] packaging

2003-09-23 Thread Bob Cotton
[EMAIL PROTECTED] writes: > Hi all, > > I have a sar file which depends on classes in my ejb jar file. > > I would like to package them both in a single ear file. But, I have read > somewhere that the default deployment order is: > sar, jar, war > > Is this true? Or can I modify this in the

Re: [JBoss-user] load-balance polices

2003-09-20 Thread Bob Cotton
Two things, I think you can set a LoadBalance policy on home lookups. xdoclet tags: * @jboss.cluster-config * partition-name="MyCluster" * home-policy="org.jboss.ha.framework.interfaces.RoundRobin" * bean-policy="org.jboss.ha.framework.interfaces.RoundRobin" The other way is not to cal

Re: [JBoss-user] Running a web-app under jboss where docroot &web-inf outside the deploy directory.

2003-07-18 Thread Bob Cotton
> "Tarun" == Tarun Elankath writes: Tarun> Hi all, I have a web-application in expanded form (which is Tarun> under frequent development). I do not wish to take the Tarun> trouble of creating a WAR file everytime and neither do I Tarun> wish to transfer the application files i

[JBoss-user] Defining my own EJB Load-balance Policy

2003-06-21 Thread Bob Cotton
JBoss 3.2.1 I'm planning on using JBoss clustering technology for a cache tier that will cache widgets. Widget updates will be sent to the cache using JMS from the data source. Each node in the cache cluster can only hold N widgets and will coordinate among all other nodes in the cache cluster

[JBoss-user] JBoss Stateless Session Beans not (completely) thread-safe

2003-06-17 Thread Bob Cotton
JBoss 3.2.1 Solaris 8 JDK 1.3.1 During our load testing of the port of our application to JBoss, we discovered that EJB call return values were being crossed (i.e. one call's return data was the same for two calls) After 4 days of debugging I discovered that the return value from this stateless

Re: [JBoss-user] MBeans and EJB's

2003-06-11 Thread Bob Cotton
> "Phil" == Phil Shrimpton <[EMAIL PROTECTED]> writes: Phil> Hi, I have a problem, and the solution seems to be an MBean, Phil> but I need to call/use both remote and local EJB's (SLS). Phil> Now I have a couple of JMX books, a number of JMX articles, Phil> but none of them co

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

2003-06-05 Thread Bob Cotton
I'm wondering if the pay-for docs have been updated for 3.2? FWIW, I entered "jboss" into the search field on www.componentsource.com and in the 5 pages of results, no JBoss docs. - Bob -- SynXis Corporation | [EMAIL PROTECTED]| no .sig today. 1610 Wynkoop, Suite 400 | Ph: (303)595-25

Re: [JBoss-user] JBoss 3.2.0RC4/Tomcat duplicate class found (ClusterManager.java)

2003-03-28 Thread Bob Cotton
> "Scott" == Scott M Stark writes: Scott> Move the tomcat41-service.jar from the deploy directory to Scott> the lib directory as its being treated as a library jar to Scott> deploy as well as the jar container the tomcat service due Scott> to the tomcat41-service.xml referenci

[JBoss-user] JBoss 3.2.0RC4/Tomcat duplicate class found (ClusterManager.java)

2003-03-28 Thread Bob Cotton
In the process up upgrading from RC2 -> RC4, I'm encountering the following error: 11:33:53,650 INFO [EmbeddedCatalinaService41] deploy, ctxPath=/gemstone, warUrl=file:/home/bcotton/agent/jboss-install/jboss-3.2.0RC4_tomcat-4.1.18/server/developer/deploy/agent.ear/agent.war/ 11:33:53,685 WARN

[JBoss-user] Best way to collect JSR-77 Information from JBoss

2003-02-13 Thread Bob Cotton
With all the work Scott has been doing to 3.2 with stats (JSR-77), I was wonder what will be the best tool to dig this information out of jboss and plot/graph it in a tool like RRDTool, or MRTG? How will JSR 77 stats work in a clustered environment? Is there an SNMP adapter for Jboss? Thanks -

[JBoss-user] 3.2beta release notes?

2002-09-17 Thread Bob Cotton
Are there any release notes for 3.2? None seem to show on sf.net. -bob -- SynXis Corporation | [EMAIL PROTECTED]| no .sig today. 1610 Wynkoop, Suite 400 | Ph: (303)595-2511 | Denver, CO 80202 | Fax:(303)534-4257 | --- Th

[JBoss-user] JBoss 3.0.2 with Tomcat Needed on Sourceforge.

2002-08-28 Thread Bob Cotton
There is no JBoss 3.0.2 with Tomcat release on Sourceforge. Will there be one? - Bob -- SynXis Corporation | [EMAIL PROTECTED]| no .sig today. 1610 Wynkoop, Suite 400 | Ph: (303)595-2511 | Denver, CO 80202 | Fax:(303)534-4257 | -

Re: [JBoss-user] OracleDS binding on 3.0.1RC1?

2002-07-08 Thread Bob Cotton
> "Brian" == Brian Topping <[EMAIL PROTECTED]> writes: Brian> G'day! Wondering if anyone has a solution to this. I'm Brian> trying to regress a classloader problem that I am having Brian> with 3.0 release, figured i would try 3.0.1RC1. I added Brian> classes12.jar to server

Re: [JBoss-user] Catalina, ClassPath and XML parsers

2002-06-05 Thread Bob Cotton
> "Chris" == Chris Chen <[EMAIL PROTECTED]> writes: Chris> Hi, I think worst comes to worst, put your xerces in your Chris> jboss main lib directory (not the per-configuration lib Chris> directory). You might want to check and set some system Chris> properties for JAXP to pic

[JBoss-user] Catalina, ClassPath and XML parsers

2002-06-05 Thread Bob Cotton
Jboss3.0final, Catalina 4.0.3 I'm attempting to deploy Axis webservices as an .ear. I know JBoss.net exists, but I need the most recent version of Axis for my work. Axis, as far as I can tell, requires the xerces 2.0 XML parser. The problem is Catalina keeps picking up crimson as the parser. H