I have a problem with the response I get from the soap service.
I set the "SetSslClientCertPfx" with invoke method:
certificate name password
I set the "SetRequestHeader" with invoke method:
Content-Type text/xml; charset=UTF-8
I set the "SetRequestHeader" with invoke method:
SOAPAction urloftheaction
Invoke method "PostXml":
Server link blob with file content utf-8
I check for errors with "get.LastErrorText"
I get the response with "get.bodyStr"
For the result, I have a char(32000) field. I tried increasing this to 64000 characters but that way I get an empty result. I also tried to replace the char field with the blob. That also didn't work. It's like the method itself is limited to 32000 chars.
I read that for large results I should use "LastStringResult" but it only works for MySQL. Is there a solution to my problem?