Questions tagged [service]

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

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

Services usually provide an interface to Start, Stop, Pause and Restart the executable that is running in the computer's background.

23127 questions
5
votes
2 answers

How to change start up type of a windows service using command line

My focus is on web server. Apache web server does install service in automatic type (httpd -k install) and Apache does not provide a parameter to install service in manual type (like MySQL: mysqld --install-manual). I read some about SC…
5
votes
1 answer

Unable to bind to service after moving to Android 11

I have two applications. One that is a foreground service that does not use any of the permissions introduced in Android 11 (camera, location etc). I have client apps that connect to my service. In android 8 this connection works, however when in…
zeroter5
  • 135
  • 11
5
votes
5 answers

Symfony service FileUploader not autowiring

I've followed the Symfony 5.2 tutorial to add a FileUploader as a service (https://symfony.com/doc/current/controller/upload_file.html). So this is my service.yaml parameters: targetDirectory: '%kernel.project_dir%/public/uploads/' …
lucrece
  • 174
  • 11
5
votes
1 answer

Can Android's ServiceTestCase send Messages to my service?

I want to test my bound service with ServiceTestCase. The testing consists of binding to MyBindServer, and sending a Message. Watching the logs, you can see the service is started when onBind() is called, and a message is sent from testAHello(),…
David
  • 63
  • 1
  • 8
5
votes
1 answer

Send Email in Service (without prompting user)

is it possible that I send email in background using service.. like in service I use Intent with ACTION_SENDTO with Uri data mailto:recipient_email and it get sent in the background without any user intervention .. or through default email app…
Waheed Khan
  • 1,323
  • 6
  • 18
  • 28
5
votes
3 answers

Email Parsing Cloud Service

I was looking for a cloud email service that offered the following: Garauntee deliveribility of emails Have the ability to parse an email and post accordingly to a HTTP endpoint I swear I had seen a service like this, but I can't seem to relocate…
Khalid Abuhakmeh
  • 10,709
  • 10
  • 52
  • 75
5
votes
4 answers

What does the csrss.exe process do?

What is the purpose of the csrss.exe (Client/Server Runtime Server Subsystem) on Windows? Maybe someone could give a good explanation or pointers to documentation? Unfortunately Google results are pretty noisy when searching a core process of…
Dirk Vollmar
  • 172,527
  • 53
  • 255
  • 316
5
votes
1 answer

Android - what is a foreground service? (vs regular service)

Right now I have some class myService extends Service() being called by a startService intent from another context. The service runs some code in onStartCommand and then is destroyed/killed. What exactly is a 'foreground' service and how is it…
JDS
  • 16,388
  • 47
  • 161
  • 224
5
votes
1 answer

WKWebview Service Workers

How can I enable Service Workers for WKWebview, I heard that they are working only in Safari? Are there any workarounds? I heard that in iOS 14 the Service Workers would be available again on WKWebviews, is this true? I saw this…
Mircea Dragota
  • 644
  • 7
  • 17
5
votes
2 answers

SOA style architecture in ColdFusion?

The backend of the company's internal system is getting complicated and I would like to explore the idea of doing a SOA style architecture instead of a heavy monolithic system. Where shall I start? I'm new to SOA. Does it mean... individual CF…
Henry
  • 32,689
  • 19
  • 120
  • 221
5
votes
3 answers

Do AutoIt scripts, executed as service, function for GUI actions?

I'm using an AutoIt script to start and automate a GUI application. I need to activate the script each hour. Will AutoIt scripts (which perform actions on a GUI) work when used as a service? The script will be run as a service (not scheduled task).
FerranB
  • 35,683
  • 18
  • 66
  • 85
5
votes
1 answer

How to make RUST run gracefully in the background and daemonize?

This is what i want to achieve root> ./webserver start // Does not block the terminal after startup, runs in the background and the process is guarded root> My current implementation logic: Logic running in the background use…
World Link
  • 71
  • 2
  • 5
5
votes
0 answers

get clientId immediately after Service Worker registration

I would like to Uniquely identify each window or tab controlled by the Service Worker, I've read about clienId and the only way I figured I can achieve its value is by…
iTaMaR
  • 189
  • 2
  • 10
5
votes
1 answer

gRPC as Windows Service

I am experimenting with gRpc and have it running. I am using .net core 3.1. C# . I am now attempting to install it as a windows service. The machine is Win 10 Pro x64 . I added the line as instructed to run it as a windows service... public…
Jeff
  • 2,061
  • 4
  • 27
  • 45
5
votes
2 answers

How does angular handles dependency injection for multiple services?

I have created an abstract class that acts as a base service for my other two services. Following is the code snippet for this abstract class: import { Injectable } from '@angular/core'; export interface Book { title: string; description:…
Shruti B
  • 128
  • 1
  • 9