-
Notifications
You must be signed in to change notification settings - Fork 163
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Test fixes #1
Test fixes #1
Conversation
@@ -13,11 +13,17 @@ class Base extends EventEmitter { | |||
this.bodyAttributes = []; | |||
} | |||
|
|||
addSoapHeader(value, qname, options) { | |||
var header = new SOAPElement(value, qname, options); | |||
addSoapHeader(name, value, qname, options) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do we need to have both name
and qname
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
qname existed already in soapHeader. name is added because, in client.js code was referring to soapHeader.name. I guess, we should derive the name from the qname. I will go ahead and make the changes.
…el and added checks for null and undefined
…derive operationName, outputName and fixed server-options-test to pass srapper oject in the request
…ert logic in 2 tests in client-test.js
f29e701
to
4f858bc
Compare
No description provided.