0
votes
0answers
26 views

Host Web API in IIS using FTP

Masters, I am facing a deployment issue of Web API. We've two separate projects. An MVC4 Application A Web API service project We consume web api in our web project for fetching data. And we've ...
0
votes
1answer
29 views

iis bindings on shared server

I have a scenario where I have many domains (could be hundreds) pointing to my one web application for example site1.com site2.com site3.com .... etc All point to my single web app, this app will be ...
1
vote
2answers
26 views

ASP.NET HttpHandler vs IIS handler

I've defined an HTTP Handler and added an entry in my web.config <add verb="GET" path="TestApp/*" type="TestApp.TestHandler, TestWebApp" /> This works as I would expect EXCEPT when I ...
0
votes
1answer
45 views

Deploying a Solution with multiple projects on IIS7 - Missing DLLs

I'm trying to publish a solution that contains several projects -one of them is MVC- to IIS7. When the MVC project is published and some views are being accessed I get the following error: Could ...
0
votes
1answer
53 views

Execute bat file in asp.net localhost

Hi i am trying to execute bat file in asp.net. it runs in developer/IIS Express but dosnt in IIS. i think there something with permissions. Thanks. System.Diagnostics.Process myProcess = new ...
1
vote
2answers
49 views

IIS Error 403.14 - Forbidden

I am facing a problem with IIS and ASP.net. I reinstalled the IIS because it wasn't showing the "Default Website" and after that I reinstalled ASP. Now I am facing the error you see below. I should ...
0
votes
0answers
69 views

Getting Windows User ID When Using Forms Authentication

I'm working on an ASP.NET MVC app running on our intranet. We are using forms authentication, however the usernames set up will be the same as the Active Directory usernames. I'm trying to find a ...
0
votes
0answers
39 views

ASP.NET Membership and Role Provider dont access in intranet

I have an application with ASP MVC with Membership and Role Provider on an intranet, when I access the application from the server, the application authorizes me to use but when I identify in clients ...
1
vote
1answer
45 views

How do I route incoming requests to specific apps based on IP?

How would I route requests to different IIS apps based on the user's IP address? I'm looking to pilot a test version of a production site to a specific IP address. I would rather not have to force ...
0
votes
2answers
45 views

internal call asp mvc method using the uri

I have two methods in asp mvc methodA(myViewModel vm); methodB(); myViewModel is public class myViewModel { public int someInt... public string someString... } So the uri is something ...
0
votes
0answers
34 views

Asp.net MVC site url modify issue in IIS

Hi I have created a website in IIS 7 and mapped my virtual directory on it , and my URL becomes like www.mycompany.com/webApp But I want to modify it for www.mycompany.com , as I dont want to ...
2
votes
2answers
258 views

Web Api calls return 404 on Server

I'm aware this has been asked a lot of times on this site and others, but no solution i've seen so far is working, so here I am. I have some web api routes set up in an mvc 4 project. Here's a ...
1
vote
1answer
52 views

ColdFusion/ASP split URL handling

I am working on a new ASP.NET MVC (IIS 7) application that needs to hang off the URL of an existing group of ColdFusion applications. The URL hosts a series of applications and is of the form: ...
0
votes
1answer
437 views

.NET Web Api - 404 - File or directory not found

In short words, everything works on local machine but doesn't when deployed to server "A". I'm sure someting is missing in server "A", but I don't know what it is, and I don't have access there to ...
0
votes
1answer
46 views

Application pool for each website or few websites in 1 application pool?

I have a virtual server (8gb ram, windows server 2008 64bit, 2 core of x5650 2.67ghz) in this server there are more than 35 website of my clients, each website (application pool) take approximately ...
0
votes
1answer
367 views

WCF service deploy The type or namespace name 'MVC' does not exist in the namespace 'System.Web'

I have created a WCF REST web service using WCF REST SERVICE TEMPLATE. I am trying to deploy it using Visual studio 2010 Publish menu. It creates Virual directory in IIS but when I try to browse it, ...
0
votes
3answers
34 views

Custom 400 with message being overwritten

I have some custom error messages I want to display to the user. So when they say enter a bad username/password combo I might do this in my code: Response.StatusCode = 400; return Json("Invalid ...
0
votes
2answers
246 views

How can I create an IIS ASP.NET MVC web site located at an address like domain/some/path?

As per question, this is what I'd like to achieve: Create a separate Web site node in IIS (7) to host a deployed ASP.NET 4 MVC (and Web API) application. I'd like a separate Web site node instead ...
2
votes
1answer
150 views

Error when browsing a newly deployed MVC app on IIS 7: Http 500 and custom errors not set

I do have custom errors on in the web.config file that sits in the root directory of my MVC project. <customErrors mode="On" defaultRedirect="~/Error"> <error statusCode="403" ...
0
votes
0answers
54 views

Virtual Directory in IIS from different domain

Scenario : (related to this problem Two domains, one app on IIS and Windows Authentication) - two IIS in two domains DA and DB - in DA there is IIS 7.0 and in DB there is IIS 6.0 - IIS 7.0 in DA hosts ...
0
votes
0answers
98 views

The system returned: (110) Connection timed out

when i open my website it's shows Connection to 173.0.139.119 failed. The system returned: (110) Connection timed out what is Problem? from my Web Application or Server ? note: when i use proxy ...
0
votes
1answer
172 views

Why is my ASP.NET MVC application trying to navigate to login.aspx?

I have a very very simple, "Hello World" level application that I built in ASP.NET MVC 4 / Razor. It works fine in debug mode. There is no authentication; it just goes straight to Home/Index. Now I ...
1
vote
1answer
24 views

IIS Default Site

I have an IIS configuration such that [mywebapp] is an asp.net mvc web app that exists under "Default Web Site" of myserver.com. How do I configure my IIS so that a request to www.myserver.com ...
0
votes
0answers
134 views

IIS / ASP.NET MVC - Allowing Large File Uploads

I'm trying to configure my ASP.NET MVC web application to allow file uploads up to 350MB. I'm on IIS7. I've tried the following Web.config changes: Adding the below under system.web <httpRuntime ...
0
votes
1answer
66 views

iis 7 redirect (?) issue

I have a mvc app which runs here: sometestingdemo.bla.com/mvcapp on our test server. It usually runs at the 'top domain level' of the production server like this: bladibla.com The html that mvc ...
0
votes
1answer
55 views

IIS 7 run asp.net mvc 3 app beside webforms app

I have an existing webforms application running at: demo.bla.com/dotnettwoapp with the binding demo.bla.com in iis 7. I would like to get a asp.net mvc 3 application running under: ...
0
votes
0answers
100 views

Error while deploying MVC application on IIS 7

I have a MVC application build in VS 2012. I am trying to deploy the application on the IIS 7. I perform the following steps: I go to IIS server. Sites -> Go To Default Site. Right click on ...
1
vote
1answer
148 views

ASP.NET separate web / admin applications

I've often developed websites in asp.net webforms with an administration area which is always a folder in the root of the application, where the site also lives. Which will always be compiled into one ...
4
votes
1answer
60 views

Host 2 seperate MVC websites under 1 url

I have 1 secure MVC website already hosted at say https://mysite.co.uk. This website has areas, controllers and actions as per normal: https://mysite.co.uk/kitchen/create ...
0
votes
0answers
102 views

Asp.NET MVC on IIS 7 with cloudflare has random time outs

I have searched all over and tried a lot things with no luck. I am lost on any further path to take so I will try to explain the whole picture to help everyone, since I am not sure where I can tackle ...
1
vote
5answers
179 views

How to change an EF connection string, based on subdomain of MVC web site?

I have an EF5 ASP.NET MVC 3 (Razor) web site, running under IIS7. Now I want to be able to change the connection string to the MSSQL database depending on the subdomain of the URL, e.g. ...
0
votes
1answer
235 views

Forms Authentication with IIS 7.5 - Not Authorized

I have a Web application deployed to Windows Server 2008 R2 with IIS 7.5. The application is ASP.NET MVC 3 with .Net Framework 4.0. Authentication Settings: Anonymous and Forms Authentication is ...
1
vote
1answer
122 views

routing not working whilst using iis instead of visual studio 2010's development server

I have to deal with a legacy asp.net mvc web app (.net 4). It uses some customized routing, which works fine when I use visual studio 2010's development server. However, when I use iis instead (during ...
0
votes
0answers
40 views

Setting up an MVC website on IIS7.5

I'm trying to deploy an MVC website (my first ever) to my server (IIS7.5 on Windows Server 2008 R2 Foundation). When I browse to the website at localhost/mymvcsite I get an HTTP 403.14 error saying ...
4
votes
0answers
236 views

Routing error with IIS 7 versus IIS Express generating HTTP 404 errors

I am using MVC 3 with Visual Studio 2010 and C# 4.0. My application works correctly under IIS Express from Visual studion and when deployed to a remote production IIS 7.5 server. When I switch to ...
0
votes
1answer
152 views

Windows Authentication Current User Impersonation 401 unauthorised

I have an Intranet which publishes an RSS feed, I'm trying to consume that RSS feed from another intranet site hosted on the same IIS server within a Windows domain environment. Both sites have ...
0
votes
1answer
110 views

Asp.net MVC DataContext issues when crawled with Xenu with 50 parallel threads

Having some very strange issues and don't know what these are about. I have an asp.net mvc2 site. I am using Linq to SQL classes (.dbml) for data access. Database is in SQL Server 2008 R2. ...
1
vote
1answer
103 views

How to achieve windows authentication in asp.net mvc?

We are implementing a website in APS.NET MVC4 which has to run on intranet. We got a requirement for windows authentication with Active Directory (LDAP). When i change the authentication mode to ...
0
votes
1answer
242 views

SQL Server Express issue deploying MVC4 application to IIS

I've spent the past two days going through google (and here) with different variations of a connection string on my deployment server... If I had hair left, I'd have pulled it out by now... ;) I ...
0
votes
0answers
110 views

Reset Static variables in IIS

I have assigned value for static variable in Application start event of ASP.NET MVC application. protected void Application_Start() { public static list<string> versionInfo = ...
0
votes
1answer
28 views

Non-standart url in ASP.NET MVC application

I have an ASP.NET MVC application like a bookshelf, that deployed on IIS. To get information from i have to put in browser's address line something like bookshelf.com/book/. What have i do to change ...
0
votes
2answers
52 views

Termination caused websites executing no more

I had a perfectly well running asp.net mvc application and I was debugging message sending via SignalRand I decided to stop debugging and went to edit some code. However, there was an error saying ...
0
votes
0answers
23 views

VS2008 MVC2 App does not run in Windows 7

I have a MVC2 web application developed in VS2008 in Winxp SP3 environment which works fine. The target Framework is V3.5 I had configured my IIS's Application configuration maping by adding "*" as ...
0
votes
0answers
83 views

File Upload to a location outside the project

I've got an ASP.NET MVC4 solution including 3 projects. The website and the backend. And both reference the Models project. Within the backend project you can upload files, which should be saved in ...
0
votes
1answer
313 views

Deploying MVC 3 application in MVC 4 hosted IIS

I have created MVC 3 application, everything is working fine. Now we moved for deployment. However the IIS 7 got already installed with MVC 4 and running other MVC 4 application. Can I simply host ...
0
votes
2answers
224 views

How do i deploy MVC3 website to server via ftp

i was able to publish the website to local machine folder, where i've the bin, content, scripts, views, web, global, and packages folder. AFter i add these folders to the root of my web server using ...
0
votes
0answers
172 views

running powershell script from asp.net

"Hello Gents, recently I developed windows application which push software from the SCCM server. So now i wanted to run it from Web application then i converted to asp.net. In the asp.net code , i ...
1
vote
0answers
56 views

Multiple site same ASP MVC folder

I have a site that I need to host for several clients. Can I have 1 folder containing all site files. And create sites for each client that use this one folder, but I need to change some things based ...
3
votes
1answer
159 views

Not understanding IIS Classic and Integrated Mode?

Here there is a good explanation pointing the difference between Classic x Integrated mode in IIS: https://help.maximumasp.com/KB/a657/explanation-of-classic-vs-integrated-mode-in-iis-7x.aspx Also ...
0
votes
1answer
592 views

Asp Net Mvc 4 Application under IIS7.5 not redirecting to login page [duplicate]

Possible Duplicate: MVC4 HTTP Error 403.14 - Forbidden Every time I have to configure a ASP.Net mvc application I come across the same error: HTTP Error 403.14 - Forbidden The Web server ...

1 2 3 4 5 11