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
Copy file name to clipboardExpand all lines: README.md
+21-3Lines changed: 21 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -155,9 +155,27 @@ For full list of changes, you can [compare tags](https://github.com/OpenMage/mag
155
155
### Changes to SOAP/WSDL
156
156
157
157
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.
0 commit comments