We've created an WEB API to create Orders. But when doing multiple calls on POST to create Orders we got an error:
And
When checking the fullstack error: vOEORDH.Insert() and vOEORDH.Update()
Also when checking the session.errors it's just: Error HRESULT E_FAIL has been returned from a call to a COM component
But when we post a single call then wait for interval, we are not receiving that error. But in real scenario, they should have concurrent or multiple calls for POST to create Orders.
c# said:Error HRESULT E_FAIL has been returned from a call to a COM component
System.Runtime.InteropServices.COMException (0x80004005): Error HRESULT E_FAIL has been returned from a call to a COM component.
at AccpacCOMAPI.AccpacViewClass.Update()
And
c# said:Error HRESULT E_FAIL has been returned from a call to a COM component
System.Runtime.InteropServices.COMException (0x80004005): Error HRESULT E_FAIL has been returned from a call to a COM component.
at AccpacCOMAPI.AccpacViewClass.Insert()
When checking the fullstack error: vOEORDH.Insert() and vOEORDH.Update()
Also when checking the session.errors it's just: Error HRESULT E_FAIL has been returned from a call to a COM component
But when we post a single call then wait for interval, we are not receiving that error. But in real scenario, they should have concurrent or multiple calls for POST to create Orders.