Skip to content

Commit

Permalink
Merge pull request vpulim#100 from yuriykashin/master
Browse files Browse the repository at this point in the history
use soapAction from WSDL
  • Loading branch information
milewise committed Oct 17, 2012
2 parents 8c10fa4 + 94fc6b5 commit 4a3b5c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/client.js
Expand Up @@ -98,7 +98,7 @@ Client.prototype._invoke = function(method, arguments, location, callback) {
message = '',
xml = null,
headers = {
SOAPAction: this.SOAPAction ? this.SOAPAction(ns, name) : (((ns.lastIndexOf("/") != ns.length - 1) ? ns + "/" : ns) + name),
SOAPAction: '"' + method.soapAction + '"',
'Content-Type': "text/xml; charset=utf-8"
},
options = {},
Expand Down

0 comments on commit 4a3b5c5

Please sign in to comment.