Fedex の Web サービスを使用して、出荷の追跡、新しい出荷の作成などを行っています。すべてが順調に進んでいたのですが、昨日から、出荷の作成または追跡に関する Fedex からのデータや応答がありません。フェデックス Web サービスにリクエストを送信するとfalse
、レスポンスとして返信が返ってきます。
驚いたことに、先月は彼らの Web サービスを使用するのに何の問題もありませんでしたが、昨日から 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