2015-10-20 100 views
0

當我嘗試使用Acumatica web服務API時,我得到了以下異常。任何幫助將不勝感激。Acumatica web服務API登錄失敗

System.Web.Services.Protocols.SoapException: 
The request element <Login xmlns='http://www.acumatica.com/typed/'> was not recognized. at System.Web.Services.Protocols.Soap11ServerProtocolHelper.RouteRequest() 
+0

您試圖使用哪種Web服務?你是如何獲得URL和客戶端代碼的? –

回答

0

你能用你的登錄代碼樣本更新嗎? 注:替換您的用戶名和虛擬數據傳遞

這也將是非常有用的知道你正在使用訪問Web服務的語言(C#PHP等等等等)

它應該看起來像(假設您正在使用C#)

try 
     { 
      LoginResult loginResult = context.Login("[email protected]", "yourpassword"); 
      if (loginResult.Code != ErrorCode.OK) 
      { 
       throw new Exception(loginResult.Message); 
      } 
     } 
     catch (Exception ex) 
     { 
      Console.WriteLine(ex.Message); 
      Console.ReadLine(); 
      return; 
     } 
+0

仍然是相同的錯誤 – Ameur

+0

我已經這樣做了,仍然是相同的錯誤。 – Ameur

+0

您是否在acumatica內生成了網絡服務網址? –