This content has been marked as final.
Show 2 replies
-
1. Re: Web service call logging under JBoss 5.1.0 GA
cpmurphy87 Apr 27, 2014 9:42 PM (in response to cpmurphy87)Currently exploring the suggestions in this discussion,
-
2. Re: Web service call logging under JBoss 5.1.0 GA
mmusaji May 9, 2014 4:56 AM (in response to cpmurphy87)If all you want is the number of requests each endpoint has received, you can use the http://localhost:8080/jbossws/services to see the metrics of each endpoint and how many times it's been invoked. Logging each request is not a bad idea, but it has a knock on performance issue especially if you ramp up your incoming messages. The other approach is you just implement a counter in your actual server side code (or an EJB you can call and reset the count etc).
Hope that helps
Mus