in reply to Finding the size of the reponse using SOAP::Lite

I'm not a Soap expert, but from what I've read you should have access to the raw response. From there I would imagine you would be able to evaluate the response like a string and find the legnth in bytes.

Something like this maybe:

{ use bytes; my $response_bytes= length($response); }

Posting the reponse portion of your client might help