mirror of
https://github.com/doctrine/orm.git
synced 2026-03-23 22:42:18 +01:00
[XML Mapping] Wrong URL causing validation errors #7492
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @DavidPetrasek on GitHub (Mar 25, 2025).
In this section
https://www.doctrine-project.org/projects/doctrine-orm/en/3.3/reference/xml-mapping.html
All occurences of
xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"Need to be changed to
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"@greg0ire commented on GitHub (Mar 25, 2025):
Why? When I browse that URL, I get redirected to
https, BTW.@DavidPetrasek commented on GitHub (Mar 25, 2025):
It's not just me having this problem. See: https://stackoverflow.com/a/78870821/10977967
Is this really a bug?
@greg0ire commented on GitHub (Mar 25, 2025):
I think you're correct, apparently, it should not be thought of as a URL to retrieve anything, but as a namespace, and should match exactly
It was done as part of a bigger migration from
httptohttpsin7fa3e6ec7cCan you send a PR?
@DavidPetrasek commented on GitHub (Mar 27, 2025):
Here it is: https://github.com/doctrine/orm/pull/11894