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
0
votes
1 answer

Run a EXE on a machine restart on a Windows 2008 Server where UAC is enabled

I have an exe which runs as a start-up process on a system restart. On a machine where UAC is enabled, it is blocking the start of my exe. How can I solve this?
0
votes
2 answers

Eclipse RCP: list of running plugins

I'm trying to improve my RCP application startup time. The startup time with 30 enabled plugins is different from the startup time with 10 enabled plugins, even though all my plugins are lazy initialized (so after the startup only 10 plugins are…
JeB
  • 11,653
  • 10
  • 58
  • 87
0
votes
1 answer

Jboss server startup time depends on number of war files

Does Java EE server startup time depends on the number of WAR files? I am working on a portal server which is deployed with 20 different Portlets (20 WAR files). The portal and Portlets are deployed in a JBoss 5 server. Right now, the server itself…
Sundar Annamalai
  • 2,240
  • 2
  • 16
  • 20
0
votes
0 answers

How to Return data from database to dropdown menu using Spring

How to retrieve the data from database to dropdown menu on page load using spring...Is it possible? When i click the dropdown box it has to show the namelist that is available in database.
0
votes
0 answers

Register for remote notification at iOS startup?

I'm using voip background mode to make it start on iOS boot. I put into didFinishLaunchingWithOptions all code that I want to start on boot, but if I try to register for remote notification it doesn't work. - (BOOL)application:(UIApplication…
Salvatore
  • 468
  • 2
  • 6
  • 13
0
votes
2 answers

Mule: Checking that an app is ready

I have a Mule app that takes in HTTP requests (http inbount endpoint.) When I'm starting my server, I need to make sure the Mule app is ready to take in requests before I start another program, let's call it program B, which is the client sending…
Loic Duros
  • 5,472
  • 10
  • 43
  • 56
0
votes
2 answers

How to force application to start minimized when launched at windows startup through registry key "Run"?

How to force my application to start minimized when launched at windows startup through registry key "Run"? I'm using this code to add my application to Windows Startup through registry, however i don't know how to force it to start minimized (i…
AlexC
  • 383
  • 8
  • 17
0
votes
0 answers

Class extends Application - can you get the reason for starting

If you have a class that extends Application it will be started/loaded i.e. onCreate() called if: Your app is opened by a user An exported service you declare in your manifest is ran (plugin) An exported Broadcast receiver is triggered A widget is…
Blundell
  • 75,855
  • 30
  • 208
  • 233
0
votes
1 answer

How can I configure my assembly in the Global.asax app start?

So 'hopefully' this should be an easy question for someone in the know... I want to create a custom configuration for an assembly in the Global.asax app-start which will persist over all requests to the server. For example how AutoMapper or Unity is…
Jay
  • 115
  • 1
  • 1
  • 8
0
votes
1 answer

What's wrong with globally instantiating services on app start, instead of Ninject dependency injection?

I'm currently using Ninject to handle DI on a C#/.Net/MVC application. When I trace the creation of instances of my services, I find that services are called and constructed quite a lot during a the life cycle, so I'm having to instantiate services…
0
votes
1 answer

Android App crashes on startup only on SGS2

I am having an app in the store which runs fine on most devices but on one particular Samsung Galaxy S2 running Android 4.1.2 (version JZO54K.I9100XWLSS). It crashes on startup without a crash-report from google or from crashlytics which i…
Mike T
  • 1,194
  • 14
  • 25
0
votes
2 answers

.NET WinForms startup crash

Looks like that on some clients our WinForms up crashes on startup. With some I mean very very rare. In one situation we found out that the Arial systemfont was corrupt and caused the crashed in the InitializeComponents on startup. Finding that our…
Stefan Koell
  • 1,476
  • 3
  • 15
  • 25
0
votes
2 answers

Startup program stuck windows loading

I've made an application which needs to run a certain process at Windows startup. I've created a method which does it by receiving the path to the program and adding it to the registry. This is the method: private void…
CodeMonkey
  • 11,196
  • 30
  • 112
  • 203
0
votes
1 answer

WPF - which way is better?

I have an WPF application, when at first start displays window to select language. So, in App.xaml:
Oleg Sh
  • 8,496
  • 17
  • 89
  • 159
0
votes
1 answer

App crash after Appstore update

we released an update of our App to Appstore the new version works very well at the simulator and our dev devices, but if you make an update from the Appstore the App crashes on startup unless you delete it and reinstall it. You can only see the…
Weini
  • 123
  • 2
  • 7
1 2 3
11
12