Click here to Skip to main content
15,885,546 members
Articles / Web Development / Node.js

Wcf.js: Call WCF web services from Node.js

Rate me:
Please Sign up or sign in to vote.
5.00/5 (2 votes)
8 May 2012CPOL3 min read 83.3K   4   28  
Call existing web services from within Node apps.
function unifyProperties(source, dest) {
  for (var p in source) {
    eval("dest."+p+"=source."+p)
   }	
}

function getTypeName(obj) {
  var funcNameRegex = /function (.{1,})\(/
  , results = (funcNameRegex).exec(obj.constructor.toString());
  return (results && results.length > 1) ? results[1] : ""
}

exports.unifyProperties = unifyProperties
exports.getTypeName = getTypeName

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Israel Israel
Web services interoperability expert.

http://webservices20.blogspot.com/

Comments and Discussions