Ram,
Are you using soap-rpc or soap-message? With either there is a certain amount of overhead that is involved to convert from XML on the wire to IData used to invoke your service.
To measure the overhead, you could create a service that does nothing or perhaps writes a single debugLog message, but that accepts the same parameters as your current service. Running your jMeter tests with this stubbed out service will allow you to measure overhead.
If you are using soap-rpc, the main overhead will likely be in the unmarshalling from XML to IData and the invocation of your service. You could measure the impact of the unmarshalling by writing a test driver that builds an IData and invokes your service using the Java API. The only overhead in this scenario is setting up the connection (you can have your test driver reuse the connection to filter this out) and invoking the service.
Optimize your service using the java API test driver, when you’ve got is as fast as possible there, look for ways to use multiple threads to perform some of your service’s work in parallel.
HTH,
Mark
#webMethods#API-Management#soa