A Service is a long-running executable that performs specific functions and which is designed not to require user intervention.

learn more… | top users | synonyms (1)

57
votes
9answers
34k views

android: check if a service is running

How do I check if a background service (on Android) is running? I want an android activity that toggles the state of the service -- lets me turn it on if it is off and off if it is on.
47
votes
7answers
15k views

Android: restful API service

I'm looking to make a service which I can use to make calls to a web based rest api. I've spent a couple of days looking through stackoverflow.com, reading books and looking at articles whilst ...
27
votes
3answers
5k views

How to automatically start your service after install?

How do you automatically start a service after running an install from a Visual Studio Setup Project? I just figured this one out and thought I would share the answer for the general good. Answer to ...
26
votes
7answers
11k views

Trying to start a service on boot on Android

I've been trying to start a service when a device boots up on android, but I cannot get it to work. I've looked a number of links online but none of the code is working. Am I forgetting something? ...
18
votes
3answers
20k views

Bind service to activity in Android

I'm trying to write a simple media player that plays streaming audio using RTSP. I have a GUI-activity and a service that performs the playback. My question is how to best communicate between the ...
18
votes
3answers
95k views

How SID is different from Service name in Oracle tnsnames.ora

Why do I need two of them? When I have to use one or another?
17
votes
20answers
11k views
+50

Printing a PDF from a .NET Service

It's the "printing question guy" again. Looking for a third-party solution to print PDFs, preferable from a service. I have seen some arguments against it, but due to our use case, this really is ...
15
votes
3answers
38k views

Where to stop/destroy threads in Android Service class?

I have created a threaded service the following way: public class TCPClientService extends Service{ ... @Override public void onCreate() { ... Measurements = new ...
15
votes
8answers
34k views

How to run Tomcat 6 on WinXP 64 bit?

Installed Tomcat 6 on WinXP 64. It installed just fine. But when I try to launch it ( from Windows Services) I get the following error : "Can not start an the Apache Tomcat Service on Local ...
14
votes
1answer
6k views

More efficient way of updating UI from Service than intents?

I currently have a Service in Android that is a sample VOIP client so it listens out for SIP messages and if it recieves one it starts up an Activity screen with UI components. Then the following SIP ...
14
votes
5answers
3k views

IIS WCF service hosting vs Windows Service

We developped a WCF service and we're looking to deploy it. Our clients will be using it with basicHttpBinding but our internal team will be using it with namedPipesBinding. We are wondering if is it ...
14
votes
3answers
21k views

android app with service only

I am creating a application whose only component is a service which keeps on running in background (basically a proxy server) but I am not able to find a way how to start that service. Application can ...
14
votes
8answers
2k views

Should a RESTful 'PUT' operation return something

I was wondering what peoples opinions are of a RESTful 'PUT' operation that returns nothing(null) in the response body?
12
votes
2answers
251 views

Android lifecycle weirdness with singleTop and foreground service?

Here's the scenario: Start Activity A Activity A starts service S Service S runs in foreground mode and shows up a notification which when pressed takes the user to Activity B (which has ...
12
votes
3answers
15k views

Unable to start Service Intent

I have a service class. I have exported this class to jar and I have embed the jar in my client app. When needed, I call the service class. When I try to do this, I get the following error: Unable ...
12
votes
1answer
3k views

Android Context.bindService always returns false and ServiceConnection object is never triggered

I have followed the Local Service example provided by Google, but my Context::bindService(...) always returns false and there is ServiceConnection::onServiceConnected is also never called. I ...
12
votes
5answers
6k views

Why doesn't my Service work in Android? (I just want to log something ever 5 seconds)

I created a new class called HelloService. I added this to the Android manifest.xml. public class HelloService extends Service { private Timer timer = new Timer(); private long INTERVAL = ...
12
votes
2answers
1k views

Install Windows Service with Recovery action to Restart

I'm installing a Windows Service using the ServiceProcessInstaller and ServiceInstaller classes. I've used the ServiceProcessInstaller to set the start type, name, etc. But how do I set the recovery ...
12
votes
12answers
17k views

WCF Contract Name 'IMyService' could not be found?

The contract name 'IMyService' could not be found in the list of contracts implemented by the service 'MyService'.. ---> System.InvalidOperationException: The contract name 'IMyService' could not be ...
12
votes
7answers
8k views

Using Process.Start() to start a process as a different user from within a Windows Service

I'd like to periodically run an arbitrary .NET exe under a specified user account from a Windows Service. So far I've got my windows service running with logic to decide what the target process is, ...
11
votes
4answers
18k views

Android: How can I get the current foreground activity (from a service)?

Is there a native android way to get a reference to the currently running Activity from a service? I have a service running on the background, and I would like to update my current Activity when an ...
11
votes
5answers
782 views

How does a Windows service differ from a standard exe?

What's the difference between a Windows service and a standard exe?
10
votes
6answers
1k views

How can I disable a service via Delphi?

I use a routine that can start and stop services via Delphi but I also need to be able to disable them, is it possible?
10
votes
4answers
5k views

Running Jetty 7 as Windows Service

Did Jetty 7 drop support to run as a service using Java Service Wrapper? What options do I have now?
10
votes
2answers
792 views

Best practice for writing a self-updating windows service

We need to create a windows service that has the ability to self update. Three options spring to mind, a second service that manages the retrieval, uninstallation and installation of the first ...
10
votes
2answers
585 views

Integrating XMLRPC/Web Services with Core Data

I'm doing design for a project and nothing's been implemented - so I'm still going through the thought process to determine if Core Data is viable for the project. Here's my query - I want to create ...
10
votes
5answers
4k views

Java Utility Class vs. Service

What's the difference in Java between a utility class (a class with static methods) and a Service class (a class with public methods that provides a "service"). For example, one can argue that a ...
10
votes
5answers
5k views

Best Practice for WCF Service Proxy lifetime?

When working with WCF services, is it better to create a new instance of the service every time you use it? Or is it better to create one and re-use it? Why is either approach better? Is it the ...
9
votes
5answers
244 views

Third-party wanted: generic centralized configuration server with web-based admin interface

Rhetorical question--> Why do we always end up developing administration interfaces for web sites, web apps and other types of application? I'm looking for a third-party that would handle the ...
9
votes
12answers
757 views

Unit testing, mocking - simple case: Service - Repository

Consider a following chunk of service: public class ProductService : IProductService { private IProductRepository _productRepository; // Some initlization stuff public Product ...
9
votes
5answers
4k views

Multiple WCF services referencing the same data contracts

I am building a set of WCF services that share common data contracts (or entities if you prefer). These are simple data transfer objects that are decorated with DataContract and DataMember attributes. ...
9
votes
7answers
20k views

Solving SharePoint Server 2010 - 503. The service is unavailable, After installation

Installed: SharePoint Server 2010 for Internet Enterprise Beta (x64) On: Windows Server 2008 Standard (x64) on 64 bit hardware Attempts to access the Central Administration console led to IIS ...
9
votes
5answers
138 views

Is it Ok to throw exceptions back to a client from my service?

I am writing a Java based service with WSDL for a .Net client to consume, and I thought that when I receive an invalid value from the client that I would throw an exception that my client could then ...
9
votes
7answers
1k views

What DNSs have API access?

I saw this over on slashdot and realized if I could program in dns control into some of my apps it would make life a lot easier. Someone over there recommended dynect which apparently had a wonderful ...
8
votes
2answers
137 views

Keep a Service running even when phone is asleep?

I have a Service in my application which is designed to run every 10 minutes. It basically checks up on our servers to see if everything is running properly and notifies the user of any problems. I ...
8
votes
1answer
176 views

God won't register a running custom service

I've got a rails website and a small minecraft server running on a linode vps. I'm running minecraft as a custom service off of a ram server based on an init.d file. Since I'm using God to monitor my ...
8
votes
1answer
440 views

How can a service listen for touch gestures/events?

I'm wondering how apps like SwipePad and Wave Launcher are able to detect touch gestures/events simply through a service. These apps are able to detect a touch gestures even though it is not in their ...
8
votes
3answers
1k views

Huge memory usage in notifications

I am developing an application with a service which show the progress of a timer in the notification area (with a progress bar and a text). I have extracted below a simpler example with the same ...
8
votes
3answers
727 views

what is the right way to exit Windoes Service OnStart if configuration is wrong and nothing to do in C#?

This is what I got: protected override void OnStart(string[] args) { if (SomeApp.Initialize()) { SomeApp.StartMonitorAndWork(); base.OnStart(args); } } protected override ...
8
votes
4answers
1k views

What C++ library to use to write a cross-platform service/daemon?

I wonder what library would ease the development of a cross-platform service/daemon ? (C/C++) I'm targeting: Windows, Linux and OS X. Requirements: network operations and serial port communication. ...
8
votes
1answer
1k views

Application threads vs Service threads

What are the advantages/disadvantages in placing a lengthy network access code in a thread in an activity or a thread in a service? How would it affect the application? I am writing a streaming ...
8
votes
2answers
170 views

Are open source projects considered community service?

I'm currently a junior in high school and I've been slacking off on my community service to develop websites and do some personal projects in C#. Currently, I'm developing an web-based IM-Chat through ...
8
votes
3answers
2k views

Injecting data to a WCF service

I have WCF services structured like suggested by Miguel Castro. This means that I have set everything up manually, and have a console application hosting my services using ServiceHost objects. I ...
8
votes
4answers
2k views

Stop/Start service in code in Windows 7

I am trying to write a app and service which monitor a given set of services and a) makes sure they are running and b) based on certain criteria, restart them as needed. I keep running into an access ...
8
votes
4answers
2k views

Windows like services development in LINUX using MONO?

I just moved from .net development to LINUX MONO development... and i don have much experience with linux dev earlier.. I have a requirement to create a background service (like windows services) ...
8
votes
7answers
20k views

C# Service cannot execute batch file?

I have a service that call a batch file sometime. The batch file take 5-10 seconds to be executed. The code to launch the batch file is : System.Diagnostics.Process proc = new ...
7
votes
1answer
102 views

PhoneStateListener onSignalStrengthsChanged stops being called in Service

I'm writing simple application containing two elements - Service and Activity. Activity is used only for starting and stopping the service. Service uses PhoneStateListener to get information about ...
7
votes
5answers
439 views

C# Windows Service Timeout on startup

I'm having difficulty trying to determine the cause of a timeout in a Windows Service I've created with C#. I've spent a considerable amount of time looking at several posts and topics on the issue ...
7
votes
1answer
221 views

Windows Service: Multiple instances of the same service class?

When you create a Windows Service, you create a list of the services you want to start. The default is this: ServicesToRun = New System.ServiceProcess.ServiceBase() {New Service} Can you have ...
7
votes
4answers
140 views

How can setting one c# method-scoped variable affect another?

This one really has me stumped. I'm working with another developer who called me because he couldn't believe what he was seeing. We stepped through with the debugger together and I saw it too and ...

1 2 3 4 5 87