Questions tagged [arr]

Application Request Routing(ARR) helps administrators optimize resource utilization for application servers to reduce management costs for Web server farms and shared hosting environments.

IIS Application Request Routing (ARR) 2.5 enables Web server administrators, hosting providers, and Content Delivery Networks (CDNs) to increase Web application scalability and reliability through rule-based routing, client and host name affinity, load balancing of HTTP server requests, and distributed disk caching. With ARR, administrators can optimize resource utilization for application servers to reduce management costs for Web server farms and shared hosting environments.

Source: Application Request Routing Overview

394 questions
3
votes
1 answer

What is the ARRAffinitySameSite cookie for?

I'm calling an Azure app service app and found these two cookies: I understand the ARRAffinity cookie is to make sure the request is always sent back to the same backend instance, but what is the ARRAffinitySameSite cookie for?
David Klempfner
  • 8,700
  • 20
  • 73
  • 153
3
votes
2 answers

How to sort an array by element nesting?

I have an array of data, I need to make sure that the elements are sorted by nesting (parent, child) and follow each other in alphabetical order both at the top level and at the nested one. Initial data: const arr = [ { id: 0, name: 'A', …
Vladislav
  • 125
  • 6
3
votes
1 answer

Response.Redirect converts absolute URL to relative

I have an asp.net website (.net 4.7.2) which uses Response.Redirect to redirect to some external resources. E.g. https://mypage.com/link?id=1 calls HttpContext.Current.Response.Redirect("https://anotherpage.com/article.html",…
andy250
  • 19,284
  • 2
  • 11
  • 26
3
votes
0 answers

Keycloak behind IIS Reverse Proxy

I just cant get my reverse proxy to work properly and I hope that someone can help me with that. A few Informations: 1 VM Windows Server 2019,IIS 10 (with ARR and URL Rewrite Module),"keycloak" App under the "Default Website",…
Mike N
  • 31
  • 2
3
votes
2 answers

Can't use string as an ARRAY ref while strict refs in use

Getting an error when I attempt to dump out part of a multi dimensional hash array. Perl spits out Can't use string ("somedata") as an ARRAY ref while "strict refs" in use at ./myscript.pl I have tried multiple ways to access part of the array I…
carclubadmin
  • 151
  • 3
3
votes
2 answers

(413) Request Entity Too Large in IIS 10 URL Rewrite

I have an IIS 10 server configured as a basic URL Rewrite reverse proxy to preauthenticate requests directed at another web server, the calls are all presenting client certificates over SSL. I'm having issues with (413) Request Entity Too Large…
Tim Lett
  • 31
  • 1
  • 2
3
votes
0 answers

ARR IIS rewriting websocket (for Home Assistant)

I've tried to set up a ARR internal rewrite for Home Assistant. Home Assistant currently only allows for a single password for logging in and I would like to do this via Windows Forms. So far, so good: the rewrite works, the login works, but I'm…
SibrenB
  • 71
  • 3
3
votes
1 answer

How to access the elements in a mongodb array

I have a mongodb Document like the one mentioned below { "_id" : ObjectId("213122423423423"), "eventDateTimes" : [ ISODate("2015-05-26T12:18:15.000Z"), ISODate("2015-05-26T12:18:14.000Z"), …
user3138864
  • 63
  • 1
  • 10
3
votes
2 answers

SignalR 2.2 and ARR3.0 Load balancing

I am using signalr2.2 web application and hosted in IIS-8. Here I tried to implement load balancing for my application using ARR3.0. In my server farm I connected two servers and set the routing rule as 'weighted round robin'. Every server has a …
Suresh
  • 466
  • 2
  • 9
  • 26
3
votes
0 answers

How to start self-hosted OWIN Web API listening to a range of ports?

I'm running an Azure Worker Role that with self-hosted OWIN Web API Currently, the host is initialized with a single URL like so: var options = new StartOptions(endpoint); _app = WebApp.Start(options); The endpoint has a…
Igorek
  • 15,716
  • 3
  • 54
  • 92
3
votes
3 answers

Installed ARR, cannot find Application Request Routing Cache icon

I'm following this tutorial on installing ARR. I've installed ARR using Web PI in Windows 2008 R2. The second step in the tutorial is: Double click the “Application Request Routing Cache” icon Under the server node, I cannot find this icon.
TechFanDan
  • 3,329
  • 6
  • 46
  • 89
3
votes
1 answer

ARR with SSL offloading: app needs to know it was SSL

I have set up a web farm with ARR, using SSL offloading. Although the connection from ARR to the content site is proceeding with just HTTP, the application running on the site needs to know the original URL was HTTPS, so that links given in the…
Ross Presser
  • 6,027
  • 1
  • 34
  • 66
3
votes
1 answer

Manage web farms from powershell v3.0

I have been searching for a way to create new web farms add add servers to it with PowerShell. I stumbled on this link…
3
votes
2 answers

URL Rewrite of a subdirectory to a different domain using IIS

GOAL #1: www.web1.com/web2 needs to point to www.web2.com GOAL #2: Users must always see www.web1.com/web2 and the paths & queries in web2 For example: www.web1.com/web2/login OR www.web1.com/web2/?query=string www.web1.com is on IIS6 (using ISAPI…
happy297
  • 71
  • 1
  • 5
3
votes
0 answers

I would like to use Powershell to delete ARR cache objects

I have some powershell based on the thread Delete All Cached Objects in ARR Cache from Command Line or Powershell Script try{ $url = $file.get($i) $m =( new-object Microsoft.Web.Administration.ServerManager ) …