I am stuck while deploying my windows application (C#) in Visual Studio 2008. I am using setup wizard project to create the msi/exe file. This setup files I need to copy to the UAT server, run the setup and then use the application.
The main issue here is, I have created this application on my local machine and then installing it on UAT by taking remote of UAT server. This works properly. But when my colleague is running same application from his local machine by taking remote of UAT server, the application crashes.
Since the application working with my login, there seems to be no problem with the code.We are using our own windows login credentials for taking remote of UAT server.
Below is the error screenshot:
Please suggest what can be the possible reasons for the same application crashing with other user's id.
Thanks in advance.
0xe053534f is a StackOverflowException. You need to check if your setup script logic is resulting in any such stack overflow
Related
I'm really new at this, never hosted an app before, everything I've done so far has been locally.
I have a windows server 2008 sp1 running at work, with IIS installed. I access to it via remote desktop, and I need to be able to deploy my app, first locally on the server, so computers that can access it (through LAN) are able to use it.
Right now, if I create a folder and put some data in it, with an html file, and go to "localhost" in a browser, I can see the rendered html file.
The version installed is IIS 7.0, and my app is uses the MVC pattern, and .net framework 4.6.
If on my windows 10 PC I start my app (vs 2017) I can see it on my browser.
I want to be able to do what I do in my PC but on the server. How can I do this?
Update:
I tried Publishing the app through vs but that is on my windows pc and getting a lot of errors. What I know so far is that a guy from Networks gets the app by the developers and they publish it, but I don't know what kind of files does he need.
I followed tutorials but I just can't apply them.
As I said earlier, I have visual studio installed on my w10 PC, and tried publishing through that app to the ip where the server is, getting a lot of errors.
I don't know what to do, I'm really trying a lot of different things, but I don't even know how the app is supposed to look to be run in any way that is not how I run it in visual studio.
UPDATE:
I'm getting this error when I try to publish locally
Here is the Outline of what we need as per OPs requirement
In VS publish the App to a folder
Sort out the server prerequisites:
Turning Windows Feature On or Off for ASP.NET, ISAPI filters, ISAPI extensions, NET extensibility
Server should have .NetFramework installed
Copy the published folder to the Server
Configure IIS manager to add a new site and set physical path to published folder
I have Developed a C# project using Visual Studio 2015 and in this project, I have used the Microsoft SQL Server 2017 Database System.
The Problem is When I tried to run my project's Setup in other computer it shows the following Message whenever I run the project after the installation in another computer.
I have tried installing the MS SQL server in other computer it is displaying the same message. What I have done wrong?? Please help me. How to run my project in any computer?
You are not connected to SQL server yet. Make sure that the SQL services are running correctly. You can check them by clicking on My Computer->Manage->Services And Applications->Services.
I am trying to set up a .NET application locally to run with a different alias to 'localhost'. The application has a successful connection to the database and runs correctly when running as localhost.
In some of my projects, I am able to access the application on the browser by writing '.local' after the application name. For example, a project called toysandstuff can be accessed in the web browser with 'toysandstuff.local. instead of having to run it through Visual Studio and localhost.
I have this set up for some of my applications at work but i'm not sure how to configure IIS and Visual Studio to run the project as '.local' instead of using localhost.
Thanks in advance!
Visual Studio 20008 is installed on a different computer running from Citrix (possibly in a different subnet) which I can access.
I installed IIS V6 on my local machine (Windows 7 Pro). When I create a asp.net c# website in VS2008 it doesn't appear under my wwwroot nor does it host the webpage when run.
I get an: Server Error in '/' Application, HTTP 404 error, resource cannot be found.
In the past both have been on the same computer.
Does VS2008 and IIS V6 have to be on the same computer to host a website project?
Your help is greatly appreciated!
VS uses localhost to debug and run.
I'm not sure if you can change this in VS. As far the application goes to run under IIS on another computer it would have to have the files on the other computer.
May I suggest placing your project on the other computer and using ftp to update files and you would not have to use the VS Debug option, But any class files would require you to publish via FTP the whole site.
I am building a .NET 4.0 Web Forms application in C#. After working for around 4-5 months on this application, the other day when I went to 'Start' the application from Visual Studio 2010 and the application does not want to start. When trying to connect using telnet on the local host and that port, it connects, and after a while I get an error '400 - Bad Request'.
The funny thing is that when I Publish the application on another IIS server, it works fine, it seems like the problem is from the asp.NET Development Server. While I know that I can set-up a local IIS, I would prefer not to avoid doing this in order to avoid certain problems which might be related to having a different configuration of the local IIS from production.
I have checked the hosts file, re-installed visual studio and confirmed that the application works when published. I have also checked that the port is not being used by another process.
What else should I check?
If the application will not start, then the odds of you being able to connect to it via telnet on a port are 0. (It's not running.)
I am assuming the application can compile if you can publish it. Have you tried running the application without debugging? CTRL + F5