-
Notifications
You must be signed in to change notification settings - Fork 223
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Services from https://services.odata.org/v4/odata/
respond with header OData-Version:
4.0;
instead of 4.0
#216
Comments
I am also facing the same issue. Is it working for you? |
With which service? The ones listed in https://services.odata.org/v4/odata/? @ralfhandl Is the |
The OData ABNF does not allow a trailing semicolon, see https://github.com/oasis-tcs/odata-abnf/blob/d1b3373f73408d1dd177198057cc12940a30c6c8/abnf/odata-abnf-construction-rules.txt#L1077. |
Is there any progress on this? |
Hi, at this point in time, the response from the v4 service at https://services.odata.org/v4/odata/ is still broken; it still returns "4.0;" in the "Odata-Version" header. |
Hi, any updates on this? I'm also facing the same issue. |
Hi Team, is there any workaround on this issue. |
OData-Version
has the value4.0;
which contains unexpectedly a semicolon and thus causes issues in the client. It should be without the semicolon:4.0
.Is the extra semicolon OData V4 compliant? If not, it should be removed.
TripPin on the other hand does not have the issue.
The text was updated successfully, but these errors were encountered: