my soap server returns a value containing an empty
hash {}, in 0.60 and 0.68, but my client sees '' (the
empty string),
On the server, we got the result like this,
$VAR1 = [
'OK',
{
'xmlns:sql' => 'urn:schemas-microsoft-
com:xml-sql',
'result' => {
'15' => {}
}
}
];
But on the client we got
$VAR1 = [
'OK',
{
'xmlns:sql' => 'urn:schemas-microsoft-
com:xml-sql',
'result' => {
'15' => ''
}
}
];