Suppose I use python zeep to execute a query against a server like this:
from zeep import Client
wsdl_url = "http://webservices.oorsprong.org/websamples.countryinfo/CountryInfoService.wso?WSDL"
client = Client(wsdl_url)
result = client.service.ListOfContinentsByCode()
I would like to see the raw XML that comes back from this method, ie extract it somehow from result. Is this possible? How?