Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
UPS API (.Net) 中的请求和响应需要原始 XML
尝试使用上面帖子中发布的代码实现日志记录,但我在发布代码时遇到问题。TranceExtension 将所有内容返回为 null。任何帮助表示赞赏。
谢谢你。
回答了我自己的问题。对于那些像我一样挣扎的人,如果您的 Request 和 Respose 都为 Null,则需要在实例化 ShipService 之前注册扩展。
TraceExtension.RegisterSoapExtension(typeof(TraceExtension), 1, 0); ShipService shpSvc = new ShipService();
希望这对某人有帮助:)