File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -72,10 +72,10 @@ export function CompasSclDataService() {
72
72
'Content-Type' : 'application/xml'
73
73
} ,
74
74
body : `<?xml version="1.0" encoding="UTF-8"?>
75
- <CreateRequest xmlns="${ SDS_NAMESPACE } ">
76
- <Name>${ body . sclName } </Name>
75
+ <sds: CreateRequest xmlns:sds ="${ SDS_NAMESPACE } ">
76
+ <sds: Name>${ body . sclName } </sds: Name>
77
77
${ new XMLSerializer ( ) . serializeToString ( body . doc . documentElement ) }
78
- </CreateRequest>`
78
+ </sds: CreateRequest>`
79
79
} )
80
80
. then ( response => response . text ( ) )
81
81
. then ( str => new DOMParser ( ) . parseFromString ( str , 'application/xml' ) )
@@ -89,10 +89,10 @@ export function CompasSclDataService() {
89
89
'Content-Type' : 'application/xml'
90
90
} ,
91
91
body : `<?xml version="1.0" encoding="UTF-8"?>
92
- <UpdateRequest xmlns="${ SDS_NAMESPACE } ">
93
- <ChangeSet>${ body . changeSet } </ChangeSet>
92
+ <sds: UpdateRequest xmlns:sds ="${ SDS_NAMESPACE } ">
93
+ <sds: ChangeSet>${ body . changeSet } </sds: ChangeSet>
94
94
${ new XMLSerializer ( ) . serializeToString ( body . doc . documentElement ) }
95
- </UpdateRequest>`
95
+ </sds: UpdateRequest>`
96
96
} )
97
97
}
98
98
}
You can’t perform that action at this time.
0 commit comments