我正在使用 Fedex 网络服务来跟踪货件、创建新货件等。一切都很顺利,但从昨天开始,我没有从 Fedex 获得任何数据/响应来创建或跟踪货件。当我向 fedex Web 服务发送请求时,我会收到一个回复false
作为响应。
令我惊讶的是,上个月我在使用他们的网络服务时没有遇到任何问题,但从昨天开始,我没有得到 Fedex 的有效回复。我正在使用测试帐户。
代码:
ProcessShipmentReply fedExReply = service.processShipment(request);
switch (fedExReply.HighestSeverity)
{
case NotificationSeverityType.WARNING:
case NotificationSeverityType.NOTE:
case NotificationSeverityType.SUCCESS:
rxrdreply = GetShipmentReply(isCodShipment, fedExReply, shipment);
rxrdreply.ReferenceNumber = shipment.RefNumber;
rxrdreply.Response = true;
rxrdreply.Notification = GetNotifications(fedExReply);
break;
default:
rxrdreply.Response = false;
rxrdreply.ReferenceNumber = shipment.RefNumber;
rxrdreply.Notification = GetNotifications(fedExReply);
break;
}
return rxrdreply;
来了,fedExReply
来了null
。