Tagged Questions

0
votes
4answers
392 views

Call ASP.NET Web Service on the Same Farm as Web Application

I am getting the following error when I try to call an ASP.NET Web Service from an ASP.NET Web Application. I believe it is because the Web Service and Web Application are on the …
1
vote
1answer
103 views

“Unable to validate data” HttpException from my .net 2.0 application

I am getting this exception from my ASP .net application running in a webfarm. Exception Type: System.Web.HttpException Exception Message: Unable to validate data. ---- Stack Tr …
0
votes
2answers
56 views

Best way to implement a session server using a database?

I am at a loss how to maintain it on a web farm. Could somebody tell me how to use sqlserver to maintain it?
1
vote
0answers
74 views

ASP.NET MVC CookieTempDataProvider: any experience?

UPDATE: looks like I've misunderstood what TempData is for and what it isn't. It definitively shouldn't be used to "keep certain session-wide data" as I asked initially (see ASP.NE …
0
votes
0answers
92 views

Building a server farm - Should I use cheap or expensive hardware? [closed]

I'm looking to build a server farm for a web business, I will need front end webservice servers and a common NAS file server backend. Some companies choose to buy the most fastes …
0
votes
1answer
220 views

Can I route HTTPS requests to HTTP application, using IIS7 ARR?

I have an application server installed, listening for HTTP traffic on a port which is not blocked from the world by a firewall. I wish to expose the services offered by this applic …
1
vote
3answers
306 views

How does Session_Start() work in server farm?

Does the OnSessionStart / Session_Start event still only fire once (total) in a server farm environment, or since requests are handled by multiple servers, could it fire up to once …
1
vote
2answers
67 views

Is a server farm abstracted on both sides?

I am trying to understand how a solution will behave if deployed in a server farm. We have a Java web application which will talk to an FTP server for file uploads and downloads. …
0
votes
2answers
181 views

Synchronizing External Configuration Between IIS Servers in a Web Farm

I have been struggling with the best way to make sure that the certain XML configuration files stay synchronized between multiple servers in a Web Farm. I am not necessarily conce …
2
votes
4answers
212 views

Why should I send my website to “cloud”?

I develop asp.net websites, and I read about cloud computing, windows azure, etc. But in the end, I cannot see any pratical reasons to change/move/etc my services to the "cloud". W …
1
vote
1answer
252 views

What is the best approach to deploy an ASP.NET web app on multiple servers in a clustered environment.

I have 6 servers that i need to deploy my ASP.NET web application to. While deploying enhancements, I usually remove 3 from the cluster, deploy the app, put them back in rotation, …
2
votes
3answers
498 views

How best to generate a random salt for a Web Site?

Hi folks, i'm wanting to generate a random salt value and put it into the Application state. Now, i'm using a web farm, so the Application state will be different per machine. I …
1
vote
2answers
316 views

asp.net - event log automation/tools for big web farm

A good friend of mine works for a large asp.net shop, with a web farm with many web servers (dozens). The application logs exceptions and messages to the event log on each box (no …
4
votes
6answers
362 views

Gotchas: Upgrading from single servers to web farms.

Our company currently runs two Windows 2003 servers (a web server & a MSSQL 8 database server). We're planning to add another couple of servers for redundancy / availability pu …
0
votes
0answers
295 views

Using DPAPI / ProtectedData in a web farm environment with the User Store

I was wondering if anyone had successfully used DPAPI with a user store in a web farm enviroment? Because our application is a recently converted from 1.1 to 2.0 asp.net app, we'r …