A.R
A.R

Reputation: 407

Communication between node.js and WCF service hosted in a windows service

I have a node.js application and a WCF service hosted in a windows service running on the same machine. I need to pass messages from Node.JS app to the WCF service exposed via windows service.It can be uni or bi directional communication. Can you help me to know how to achieve this?

My requirement is to open a communication channel between NodeJS and the WCF service hosted inside Windows Service. My WCF service has net.tcp binding.

Upvotes: 2

Views: 1124

Answers (1)

A.R
A.R

Reputation: 407

I solved by modifying my WCF service and adding another end point for webHttpBinding. From Node.Js application I can access this endpoint of my WCF service.

Upvotes: 0

Related Questions