You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SoftLayer_Product_Package::getCategories is not retrieving data for some packages when using SoftLayer_XmlrpcClient
Example:
package to use: 263
========= php script =============
getCategories();
print_r($categories);
} catch(Exception $e) {
echo "Unable to get categories: " . $e -> getMessage();
}
========= php script =============
Note: We are able to get categories using SoftLayer_SoapClient and REST.
The text was updated successfully, but these errors were encountered:
There is a limitation with the default way in which libxml, a library that the xmlrpc extension in PHP uses, behaves in regards to documents > 10 MB. In this case, the result set is larger than 10 MB, so parsing the result dies.
SoftLayer_Product_Package::getCategories is not retrieving data for some packages when using SoftLayer_XmlrpcClient
Example:
package to use: 263
========= php script =============
getCategories(); print_r($categories); } catch(Exception $e) { echo "Unable to get categories: " . $e -> getMessage(); } ========= php script ============= Note: We are able to get categories using SoftLayer_SoapClient and REST.The text was updated successfully, but these errors were encountered: