Questions tagged [app-startup]

Concerns that are a focus of application startup include configuration, startup time optimization, locking/threading/race conditions, preconditions, and configuration changes.

Application startup concerns include:

  • Configuration (e.g., database connection strings, SMTP server names, etc.)
  • Startup time optimization
  • Locking/threading/race conditions
  • Checking preconditions (e.g., presence of required folders / files, security checks)
  • Handling of configuration changes (i.e., whether the application has to be redeployed / recompiled / restarted)
176 questions
1
vote
3 answers

ClickOnce application won't start up under a given profile

This issue has come up three times in our environment. After installing the ClickOnce application, I expected it to startup automatically (as I have it set to do after install completes), but it did not. I try running the application from the…
Hobo Spider
  • 280
  • 4
  • 11
1
vote
0 answers

Visual Studio 2013 The Interface is not supported

I'm trying to get Visual Studio 2013 Express for Windows Desktop installed on my machine. It installs fine with no errors until I try to start it. It then says "The Operation Could not be completed, The interface is not supported" I have tried…
Greynite1
  • 11
  • 2
1
vote
1 answer

Routing problems

I previously had the routes on my MVC4 applications configured using the RouteConfig.cs file found in app start with the following default: routes.MapRoute( name: "Default", url: "{controller}/{action}/{id}", …
Jay
  • 3,012
  • 14
  • 48
  • 99
1
vote
0 answers

Stopping a web application during JBoss startup, when fatal error encountered

In one of the applications that is in development, we have a home-grown cache manager that is a spring bean. It's init method gets called when this web application starts up in JBoss (EAP 6.0 to be specific). As the application is still in…
Shyam Kumar Sundarakumar
  • 5,649
  • 13
  • 42
  • 69
1
vote
1 answer

What kind of code i can include in global.asax and _AppStart.cshtml in a Web Pages v2 web site?

I have read many articles and documentation and still its not clear to me what i can include in the global.asax and _AppStart.cshtml files. I tried putting simple things like @{ var rlist = new List(); rlist.Add("Value1"); …
e4rthdog
  • 5,103
  • 4
  • 40
  • 89
1
vote
1 answer

How to automatically run files under app_start folder if published using webdeploy

IN my asp.net MVC4 project I have few .cs files under the app_start folder that needs to be initialized or perform per-authorization tasks etc. When you access the website they take quite a lot of time to perform all these tasks on application start…
sam
  • 4,594
  • 12
  • 61
  • 111
0
votes
1 answer

Full screen Android app, that cannot be closed

I'm working on tracking devices that send it's location on fixed time periods. Instead of offering special hardware, I thought I would make Android app and offer it on cheap devices. Since all would be done on rental basis, I do not want users to do…
Gnuce Lee
  • 81
  • 1
  • 4
0
votes
0 answers

How to go to Launcher screen when home button is clicked in application's white screen?

I have an application where in onCreate() function heavy operation is performed. Thus when we launched an application, it displays white screen and then display the webview. Now client pressed the home screen when white screen is displayed. In this…
Shadow
  • 6,864
  • 6
  • 44
  • 93
0
votes
0 answers

I want to measure durations using Timeline class in flutter, how to do it for multiple parallel tasks?

dart timeline works with a stack, but I am trying to measure traces of 10-15 asynchronous tasks which are running on UI thread, I am trying to do app startup profiling using Dev tools->timeline. I am doing their start sync simultaneously , how will…
0
votes
1 answer

Where do I get benefits from usage App Startup library?

Where do I get benefits from usage App Startup library? The documentation only tells us how to create an object and not how to use it class MyPreferences : Initializer { override fun create(context: Context):…
Smekalisty
  • 194
  • 1
  • 1
  • 14
0
votes
0 answers

Microsoft.Azure.WebJobs.Script.WebHost: Registered factory delegate returns service ... is not assignable to scoped container with {no name}

I am creating a generic Startup.cs in a helper library for Azure Functions v4. I am using the DependencyResolver class to resolve dependency injection. Here is the code: using Infrastructure.DependecyInjection.LifecycleEnum; using…
0
votes
0 answers

android jetpack compose is Hilt decreases app startup time?

I am trying to improve my app startup time, which is currently is on roughly 4s+- I am using MVVM clean architecture and compose only app, no fragments. I tend to think that what cause my app to launch slowly is the view models that I create using…
0
votes
0 answers

.NET 7 Authentication setup goes in infinite loop

This is an intermittent issue that has only happened in one instance so far in an Azure Web Application. The process crashed with a stack overflow error when trying to register the Authentication service in Startup.cs. Here is the stack overflow…
TheDude
  • 1,421
  • 4
  • 29
  • 54
0
votes
0 answers

How to open an app in minimzed mode using Python?

app_paths = { "obsidian": "C:\\Users\\athth\\AppData\\Local\\Obsidian\\Obsidian.exe", "postman": "C:\\Users\\athth\\AppData\\Local\\Postman\Postman.exe", # "docker": "C:\\Program Files\\Docker\\Docker\\Docker Desktop.exe", # Add…
Athfan
  • 125
  • 8
0
votes
1 answer

When I open the activity for the first time or while using the app after it's destroyed, it shows a white screen for a few seconds?

The chat activity of my application continues to view a white screen for one or two seconds after it has been destroyed, even if the app is not closed. I tried to put this line:
Mahmoud Nabil
  • 243
  • 2
  • 12