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)

0
votes
1answer
8 views

Activity sometimes doesn't find a Service by using ActivityManager

I'm developing a very simple android app for audio streaming. From the Activity I start and stop a Service that has to manage a MediaPlayer and every time I open the main activity I check if the ...
0
votes
0answers
6 views

Win32 C++ How to get current application Service Name

Assuming my code (DLL) already runs inside application that runs as service. How to find the service name ? I would like more elegant way than getting process path and enumerating services in ...
0
votes
0answers
12 views

Mule Service Proxy

im trying to proxy a Sevice using Mule 3.4 but one thing still not working... my config: <mule xmlns:mulexml="http://www.mulesoft.org/schema/mule/xml" ...
0
votes
1answer
20 views

android mainactivity and service flow

I have a mainactivity and a service. The mainactivity prepare data to the service. After the service consumed the data, it broadcasts a request to mainactivity, mainactivity prepare some new data and ...
0
votes
0answers
12 views

How WakeLock works in general? For me it does not work

Can anyone describe or point me to a good description to "how wakelock in android works"? You can forget android standard documentation for it. I have a service (started as forground) and in the ...
0
votes
1answer
11 views

Android Service Stops When App Is Closed

I am starting a service from my main Android activity as follows: final Context context = base.getApplicationContext(); final Intent intent = new Intent(context, MyService.class); ...
0
votes
0answers
40 views

Android Service class NullpointerException error

I have problem with my mainservice.java. I want to send edittext's data from MainAcitivity.java to mainservice.java, so I use intent.putextra and intent.getStringextra. Logcat says line number 79 is ...
0
votes
0answers
16 views

Add windows service in a Class Library(Output Type)

I have created a windows service and Installer in Windows application. It works well. For some reasons I need to create that service and Installer in another Class Library. But For this case after ...
0
votes
0answers
2 views

How to mask the resourceId field in the REST response of catalog service?

The resource id in the REST service response for WCS Catalog service exposes the server url. Is there a way to mask this ?
0
votes
0answers
15 views

C# service timer not firing on windows server 2008 r2

I have a c# service that has a timer which should fire after 24 hours. The service works fine on my development machine (windows 7 Professional) and when deployed onto a windows server 2003 ...
0
votes
1answer
38 views

How to stop android service?

This question I have searched all of related topics seems to be not answered perfectly. In General, I start Service at "LoginActivity.class" and obviously the service could be stop at any activity. In ...
1
vote
0answers
9 views

Accesing powerpoint interop with Network Service user

I have a problem in a ASP web application using the Network service as IIS Identity, and using the Micorsoft Powerpoint Interop DLLs. I have a windows 7 computer acting as server and developing ...
0
votes
0answers
17 views

How to auto Trigger Alarm Manager on its own instead of onClick

Hey below is my code which is working very fine, i am calling service after 10 seconds on click of button using Alarm Manager. I want to automate this process say every 10 minutes it should trigger on ...
0
votes
0answers
6 views

Drupal 6 + Services 2.X - user.login call only accepts super user credentials

I am having two drupal websites and both websites are having same users i.e. users are synced. I am using 'content profile' module in both websites, for creating users profile. My requirement is that ...
0
votes
0answers
18 views

Customized alert box or default alert box inside service in Android [duplicate]

I have created a service that keeps checking my databsae (remote) for results. If the results are found I want a dialog box that shows - Results found please click OK to see in detail - Is this ...
0
votes
1answer
29 views

Location manager issue in Android

I have one problem in location service. I am developing one application that has the location service that always keep running in background. My location service retrieve the network provider location ...
0
votes
1answer
12 views

BroadcastReceiver not being notified of BOOT_COMPLETED

I'm trying to rig together a service that simply issues a notification on "boot" and then another one once the service is running. I'm using the following for my manifest: <manifest ...
0
votes
0answers
4 views

WSDL File location in eclipse

I am new to web services concepts and applications. I would like to take a look at the wsdl file, but I don't know where it is located. Please help!
-1
votes
2answers
14 views

Start/stop service daemon as different user in Debian/Ubuntu [closed]

I am trying to get "root" user to start a service as "user". Is there any easy way to do this? The system running is Ubuntu Server 13.04 (Raring Ringtail). Thanks in advance.
0
votes
2answers
19 views

Android Debugging - Simulate unplugged phone

I have a program that works great when its plugged in. But, when its unplugged I am having a problem somewhere in the program. I don't know where in the program the problem is coming from because ...
0
votes
1answer
23 views

Pass Internet Address (URL) through HTTP connection or SSL connection

In MULE CE 3.3.0, I want to control URLs requests by HTTP connection, SSL connection or any other connections. Actually I have a Internet URL (www.web-mail.com) that all the clients for seeing this ...
0
votes
0answers
20 views

MVC WCF Validation

I want to validate my view but I don't know what is best way to do it I want to know if there is an option like this in my service i have [Required(ErrorMessage = "Property is required.")] ...
0
votes
2answers
51 views

context of service is null

I wrote a service that give GPS location and in location changed i want to compare location information with values from my shared prefrence and show a toast or alart dialog but shared prefrence and ...
0
votes
1answer
17 views

Symfony2, autoload service in service

Question is simple but... So we have main service: class ManagerOne {} and have several another services we want to use in main service: class ServiceOne{} class ServiceTwo{} class ServiceThree{} ...
1
vote
0answers
10 views

How can I reset achievements from Google Game Services?

I'm testing my game using Google's new Games Services, and I'd like to reset my account's achievements for testing. I've found that you can reset achievements using google's APIs ...
1
vote
2answers
60 views

Non-Singleton Services in Angular

Angular clearly states in its documentation that Services are Singletons: Angular services are singletons Counterintuitively, module.factory also returns a Singleton instance. Given that there are ...
0
votes
1answer
7 views

Grabbing a service from anywhere in the app (Android)

I created a service that has to do a check repeatedly after a given amount of time, then it should communicate to my app the result of that check, no matter what the activity that app is in that ...
0
votes
0answers
19 views

service android cannot pass between activities

Work flow of my project: HomeActivity.java -> startService HomeActivity.java -> SigInActivity -> It's ok. SignInActivity.java -> ProfilePage -> It's NOT ok. I have a problem with ...
0
votes
1answer
23 views

WTSQueryUserToken always throws “An attempt was made to reference a token that does not exist” on Windows 7 in C#

I'm trying to launch a process from a Windows Service on Windows 7. This is my code to obtain the user token. uint sessionId = Kernel32.WTSGetActiveConsoleSessionId(); var userTokenPtr = new ...
0
votes
2answers
34 views

How to keep a Android app always running (Service and BroadcastReceiver)?

I realized an android application which always has to remain activated in the background. To make that, it is enough to use a Service which remains active after the user is left the application. ...
0
votes
1answer
25 views

How to ON & OFF flash camera in services

well i'm using service to On & OFF flash light of camera,it's working fine but my mobile camera app is crashing, i'm not able to release camera in service Camera camera = Camera.open(); final ...
0
votes
1answer
34 views

AngularJS Directive and Isolate Scope

I am trying to understand how to pass data through my directive so that I can bind it at the view level. I believe I understand the separation of controller scope vs. the directive isolate scope but I ...
1
vote
0answers
22 views

How to send large string to web service

I'm trying all day to find the solution on my problem. Here's the thing: I have made an ASP.NET Web Service, with a method that accepts string as data type. But when the string is to long, it gives me ...
-1
votes
0answers
19 views

Start a windows service under Windows XP Embedded (from the execution of a recovery SW)

I'm writing a windows service application for Windows XP Embedded (XPE), and I need to be sure that the service is always active, but I need to act some complex actions before restarting it, so a ...
1
vote
1answer
93 views

Using the new Google Play Services

I'm getting the follow error: google-play-services_lib] Could not find google-play-services_lib.apk! Complete Console: [2013-05-17 16:41:50 - MapAlert] Android Launch! [2013-05-17 16:41:50 - ...
-2
votes
0answers
19 views

Service running database android [closed]

I am developing an app that runs a database via service, here is my implementation of service private Timer mTimer = new Timer(); static final int UPDATE_INTERVAL = 1000; SQLiteDatabase sqlh; ...
0
votes
1answer
38 views

How to create a service that monitors for a program to start?

I'm trying to create a service that will wait for a program to be run. Say I run iTunes.exe, my service will then do something like show a message box that will say "iTunes.exe has started".
0
votes
0answers
8 views

What does this error stating to?

In my Web application, I need the system name for that am using the following statement. SysName = System.DirectoryServices.AccountManagement.UserPrincipal.Current.Name.ToString(); This ...
0
votes
1answer
17 views

create PHP soap web service

I am very new to PHP and weak in programming. I need to create a web service using PHP. The main purpose is to allow user to enter their info and validate it at the backend database. User enter ...
0
votes
0answers
20 views

My android widget service stops after some time

I have an issue with my clock widget. I run a Service to refresh it when needed (on USER_PRESENT event and each minute while screen on), but this Service seems to be killed after some time, randomly, ...
0
votes
1answer
28 views

Android Service Choice [closed]

I'm porting an application from C# to Android and I need some help to decide which service type i'd need to use on Android to achieve the same result. Currently theres 2 seperate application. An ...
0
votes
1answer
38 views

Send notification every x seconds

I'm doing an app that checks the live scores. I don't know if it's the best way, but I created a Timertask, a Service and and Activity to notify. The Timertask checks every x seconds if the score ...
2
votes
1answer
100 views

Strange 0x0eedfade exception in Delphi multi thread program

I have strange problem with my multi threaded server. It is Windows service and works similar to FTP server managing socket connection to many clients. It was created using Delphi 2006 (Turbo Delphi) ...
0
votes
0answers
15 views

Online orthography service for website [closed]

I am looking for online orthography service or just php+java script that can be implemented to website code with following functions: Selecting text on webpage (auto translation) with possible ...
0
votes
1answer
16 views

How can I display the name of all services with specific tag in symfony2 form

I have several services tagged with the same tag. I wonder how to proceed to retrieve the list of all thoses services and to inject it in a form ? Here is an exemple of what I want at the end: ...
0
votes
1answer
32 views

Is there an Android GCM equivalent to the iOS Push Notification Feedback Service?

Our webapp sends push notification requests to iOS and Android devices. For iOS, the Apple Push Notification Service has a feedback service so you can detect which devices have uninstalled your app ...
1
vote
1answer
24 views

Is wakelock static and if so, how do I manage multiple services/wakelocks in one application?

I have a situation where I have 3 services that do different things and all need wakelocks. At the end of their execution I would like to release the wakelocks, however, I'm concerned that a given ...
0
votes
0answers
17 views

how to get the sensor and location data from the background in ios platform

I just wondering to know how to create a service which running at background which can get the sensor data or location data (such as GPS, Accelerometer, Gyroscope, magnetometer) at background. If ...
0
votes
1answer
35 views

C# Print Monitor Service [duplicate]

I am trying to write a service that monitors the printers queue in C# that sends the information of a current print job (Document name, pages printed, paper media size) to an another application ...
0
votes
0answers
19 views

Android Open WebView In Background Service And Capture Screen Shot

I'm trying to open URL in a WebView from a background service then take a screenshot of the hidden WebView. Funnily enough it is not working! Is this possible? Some code snippets: ...

1 2 3 4 5 158