You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It´s working so far, but SAP (Version 3) has a problem consuming the data.
We got this error message "Die Data-Services-Anforderung wurde wegen einer deformierten Syntax nicht verstanden." which is in english something like this The data services request was not understood due to a deformed syntax.
We figured out that the data is send in XML which SAP doesn´t like.
So can anyone give me a hint how to switch the payload data from XML to JSON?
I know there is context.Format.UseJson(); but it requires a IEdmModel which I don´t have.
So if anyone could help me with this issue it would be much appreciated!
Dominik
The text was updated successfully, but these errors were encountered:
Thank you for reaching out! Could you please provide additional information and context regarding the specific API you are attempting to call on SAP's end? It would be greatly appreciated.
The issue you are encountering might be related to the format of the data being sent back to SAP, which could potentially be incompatible with the service's implementation expectations.
Additionally, consider capturing the data that OData is sending back to the service using Fiddler. Comparing it to an equivalent request made through Postman could help in debugging the issue. Sharing that with us will also enable us to debug this issue more effectively.
Hi !
We have a very basic testing DataService which implements a simple test structure:
When I use this Service like this:
It´s working so far, but SAP (Version 3) has a problem consuming the data.
We got this error message "Die Data-Services-Anforderung wurde wegen einer deformierten Syntax nicht verstanden." which is in english something like this
The data services request was not understood due to a deformed syntax.
We figured out that the data is send in XML which SAP doesn´t like.
So can anyone give me a hint how to switch the payload data from XML to JSON?
I know there is
context.Format.UseJson();
but it requires a IEdmModel which I don´t have.So if anyone could help me with this issue it would be much appreciated!
Dominik
The text was updated successfully, but these errors were encountered: