UPS plugin also should check for exception

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
7 years ago
In 3.90, I see you've updated the USPS plugin to handle an exception during DoRequest:

string responseXml = "";
try
{
    responseXml = DoRequest(_uspsSettings.Url, requestString);
}
catch (Exception exc)
{
    response.AddError(string.Format("USPS Service is currently unavailable, try again later. {0}",exc.Message));
    return response;
}


I think you should do same for UPS.  (FedEx already does it.)
7 years ago
Thanks!

Sure. Here is a work item
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.