I would like to know how many times a webservice is invoked (called), which is deployed on glassfish AS 3.1?
Is it possible to know it using JMX interface? if so, what is the ObjectName?
Besides that I can get this value from Command interface with the following command statement
asadmin get -m “server.applications.hello-jaxws2*”
server.applications.hello-jaxws2.2.server.Hello.requestcount-count = 14
Thanks in advance
asadmin get -m “server.applications.hello-jaxws2*” server.applications.hello-jaxws2.2.server.Hello.requestcount-count = 14
I could not found how to get web service call invocation count. But Restful interface of AS is enought for me.