I am working on application performance tuning project which requires the
knowledge of topology of applications deployed on an JBoss App server.
Can someone help me with the following questions :
For finding the dependencies among application components deployed in a JBoss
App Server:
* I need
Can someone help me with the following questions :
* For server side interceptor which interface/class should my interceptor
implement/extend ?
* For client side interceptor which interface/class should my interceptor
implement/extend ?
* I need to write an interceptor which will log the call tr
Thanks Juha Lindfors,
I was able to compile the file using:
| javac MyLogInterceptor.java -classpath
$JBOSS_HOME/server/default/lib/jboss.jar:$JAVAX_JAR:$JBOSS_HOME/lib/jboss-system.jar:$JBOSS_HOME/server/default/lib/jboss-management.jar:$JBOSS_HOME/lib/jboss-jmx.jar
|
Now how to plug thi
I want to write my own Interceptor for JBoss EJB Container and plug it into
JBoss 3.2.5 application server. (NOTE: Not compiling with JBoss Source, I am
writing it seperately and plug in to it)
I am having problem compiling my Interceptor.
| javac MyLogInterceptor.java -classpath
/home/sudhi
I want to write my own Interceptor for JBoss EJB Container and plug it into
JBoss 3.2.5 application server. (NOTE: Not compiling with JBoss Source, I am
writing it seperately and plug in to it)
I am having problem compiling my Interceptor.
| javac MyLogInterceptor.java -classpath
/home/sudhi
Even I faced similar problem and in my case it was due to the /etc/hosts file
first check whether /etc/hosts file is properly mapped in both the
m/c
The entry
127.0.0.1 MachineA localhost.localdomain
Should be changed to
127.0.0.1 localhost.localdomain
192.1.23.44 MachineA
Assuming ur JBo
I need to find the topology of applications which are deployed on different
machines(diff. containers).
i.e Web components and bussiness components of an application are spread on
more than one container and I am interested in finding their dependence.
In connection to that work I want to know