我在节点中使用soap向Fedex Web Services发出上传文档的请求。要上载的文档可以是转换为base64的有效文件类型(例如,多页的pdf)。如果此PDF必须有一个页面,则流程完全正常。但是,如果PDF是多页,我从Fedex收到以下错误:
"Invalid XML","detail":"Error: Unexpected close tag\nLine: 0\nColumn: 127\nChar: >".
为了调试这个,我已经解压缩了发送给fedex的xml请求:
<?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ns="http://fedex.com/ws/uploaddocument/v11"><soap:Body><ns:UploadDocumentsRequest xmlns:ns="http://fedex.com/ws/uploaddocument/v11" xmlns="http://fedex.com/ws/uploaddocument/v11"><ns:WebAuthenticationDetail><ns:UserCredential><ns:Key>*******</ns:Key><ns:Password>******</ns:Password></ns:UserCredential></ns:WebAuthenticationDetail><ns:ClientDetail><ns:AccountNumber>*****</ns:AccountNumber><ns:MeterNumber>*****</ns:MeterNumber></ns:ClientDetail><ns:Version><ns:ServiceId>cdus</ns:ServiceId><ns:Major>11</ns:Major><ns:Intermediate>0</ns:Intermediate><ns:Minor>0</ns:Minor></ns:Version><ns:OriginCountryCode>IN</ns:OriginCountryCode><ns:DestinationCountryCode>CN</ns:DestinationCountryCode><ns:Usage>ELECTRONIC_TRADE_DOCUMENTS</ns:Usage><ns:Documents><ns:CustomerReference></ns:CustomerReference><ns:DocumentType>PRO_FORMA_INVOICE</ns:DocumentType><ns:FileName>1810e200-4467-11e8-b6a8-07a18eeb7b1a.pdf-test.pdf</ns:FileName><ns:DocumentContent>Base64String</ns:DocumentContent></ns:Documents></ns:UploadDocumentsRequest></soap:Body></soap:Envelope>
请求中的变量“Base64String”可以假定为正在发送的文件。什么是这个错误的任何帮助,这有什么意义?如果还有其他可能需要的信息,请告诉我
答案 0 :(得分:1)
如果您使用xml2js转换请求(最有可能的话),请确保升级到版本0.4.2。先删除它,然后安装该版本:
npm uninstall --save xml2js
npm install --save xml2js@0.4.2
此问题已在此版本中处理