PDA

View Full Version : Adapter Performance Tools


shahadp
07-25-2005, 09:08
Can any one help me in finding a way to compute the performance ( No of transaction / second ). Do webmethods provide any kind of performance tool..

I have a custom developed adapter which exchanges some data.

I need to compute the no of transactions/ second. In the test environment one flow service is sending the data and adapter is sending to destination and getting the response.

Currently im testing this using silk performer by repeatedly invoking the flow service using http.. Can anyone suggest me a better way to test this... as i need to find the maximum capability of the adapter.

mwr0707
07-25-2005, 09:24
I've had some good results with JMeter.

saurabhm
07-25-2005, 10:27
You can also do some custom code development within webMethods for generating performance matrices.

As an example, you can write a flow service which invokes threads to invoke that flow service which you want to have measure on. (that is, doThreadinvoke on that flow svc); And you can customize the throttle settings for number of invocations.

I hope you got the idea.

I have done this in the past to load test and compare between different integration approach results.

Obviously, this involves more coding and is not out-of-box solution that you may be looking for.

- Saurabh