[jboss-user] [JBoss Messaging] - Re: Messaging Cluster scenarios

2008-02-14 Thread kapilanand
I am sure this message has been read by the experts of the matter. Please let me know if posting this via JBoss Network subscription will help me in getting the answers. Of course, last resort for me would be to do some experiments which I guess are inevitable even if I get some hints and tips

[jboss-user] [JBoss Messaging] - Re: Messaging Cluster scenarios

2008-02-12 Thread kapilanand
Could somebody please point me to the right documentation that answers my questions? On JBoss Wiki I ran into few articles related to JBossMessagingCore which gives good description but not the actual configuration step. It's perhaps because it is not meant to be used directly. What I am

[jboss-user] [JBoss Messaging] - Messaging Cluster scenarios

2008-02-11 Thread kapilanand
I have two questions regarding the messaging cluster. I could not find the answer in the documentation. This is what I need to achieve: Jboss messaging cluster to provide seamless fail-over for the publishing and subscribing clients. Persistence and durable subscription are not needed. In other

[jboss-user] [JBoss Tools (users)] - Re: JBoss 4.3.0 fails to start

2008-01-25 Thread kapilanand
I had downloaded the zipped version jboss-eap-4.3.0.GA-1.ep1.8.zip and did not run the installer. This were the contents of jmx-console-users.properties: # A sample users.properties file for use with the UsersRolesLoginModule #admin=admin I removed the # comment and specified the user(admin)

[jboss-user] [JBoss Tools (users)] - Re: JBoss 4.3.0 fails to start

2008-01-18 Thread kapilanand
This worked. The entry in jmx-console-users.properties was commented. I uncommented it and specified the same user/pass in the JBoss Server configuration. JBoss server started correctly, but now stop server does not work. Will figure it out myself. View the original post :

[jboss-user] [JBoss Tools (users)] - JBoss 4.3.0 fails to start

2008-01-17 Thread kapilanand
I have tried this with Eclipse3.3.1/JBossTools2.0 and JBossDeveloperStudio1.0 I am able to launch JBoss 4.3.0 from command line using run.sh/run.bat, but it fails to start from within eclipse. Java process just intermittently dies abruptly. Logs do not show any error or exception, neither

[jboss-user] [JBoss Tools (users)] - Re: JBoss 4.3.0 fails to start

2008-01-17 Thread kapilanand
Yes I meant JBoss AS bundled with JBoss EAP 4.3.0 I have opened a jira issue: http://jira.jboss.org/jira/browse/JBIDE-1646 thanks kapil View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121021#4121021 Reply to the post :

[jboss-user] [JBoss Tools (users)] - Re: JBoss 4.3.0 fails to start

2008-01-17 Thread kapilanand
Oh I did not think of looking here before. There are lot of events in the EventLog in JBoss server view, surprisingly they do not show in the log file. They all are JMXExceptions: Message in the first JMXException: == Could not obtain connection to any of these urls:

[jboss-user] [Installation, Configuration Deployment] - stopService order when EJB depends on MBean

2007-03-29 Thread kapilanand
hi I am using JBoss 4.0.2 I have an ear that comprises of few MBeans, SLSB, MDBs. Both SLSB and MDB have dependency on the service MBeans and jboss.xml in the ejb-jar defines it. While starting up or redeploying the ear JBoss ensures that these service MBeans are started before the EJBs are

[jboss-user] [Clustering/JBoss] - Network failure protection with JGroups/JBossCache

2006-09-28 Thread kapilanand
hi I am trying to use JBoss cache as a synchronously replicated cache inside jboss. There are other jboss/ejb applications running that rely on this replicated data. I have couple of failure scenarios that I need to protect against. 1) first one is the simplest one: when the whole node goes

[jboss-user] [JBossCache] - TreeCache: How to write atomic updates?

2006-09-26 Thread kapilanand
hi all I am trying to do the following from two or more hosts that are part of a JBossCache group. (I am using JBossCache 1.4) If exists(FQN, key) { lock FQN value = get(FQN, key) value-- if (value == 0) { remove(FQN, key) } else { put(FQN,

[jboss-user] [Management, JMX/JBoss] - Re: MBean: parameters name description of operations with

2006-09-21 Thread kapilanand
hi all, I am looking for the same solution. I had posted a topic in EJB3 user forum but got no response. I could not find anything documented on this either. Looks like this feature is absent. I was considering to move to XMBeans. I see two short-comings in the xmbean solution: 1. There is no

[jboss-user] [EJB 3.0] - annotate parameter description when using @management

2006-09-15 Thread kapilanand
hi I am trying to use the service extention of ejb3. I can see the management interface from the jmx console, but the description of operation parameters is missing. Is there a way to specify these using annotations or via jboss.xml? thanks for the help. View the original post :

[jboss-user] [EJB 3.0] - ejb3 mdb without resource adaptor (container configuration)

2006-09-13 Thread kapilanand
hi, Is it possible to deploy an ejb3 mdb by using the old way of specifying the container configuration? I found that jboss_5_0.xsd does not support configuration-name element. It does support the standard way of specifying resource adaptor. Also is it possible to make the mdb deployment

[jboss-user] [EJB 3.0] - Re: ejb3 mdb without resource adaptor (container configurati

2006-09-13 Thread kapilanand
Sorry I forgot to mention. I am trying to do this on jboss 4.0.4 with the bundled ejb3 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3971284#3971284 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3971284

[jboss-user] [JBoss Eclipse IDE (users)] - Re: Building mutiple MDB deployments using xdoclet

2006-09-07 Thread kapilanand
Here is what I finally did to make it work. Edited the xdoclet-build.xml generated by JBossEclipseIDE. Added multiple antcall tasks inside _xdoclet_generation_ target, to call runEjbDoclet target with different params. (runEjbDoclet was originally called Nx in the auto-generated xml, where

[jboss-user] [JBoss Eclipse IDE (users)] - Building mutiple MDB deployments using xdoclet

2006-09-06 Thread kapilanand
hi I have an MDBean code that will run with multiple JMS destinations. The way to do this with xdoclet is to call xdoclet multiple times with different values of environment properties and use those environment properties to define the bean name, jms destination name, xdoclet-output-destination

[jboss-user] [JBossCache] - Re: TreeCache API auto-completion in Eclipse IDE

2006-09-03 Thread kapilanand
Thanks for responding. Well this is exactly what I was trying to do: the standard eclipse way of showing available methods, but this does not work. First I thought it had something to do with the AspectJ interation in my eclipse installation but this does not work from a fresh eclipse

[jboss-user] [JBossCache] - TreeCache API auto-completion in Eclipse IDE

2006-08-31 Thread kapilanand
I hope this is the right forum to ask this. I am not able to see available methods on TreeCache instance when I press Ctrl-Space in eclipse IDE. Pressing F3 on TreeCache class does take me to the class definition that has all methods defined. When i type in 'a', it auto-completes into a list