當前位置:成語大全網 - 新華字典 - JAVA調用WEBAPI查看客戶信息失敗,怎麽辦

JAVA調用WEBAPI查看客戶信息失敗,怎麽辦

設置的內容如下

Kingdee.BOS.WebApi.ServicesStub.DynamicFormService.View.common.kdsvc

BD_Customer

{"CreateOrgId":100040,"Number":"001.001.0001"}

返回的錯誤信息如下

{"Result":{"ResponseStatus":{"ErrorCode":500,"IsSuccess":false,"Errors":[{"FieldName":"給定關鍵字不在字典中。","Message":" 在 System.Collections.Generic.Dictionary`2.get_Item(TKey key)\r\n 在 Kingdee.BOS.WebApi.FormService.View.Execute()\r\n 在 Kingdee.BOS.WebApi.FormService.BillOperationService.ExecuteOperation(FormOperation op, String data)"}],"SuccessEntitys":[]}}}

修改傳入參數,把Id補上(不知道Id值),如下

{"CreateOrgId":100040,"Number":"001.001.0001","Id":"String"}

此時返回的錯誤信息如下

{"Result":{"ResponseStatus":{"ErrorCode":500,"IsSuccess":false,"Errors":[{"FieldName":"輸入字符串的格式不正確。","Message":" 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)\r\n 在 System.Number.ParseInt64(String value, NumberStyles options, NumberFormatInfo numfmt)\r\n 在 Kingdee.BOS.WebApi.FormService.View.Execute()\r\n 在 Kingdee.BOS.WebApi.FormService.BillOperationService.ExecuteOperation(FormOperation op, String data)"}],"SuccessEntitys":[]}}}