我如何生成 UPS HighValueReport?
我正在尝试从 UPS 测试转向生产。他们要求我通过一些测试。
其中之一是使用大于 $999 的保险价值来生成 HighValueReport。
我不知道该保险价值的财产。
I am trying to move from UPS Testing to Production. They required that i pass some tests.
One of them is to produce HighValueReport by using insuredvalue greater than $999 .
I don't know the property for this insuredvalue.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
保险价值应是包裹要素的一部分。
提交高价值交易后,您将获得在 的元素中返回的控制日志。打印两份控制日志。
Insured value should be part of the Package element.
Once you submit your high value transation you'll get a control log returned in the element of the . Print two copies of the control log.
刚刚处理了同样的UPS生产运输和作废认证任务。您需要创建一个 PackageDeclaredValueType,它是 PackageServiceOptionsType 的子项。以下是我的 SOAP Web 服务的 C# 代码,用于生成“高价值报告”HTML。
尽管 UPS 文档称此报告将是一个“图像”,但我向 UPS 支持部门确认,此时它是 HTML 文本,并且在 XML 响应中称为“ControlLogReceipt”。
Just dealt with the same UPS production Shipping and Voiding certification tasks. You'll need to create a PackageDeclaredValueType which is a child of PackageServiceOptionsType. Here is my C# code for the SOAP web service for generating the "High Value report" HTML.
Even though UPS documentation says this report will be an "image" I confirmed with UPS Support that it is HTML text at this time and is called "ControlLogReceipt" in the XML response.