so disabling usps plugin eliminates the error. unfortunately, along with our ability to ship with USPS (critical for international customers). Could there be a problem on USPS side changing some return data resulting in this error? We have not changed anything on the site to result in this error...
This is what we have in usps.php:
//Parse Domestic Response
$rateResult = $response_xml->xpath('Package/Postage'); <
THIS IS LINE 249 FROM THE LOGS ABOVE
$usps_rate_arr = xml2array($rateResult);
foreach($usps_rate_arr as $k=>$v) {
$usps_rates = array("Service" => html_entity_decode($v), "Rate" => $v['Ra\
te']);
looks like USPS request 20 lines prior fails:
$response_xml = $this->doUSPS($request, true);
??
What to do?