I want to get the length of a SOAPBody object. My current implementation is
String mBody = body.toString();
int len= mBody.length();
Using org.apache.axiom.soap.SOAPBody;
This takes huge time of the my whole operational time as my SOAP body is very large. This way is very inefficient. How can I take this length in efficient t way ?