A Service is a long-running executable that performs specific functions and which is designed not to require user intervention.
0
votes
0answers
3 views
What causes the error that says “Could not find the Service Class” for a service wrapped by WinRun4j
[info] Module Name: C:\Users\User\Documents\NetBeansProjects\NETBEANS 6.9.1\Desktop_apps\Test2\src\com\service\wrapper\ServiceWrapper.exe
[info] Module INI: ...
1
vote
0answers
6 views
Windows Phone sign in user on phone and service
I would like to implement the following scenario:
There is a WP8 app in which the user uses his Live Id account to sign in. Once the user is signed in he can use the services (hosted on Azure) through ...
0
votes
0answers
26 views
Splash screen isn't displaying in android
I'm totally stumped on this one.. I'm trying to display a splash screen on the start of my activity. The activity is started by a service running in the background when the user reaches a certain ...
1
vote
2answers
22 views
making exe or msi file of windows service
I have made a windows service that reads an excel sheet and updates the values in database.
The service just works fine when I install it from the visual studio command prompt.
I have also made an ...
0
votes
1answer
18 views
accessing network drive with php open dir
I have a flash drive(or hdd) connected to Linksys Router and set it up for access without login. Then I setup netword drive at Computer(Windows 7 Proffesional x64). I tried opendir(\192.168.1.1); but ...
0
votes
0answers
22 views
Detecting “which application is in the foreground” and trigger an action
I've searched for many similar articles but am still not sure what's the right way to do this. I will very appreciate your insights here!
My purpose is to create a service that listens to particular ...
0
votes
0answers
30 views
I want to keep the login of a user permanent
I am developing an application in which I am taking username and password.
Then the server authenticates the user and gives him the respected services.
I want to keep the user permanently active.
I ...
0
votes
1answer
13 views
Fileobserver in service during standby
i've got a problem with my Android FileObserver.
I have a background service running (returns START_STICKY), which references two FileObservers.
Everything is working fine until the device is set to ...
0
votes
0answers
23 views
Android - Calling a Service Through a Broadcast Receiver does not seem to work
I already have this application that once the user clicks a button, the main activity calls a Broadcast Receiver that in turn calls a Service which sends the GPS Location of the user to an EMail ...
-3
votes
0answers
8 views
Starting webradio via Phonegap and running service in background? [closed]
We are currently working for a customer, who wants an app working on IOS and Android devices. Since we are a small team and very limited, we decided to use phonegap as framework to develop this app.
...
0
votes
1answer
35 views
intent service never starts
I am creating my first intent service, I have followed this tutorial but for some reason my intent service never starts. I am trying to call the intentService from fragment. Here is my onCreate code ...
0
votes
1answer
14 views
android notification shows just the last notificatoin
I have application android which gives data from server, i want to make notifications, one notification for each row of data, I want when the user press on the notification, an activity is triggered, ...
1
vote
4answers
48 views
Should I use a thread or service to run tasks in the background in Android?
I'm building an Android library to collect data from the host app and send this data to an online server in the background. I realize that this would require some sort of multi-threading/use of a ...
0
votes
0answers
7 views
Interactive Services blocks Process.Start() from a VB .NET applicaiton running elevated as SYSTEM
Here's the code:
' Write debug
Logger.WriteDebug(CallStack, "Offline execution: " + ExecutionString + ArgumentString)
Logger.WriteDebug(CallStack, "Start detached offline execution..")
...
0
votes
1answer
21 views
Android Service Not Retaining Data onRestart
I am using an Arraylist to store user selected alert-locations and am comparing these "locations" with the user's present location in my service via a broadcaster.
On force crashing the application, ...