I work with a somewhat non-standard SOAP web service. Most web service calls return standard SOAP XML, as you would expect, but one call, in particular, returns a JSON string. This hides the client-side XML parser.
My question is: is there a way to specify the return type on a specific web method in SUDS so that it does not try to run it through the xml parser? I just need a raw JSON response.
source share