[jboss-user] [Management, JMX/JBoss] - Re: how to use twiddle to verify deployment sucessful

2008-02-06 Thread hsaha
There's no straightforward way to do this since the generated ID is not in your 
control. The work-around would to use the result of a 'query' operation to 
subsequently invoke the 'get' operation. Following would work in any unix 
environment:


  | ./twiddle.sh -s 127.0.0.1:1099 get --noprefix `./twiddle.sh -s 
127.0.0.1:1099 query jboss.web.deployment:* | grep war_name` StateString
  | 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4126904#4126904

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4126904
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Management, JMX/JBoss] - Re: EAR verification

2008-02-06 Thread hsaha
You have to create a NotificationListener to listen for notifications from the 
MBean with objectname: jboss.system:type=Server and notification type : 
org.jboss.system.server.started

You will receive a notification once the server is started.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4126988#4126988

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4126988
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossCache] - Re: REPL_ASYN replication question.

2008-02-06 Thread hsaha
Apart from what has been answered earlier .. 
-- if you need your changes to be replicated only after a certain number of 
changes happen, then use the UseReplQueue and ReplQueueMaxElements in the 
configuration.
-- if you need the changes to be replicated after a specified interval use the 
ReplQueueInterval element

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4127251#4127251

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4127251
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Re: Using existing Tomcat with JBoss AS?

2008-02-05 Thread hsaha
You can surely do that. Rename/remove the jbossweb-tomcat50.sar folder in the 
deploy/ directory. 
Deploy the war appropiately to tomcat and the EJBs etc to JBoss and everything 
should work seamlessly.

Regards,
Himadri

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4126876#4126876

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4126876
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Getting 404 using apache mod_jk1.2 and jboss4.2.2

2008-01-06 Thread hsaha
Could you provide your mod_jk properties?
Looks like mod_jk is not configure to redirect the /jmx-console context from 
Apache to jboss.



View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4117445#4117445

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4117445
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginners Corner] - Re: JBoss, JNDI and BMP's

2008-01-03 Thread hsaha
Everything looks ok .. just try to modify your jboss.xml with the following:

  | ?xml version=1.0 encoding=UTF-8?
  | !DOCTYPE jboss PUBLIC -//JBoss//DTD JBOSS 4.0//EN 
http://www.jboss.org/j2ee/dtd/jboss_4_0.dtd;
  | jboss
  |enterprise-beans
  |   entity
  |  ejb-nameBMPCustomer/ejb-name
  |  jndi-nameejb/BMPCustomer/jndi-name
  |  local-jndi-nameejb/BMPCustomer/local-jndi-name
  |  configuration-nameStandard BMP EntityBean/configuration-name
  | 
  | method-attributes
  | /method-attributes
  |   /entity
  |/enterprise-beans
  | /jboss
  | 

Also .. during deployment of the war, if the EJB is recognized properly, the 
console should have messages like ...

  | [EjbModule] Deploying ejb_name
  | 

Try this one out ..

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4116668#4116668

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4116668
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginners Corner] - Re: jboss and apache?

2008-01-03 Thread hsaha
Yes, jboss(integrated with tomcat) can work with Apache web server too... you 
just need to have the mod_jk connector configured in apache ..

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4116669#4116669

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4116669
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginners Corner] - Re: hostname

2008-01-03 Thread hsaha
It is quite clear from the exception that jboss is not able to resolve the 
hostname. Pls cross-check the following:
- Did you restart jboss after changing the host entries?
- Is the client in windows/linux? If windows, you need to change the correct 
file - C:\WINDOWS\system32\drivers\etc\hosts

Let us know whether it works..


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4116703#4116703

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4116703
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginners Corner] - Re: ERROR [NamingService] Could not start on port 1099

2008-01-03 Thread hsaha
In windows use the following command to identify the process using the 
particular port - 1099. You can then stop the process and then try restarting 
jboss. The same problem has occured to me many times and this has solved my 
problem.


  | netstat -nab
  | 


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4116707#4116707

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4116707
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: org.hibernate.HibernateException: Could not find datasou

2007-11-19 Thread hsaha
What is the datasource name you have provided in hibernate.cfg.xml.

--Himadri

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4105984#4105984

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4105984
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration Deployment] - versions of third party softwares with AS

2007-03-29 Thread hsaha
Hi,
Is there a way we can find the versions of third-party softwares(e.g log4j) 
which are bundled by default in JBoss AS. Pls let me know.

Specifically, i would like to know the log4j version used in JBoss4.0.1. Any 
help would be really useful.

Regards,
Himadri

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4032648#4032648

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4032648
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration Deployment] - log4j deadlock issue

2007-03-29 Thread hsaha
Hi,
For the log4j deadlock issue mentioned below in the discussion threads, could 
you point me to the patch location, or is there a possible work-around you can 
suggest.

The issue is detailed in 
http://www.jboss.com/index.html?module=bbop=viewtopict=71278postdays=0postorder=ascstart=10
and
http://issues.apache.org/bugzilla/show_bug.cgi?id=24159

I am using JBoss 4.0.1SP1.

Thanks,
Himadri

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4032807#4032807

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4032807
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossCache] - Re: Global lock question

2007-01-09 Thread hsaha
Thanks Manik.

Just curious.. are there any plans for this feature in future releases or this 
use-case is not considered at all at JBoss.

Regards
Himadri

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3999510#3999510

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3999510
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossCache] - Global lock question

2007-01-04 Thread hsaha
Hi,
Is there any way to obtain a lock on a node for a cluster?
Ideally for a distributed global cache, i may want to lock a particular node 
for update. Is there a way to use the org.jboss.cache.lock package or any 
alternatives?

I understand that in 2 phase commit, the write-lock is obtained on transaction 
commit, but i would like to lock a node for update, then perform the update so 
that the changes are reflected globally.

An example for that could be global statistics in a cluster.

Regards,
Himadri

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3998060#3998060

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3998060
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration Deployment] - Re: How to configure multiple bind adresses

2006-12-09 Thread hsaha
The solution you suggested works for one bind address. I would like jboss to 
bind to multiple addresses. 
Any clues how?

Himadri

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3992455#3992455

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3992455
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration Deployment] - Does JBoss work fine with IPv6

2006-09-21 Thread hsaha
Hi,
I would like to know whether JBoss is fully functional on a IPv6 network.

Saw a Wiki about JGroups having some issue, but is there a work-around for 
that? Apart from that is there any oher known issues.

Also, i would like to know whether anybody has installed JBoss on an IPv6 
network.

The JBoss version i am using is 4.0.1.

Regards,
Himadri

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3973281#3973281

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3973281
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user