iisnode is a native IIS module that allows hosting of node.js applications in IIS on Windows.
Questions tagged [iisnode]
400 questions
0
votes
1 answer
IISNode, Express & Socket.IO Chat application reconnecting every ~2 minutes
I have created a simple chat application with Express and Socket.IO which I've now set up on a hosting provider which uses IISNode. The problem I'm having is that the socket connection keeps reconnecting approximately every two minutes. This happens…

Krummelz
- 1,046
- 1
- 11
- 23
0
votes
0 answers
EACCES error when running node app on iisnode
I'm struggling to get a simple node application to run on IIS using iisnode. Here is the application:
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.end('Hello,…

Guy
- 65,082
- 97
- 254
- 325
0
votes
1 answer
How to start two socket.io processes in a single worker role?
I have to start two socket.io processes in my azure worker role. I followed the steps in this link
Below is my ServiceDefinition.csdef

Bitsian
- 2,238
- 5
- 37
- 72
0
votes
0 answers
how to run node app on iisnode in Visual Studio
I've managed to run a node app using node.js but i need to run that app on my asp application. hence, i've installed iisnode! but sadly there is no complete documentation on how to run node apps in using iisnode ! so can you help me out and guide me…

Poorya
- 1,291
- 6
- 27
- 57
0
votes
1 answer
JSON formatting in iisnode
When running my node.js application locally, I get nicely formatted JSON output with line breaks and spaces, like this:
{
"foo": "bar",
"asdf": "qwerty"
}
But when I run the same code in iisnode on Azure, I get…

hsg
- 3
- 4
0
votes
1 answer
How to use start up task in windows azure to run a node js file?
I want to start the node js server by running my App.js script in cmd prompt when the roles start.(running "node App.js" in cmd.exe)
I came across the functionality of start up tasks in azure. Something like this

Bitsian
- 2,238
- 5
- 37
- 72
0
votes
4 answers
How to start node js script in a windows azure cloud project?
Am very new to node js and socket.io. I am using socket.io for a windows azure project. I have created an App.js which starts the socket.io server, but i dont know how to programatically run that script. I am able to run that script from command…

Bitsian
- 2,238
- 5
- 37
- 72
0
votes
1 answer
running express.js app in Asp.net MVC
I would like to run node.js with asp.net mvc for performing socket.io operations.
i've successfully included the node.js in asp.net mvc as described in here
my problem is how to run express.js in asp.net mvc,
i've performed the url rewritting in…

Kasi
- 129
- 2
- 9
0
votes
1 answer
Getting this error - "Handler "iisnode" has a bad module "iisnode" in its module list"
I am trying to implement socket.io in my azure project. I followed the instructions mentioned here https://github.com/tjanczuk/iisnode to install iisnode on my windows 8. Everything installed fine and the sample node.js app which comes with iisnode…

Bitsian
- 2,238
- 5
- 37
- 72
0
votes
1 answer
Can iisnode be configured to handle (or ignore) encrypted appSettings?
We have iisnode setup to handle requests to one sub-directory of our ASP.NET web application. As a security measure we encrypt our appSettings. None of the iisnode-related config is particularly senstive, but other parts of the app store passwords…

Mike Tomasulo
- 21
- 2
0
votes
1 answer
Trouble getting iisnode and websockets working
I am just trying to get node and websockets running alongside an ASP.NET MVC project.
I am running on Server 2012, IIS8, latest node.js and iisnode. Websockets are enabled for IIS and .NET 4.0 MVC project runs fine. Also, I can run websockets on…

aikeru
- 3,773
- 3
- 33
- 48
0
votes
1 answer
Module name "http" or "longjohn" has not been loaded yet for context:_ when running in IISNode
I am working on a javascript based app and have started seeing these errors suddenly.
Message: Module name "http" has not been loaded yet for context: _
http://requirejs.org/docs/errors.html#notloaded
I got the error with Longjohn first (i have…

praskris
- 479
- 5
- 15
0
votes
1 answer
Intercept requests for iisnode with HttpModule
I have a nodejs app running using iisnode in a sub directory for a .net application (umbraco actually).
The .net application is using forms authentication and I want to secure the iisnode application using the same mechanism as the .net…

Derek Ekins
- 11,215
- 6
- 61
- 71
0
votes
1 answer
With a Node.js cluster, how do I share connections?
I have an Azure hosted application (iisnode) that accepts direct connections from multiple client services. This application streams data between the various connections. If running on a system with multiple instances of node.js, the actual TCP…

Jason Young
- 3,683
- 4
- 32
- 39
0
votes
2 answers
How to enable static files (and less support) when hosting a nodejs app within IIS using IISNode
Background:
Nodejs app using expressjs.
Hosted on IIS using IISNode
Nodejs app is in virtual directory called /myVirtualDirectory
Problem:
You want to provide static files or css using less but the url that is passed to nodejs is the full url and…

Derek Ekins
- 11,215
- 6
- 61
- 71