Skip to content

Commit a5286c9

Browse files
authored
Updated README (OpenMage#2618)
1 parent 8e9988b commit a5286c9

File tree

1 file changed

+21
-3
lines changed

1 file changed

+21
-3
lines changed

README.md

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,9 +155,27 @@ For full list of changes, you can [compare tags](https://github.com/OpenMage/mag
155155
### Changes to SOAP/WSDL
156156

157157
Since `19.4.17`/`20.0.15` we changed the `targetNamespace` of all the WSDL files (used in the API modules), from `Magento` to `OpenMage`.
158-
If your custom modules extends OpenMage's APIs with a custom WSDL file and there are some hardcoded `targetNamespace="urn:Magento"` string, your APIs may stop working.
159-
Please replace all occurrences of `targetNamespace="urn:Magento"` with `targetNamespace="urn:OpenMage"` (or alternatively `targetNamespace="urn:{{var wsdl.name}}"`) to avoid any problem.
160-
To find which files need the modification you can run `grep -rn 'urn:Magento' --include \*.xml` from the root directory of your project.
158+
If your custom modules extends OpenMage's APIs with a custom WSDL file and there are some hardcoded `targetNamespace="urn:Magento"` strings, your APIs may stop working.
159+
160+
Please replace all occurrences of
161+
162+
```
163+
targetNamespace="urn:Magento"
164+
```
165+
with
166+
```
167+
targetNamespace="urn:OpenMage"
168+
```
169+
or alternatively
170+
```
171+
targetNamespace="urn:{{var wsdl.name}}"
172+
```
173+
to avoid any problem.
174+
175+
To find which files need the modification you can run this command from the root directory of your project.
176+
```
177+
grep -rn 'urn:Magento' --include \*.xml
178+
```
161179

162180
## Development Environment with ddev
163181

0 commit comments

Comments
 (0)