Questions tagged [iisnode]

iisnode is a native IIS module that allows hosting of node.js applications in IIS on Windows.

Useful Links

400 questions
0
votes
1 answer

iOS Safari random slow image loading with iisnode

I have a website on node.js. I host the application with iisnode. I have a page that displays a large amount photos in a style like Pinterest. The images are loaded as plain with proper src being appended to DOM. The images are plain static…
Morio
  • 8,463
  • 5
  • 25
  • 29
0
votes
0 answers

IISNode with Socket.IO and Express in a virtual directory

I'm currently implementing socket.io into my node.js/express application. On the server side I have the following code - var httpServer = http.createServer(app); var io = require('socket.io')(httpServer, { resource: appSettings.VirtualDirectory +…
CD-jS
  • 1,125
  • 1
  • 15
  • 32
0
votes
2 answers

websockets connection does time out

I got Problems with websockets on my Azure WebApp. I cloned Node-red from github and published it onto a brand new WebApp in Azure (using VisualStudioOnline). Than I installed all packages and build the solution using grunt. (As described…
quadroid
  • 8,444
  • 6
  • 49
  • 82
0
votes
1 answer

Running AtlasBoard on Azure Web App with iisnode

I´m trying to run AtlasBoard in an Azure Web App, but can´t get it to work. I have created a new board using the "Get started in 30 seconds" steps and the demo board runs fine when I start it locally. It works both by starting it with atlasboard…
henningst
  • 1,664
  • 2
  • 20
  • 30
0
votes
1 answer

iisnode node.js socket.io unexpected memory leak

my company is struggling with some issues. The node.exe is taking up too much memory and CPU. The server looks like this: var userList = []; /* NODE.JS */ var server = require('http').createServer(function (req, res) { res.writeHead(200); …
webprogrammer
  • 792
  • 15
  • 26
0
votes
1 answer

Issue starting MongoDB service on Windows Server 2008

The service was working fine until it suddenly crashed, and won't restart. Here is the log file: 2016-04-20T22:51:31.166-0400 I CONTROL [serviceShutdown] got SERVICE_CONTROL_PRESHUTDOWN request from Windows Service Control Manager, will terminate…
Ryan McGarvey
  • 303
  • 2
  • 4
  • 14
0
votes
0 answers

socket.io and garbage collection

I have developed a realtime text web app using socket.io that continuously displays text on the web page. When I run my code below with multiple clients connecting the memory usage for the V8 javascript process on the server continues to grow and…
ghort
  • 1
  • 1
0
votes
2 answers

Yeoman angular project in Azure web app

I am using generator to create a angular projects: https://github.com/yeoman/generator-angular Loading the website give me this error: You do not have permission to view this directory or page. I added iinode web.config:
Alvin
  • 8,219
  • 25
  • 96
  • 177
0
votes
1 answer

How To Write API Methods Nodejs Express 3 Application In Visual Studio 2015

How Can I write API methods in node.js express 3 application. My app.js looks like: var express = require('express'); var routes = require('./routes'); var user = require('./routes/user'); var cons = require('consolidate'); var http =…
0
votes
1 answer

Prevent iisnode from caching require'd static files

I have a RESTful API running on Node which operates on static files that live on the server's disk. If I run the service on Node (via the command line), I am able execute all CRUD operations on my collection of static files, and receive the expected…
GPicazo
  • 6,516
  • 3
  • 21
  • 24
0
votes
1 answer

In iisnode, make edge.js pull connection string from web.config

I'm running iisnode and using edge.js to access code in a 3rd party DLL. This code expects there to be a web.config file from which to pull a connection string. File…
dx_over_dt
  • 13,240
  • 17
  • 54
  • 102
0
votes
1 answer

iisnode get remoteAddress

Trying to get iisnode and socket.io to work (has been working fine on linux). I'm using Sticky session to be able to use multiple processors. Now when running thru iisnode I'm having issues getting the remote ip from the client. Looks like…
roady
  • 597
  • 2
  • 6
  • 20
0
votes
0 answers

How to server static files when using IIS windows server

I've tried to follow your recommendations in this answer but I was not able to server static files correctly. I also took a look at the example in this post and even at this gists which is more complete. Might it be because of this rewrite rule…
Alvaro
  • 40,778
  • 30
  • 164
  • 336
0
votes
1 answer

NodeJS Socket.IO Wont Connect

I built an online chat application using NodeJS, Express, and Socket.IO - runs fine locally, but cant get it working on the server. I'm running Windows 2012/IIS 8.5/IISNode. My site is not running as a virtual, it's running as an application in…
Randy
  • 71
  • 1
  • 8
0
votes
1 answer

Node.js on Windows Azure IIS using IISNode: How to setup node-inspector debugger?

ISSUE #1 When I use http://127.0.0.1/mysite/node/server.js URL it shows me my test page, which is OK. But I expect it to show me the node-inspector based debug page when I use http://127.0.0.1/mysite/node/server.js/debug/ URL. However, this does not…
Temp O'rary
  • 5,366
  • 13
  • 49
  • 109