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
Apologies in advance for a really vague bug report.
I have a WSDL document with many namespaces. Namespace info is parsed, but all namespaces are assigned both prefixes P and the specified default prefix in the model. When I generate SOAP requests, incorrect namespace attributes are generated (P is missing, the specified prefix is set, but with a random namespace url).
I've tried created a soap_config document for erlsom, but this did not seem to help. I'm using this to initialise models for both write_hrl and call steps.
makeOptions seems to pass namespace information back in a random format, not that which is required by erlsom - {namespaces, [{ns, Prefix, Url}]}. I changed this, but no improvement.
The definitions element of the WSDL begins like this (actual namespace urls obfuscated):
When I call write_hrl, I expect to see records for each of these namespaces. I just see records in the soap, P, _document- and specified default prefixes.
When I call call passing records from various namespaces, I expect to see the appropriate namespaces defined in the output SOAP request, i.e. lots of xmlns attributes.
The text was updated successfully, but these errors were encountered:
Apologies in advance for a really vague bug report.
I have a WSDL document with many namespaces. Namespace info is parsed, but all namespaces are assigned both prefixes
P
and the specified default prefix in the model. When I generate SOAP requests, incorrect namespace attributes are generated (P
is missing, the specified prefix is set, but with a random namespace url).I've tried created a soap_config document for erlsom, but this did not seem to help. I'm using this to initialise models for both
write_hrl
and call steps.makeOptions
seems to pass namespace information back in a random format, not that which is required by erlsom -{namespaces, [{ns, Prefix, Url}]}
. I changed this, but no improvement.The definitions element of the WSDL begins like this (actual namespace urls obfuscated):
When I call
write_hrl
, I expect to see records for each of these namespaces. I just see records in thesoap
,P
,_document-
and specified default prefixes.When I call
call
passing records from various namespaces, I expect to see the appropriate namespaces defined in the output SOAP request, i.e. lots ofxmlns
attributes.The text was updated successfully, but these errors were encountered: