Does anyone have experience bundling a datasource (-ds.xml) definition + login-config.xml as a service archive in jboss? I've been fighting with this for awhile to no avail. I'm just looking for some pointers on how I should be laying the .sar out. I want the .sar to ultimately live in a .ear. Any pointers greatly appreciated!
...
Within my service I have an mbean which is accessed by my war file. How do I ensure that the war file is deployed and started after the service?
...
Using sar I can see device nfss24 is very busy, but how to know which data volume (file system) the device is for?
sar -d 1 10|egrep "busy|nfs"
SunOS phxdbnfs11 5.10 Generic_141414-07 sun4v 04/14/2010
19:03:27 device %busy avque r+w/s blks/s avwait avserv
19:03:28 nfs23 0 0.0 0 0 0.0...
Can anybody tell me a unix command that can be used to find the number of memory accesses that took place in a given interval. vmstat, top and sar only give the amount of physical memory space occupied/available .. But do not give the number of memory of accesses in a given interval
...
I am new to JBoss DS and I could not figur out is how to make a folder from my project deployable, exploded SAR in my case.
If I create a new server in the JBoss server view / JBoss AS perspective and select a SAR and make it a deployable then the SAR file can be deployed on the JBoss server.
Another approch that I have tryed is to ma...
I'm packaging a couple JMX MBeans inside a JBoss SAR file. However, when I try to introduce Spring (3.0.2.RELEASE) into the project by marking the class as @Configurable and one of the dependencies as @Autowired, I get the following error during deployment:
java.lang.ClassNotFoundException: org.springframework.beans.factory.aspectj.Con...
I have a jboss service. I try to load a class from different jar file, it always gives in BEA jdk1.5. It works fine sun jdk1.6. Any clue? I have a archive in abcd.sar which calls a Schedulable class from xyz.jar. So far fine. When I try instantiate a class (by new or reflection) from another jar file I get ClassNotFoundException. The jar...