标签:
var BasicHttpBinding = require(‘wcf.js‘).BasicHttpBinding ,
Proxy = require(‘wcf.js‘).Proxy ,
binding = new BasicHttpBinding(
{ SecurityMode: "TransportWithMessageCredential"
, MessageClientCredentialType: "UserName"
}) , proxy = new Proxy(binding, "http://localhost:7171/Service/clearUsername") ,
message = "<Envelope xmlns=‘http://schemas.xmlsoap.org/soap/envelope/‘>" +
"<Header />" +
"<Body>" +
"<GetData xmlns=‘http://tempuri.org/‘>" +
"<value>123</value>" +
"</GetData>" +
"</Body>" +
"</Envelope>"proxy.ClientCredentials.Username.Username = "yaron"proxy.ClientCredentials.Username.Password = "1234"proxy.send(message,
"http://tempuri.org/IService/GetData",
function(response, ctx) {
console.log(response)});
标签:
原文地址:http://www.cnblogs.com/wonglu/p/5022337.html