23,132 questions
0
votes
0
answers
5
views
How to check why my GCLOUD_SERVICE_KEY is not properly loaded?
I am running a CircleCI pipeline that fails
ERROR: (gcloud.auth.activate-service-account) Could not read json file /home/circleci/gcloud-service-key.json: Expecting value: line 1 column 1 (char 0)
I ...
-1
votes
0
answers
20
views
Super methods in service class In Floating Pop up
public void onReceive(final Context context, final Intent intent) {
Log.v(LOG_TAG, "Receieved notification about network status");
WindowManager wm = (WindowManager) context....
0
votes
0
answers
29
views
My Jenkins job failed with Timeout error and local System getting Lag and Generate Heat
I have created an node agent and executed 6 maven jobs parallelly each job can run one testng.xml file
Issue 1: After sometime of execution my local system getting and generate more heat
Issue 2: ...
-1
votes
2
answers
13
views
systemd service oom (out of memory) is not triggered [closed]
With following steps, I tried to trigger OOM on systemd service, but failed, what is missed? Thanks very much in advance for any suggestions :)
Build a binary which will ask for 3G memory total (30 ...
0
votes
0
answers
23
views
Init-container, but the startup-probe has run already
I have a service, which I would like to get data from a database.
But because the schematics sometimes can change, I need a way to ensure, that I can migrate it, and quickly have the service's new ...
-3
votes
0
answers
37
views
Systemd instead cron, with tracking [closed]
I'm trying to create systemd service + timer. So far I got this:
In service:
[Unit]
Description=Filewriter Service
Wants=filewriter.timer
After=network-online.target
[Service]
Type=simple
ExecStart=/...
0
votes
1
answer
12
views
how to implement service quota
Suppose I have DynamoDB table orders which stores the orders created by each customer. The table has a column OrderId (Primary Key), and a column CustomerId. Customers can create create/delete orders....
-1
votes
1
answer
31
views
ERROR: hellosystemd-1.00-r0 do_package: Didn't find service unit 'hello.service', specified in SYSTEMD_SERVICE:hellosystemd
I need to install a systemd service into my own image, but it is failing with following errors:
*ERROR: hellosystemd-1.00-r0 do_package: Didn't find service unit 'hello.service', specified in ...
0
votes
1
answer
13
views
Why are all my connection strings null, when I call builder.Configuration.GetConnectionString("connectionString") for my hosted service?
I call options.UseOracle(builder.Configuration.GetConnectionString("connectionString")) but my connection string is always null. This is within my HostedService.
0
votes
1
answer
10
views
How to disable/enable uwsgi web server from SSH CLI?
I have an embedded Linux system in a cellular modem with a web gui as well as SSH access. For security, I would like to be able to enable the web gui from SSH when it is needed, and otherwise disable ...
0
votes
0
answers
33
views
Identify the openshift pod/deployment from which an http request came to another pod
I have a service that is deployed in openshift.
There is a specific http request that is only allowed to come from one specific other service, also deployed in openshift.
When I get the http request, ...
0
votes
0
answers
32
views
Issue in connecting the MariaDB using MaxScale
I am trying to connect to MariaDB using below approach using the service name for MaxScale here:
kubectl run mariadb --rm -it --image=mariadb:10.6 -- bash -c "mariadb -h mariadb-galera-...
0
votes
0
answers
27
views
Running application on Android 13+ on Samsung Galaxy gests suspended even if having foreground services implemented
I have a less common business requirement - the need to implement an UDP listener contually receiving messages (sometime on seconds or minutes interval) and do some processing on data received.
The ...
0
votes
0
answers
19
views
Vue.js - How to read external properties file and serve into components
I have a Vue.js application and I would like to know how to read and use the external properties file. Then I need to use this properties inside the components.
I would also like to know if is it ...
-1
votes
0
answers
9
views
crash when call CGWindowListCopyWindowInfo function
in my app, i call the function CGWindowListCopyWindowInfo get window info .
CGWindowListCopyWindowInfo maybe call on main thread or sub thread.
now, i recieve some crash report.
crash report like this ...
0
votes
1
answer
34
views
Do separate processes share a main thread?
I have an Android app with a few components, each set to run in their own processes:
The activities
A content provider
Foreground service
Accessibility service
I've noticed that heavy work being ...
-1
votes
0
answers
28
views
Uploading a large file to a service in a Kubernetes deployment failed with missing multipart boundary
When uploading a large file (>20MB), a Go service pod failed to parse the request, saying "bufio: buffer full". Further debugging showed that the request body looked like binary data, ...
1
vote
2
answers
37
views
Issue with reading response of type Object in Angular Component
I am having issue as described below:
I have user-details-with-addresses.ts file and this has two properties:
export class userDetailsWithAddresses{
user: User;
addresses: UserWithAddresses[];
...
0
votes
0
answers
16
views
Google Account Service stoped working and starting throwing invalid JWT after a while
This post is hidden. It was deleted 8 mins ago by M--.
Hey everyone i hope everyone is doing great. am a freelancer and am currently working on an application for a client where some parts of the ...
1
vote
0
answers
16
views
Form using more than one service - Ofbiz 18.12
I have a form to create and update a client entity, the field for the name is supposed to search in the entity, make autocompletion and if it finds a match, it is supposed to place the results to the ...
0
votes
0
answers
62
views
How to start and keep a Windows service running after Java program exits? [duplicate]
I followed other examples on Stack Overflow that relate to this question, but they only show how to start the service and keep it alive inside the Java program. My question is different. I need to ...
1
vote
1
answer
19
views
AuthenticationService causes automatic navigation
I have a login screen in angular. But every time I try to open it (localhost:4200/login) it opens this but than jumps to localhost:4200.
import { Component, signal } from '@angular/core';
import { ...
0
votes
1
answer
63
views
Is there any way to get a list of retiring azure services programmically?
I have to write a function to log tickets in jira for retired services.
Is there any api or rs feed for the following?
Retiring Azure Services
Any help in retrieving the list will be appreciated.
I ...
0
votes
0
answers
17
views
Are Windows Service dependencies taken into account when resuming from sleep?
On Windows you can control services' dependencies start order by setting DependOnService and DependOnGroup.
Does Windows also guarantee the dependencies order when resuming from sleep or should I ...
1
vote
0
answers
57
views
python code running as a service to record and play audio
i have a python code running as a service on Raspberry Pi 4. The app is basically to record some audio in a certain language using a microphone, save the audio to a .wav file, then use ...
0
votes
1
answer
38
views
"Could not open a connection to your authentication agent" error with running SSH Agent service
I have the following user service unit file set up to ensure that I have Github access at all times:
[Unit]
Description=SSH key agent
[Service]
Type=exec
Environment=SSH_AUTH_SOCK=%t/ssh-agent.socket
...
0
votes
1
answer
56
views
Error 1053 when trying to start the service in Windows Service
I can't start a service that I created in C++Builder using the TService class.
I wrote a service that does nothing and I want to start it, but the service does not start. I register the service and ...
0
votes
0
answers
37
views
Flutter Blue Plus Error in writing on a characteristic
Using flutter_blue_plus: ^1.33.5
I have a smartwatch code generating services and characteristics.
The smartphone connects to the smartwatch and uses "discoverServices", iterates every ...
3
votes
0
answers
43
views
FirebaseMessagingService on Android does not work after application is removed from background
I have this Notification Service:
@AndroidEntryPoint
class MessagingService : FirebaseMessagingService() {
override fun onNewToken(token: String) {
super.onNewToken(token)
}
...
0
votes
0
answers
28
views
How Can I Receive Notifications with Firebase Cloud Messaging in Android?
I'm trying to receive notifications in my Android app using Firebase Cloud Messaging (FCM). But it doesn't work the way I want. I have two devices and I send notifications from one to the other. I get ...
0
votes
0
answers
23
views
Gunicorns cant assing command to workers
I work on notification server that integrated the Openstack. In this service there is api service that has multiple process. this processes executed by the gunicorn. Below code is content of the api....
0
votes
0
answers
37
views
How to get current time in seconds in my service override.conf file
I am using some third-party service where I need to write override.conf.
in override.conf I need the current time in seconds but am not able to get it.
I have written the below override file
/etc/...
0
votes
0
answers
36
views
Installing ICD-API as a Windows service
After installing ICD-Web API as a windows service, downloading the package:
https://icd.who.int/docs/icd-api/ICDAPI-WindowsService/
When configuring the connection through https I get the following ...
0
votes
0
answers
41
views
Why a Python based Windows service can't be started
I want to develop a windows service using Python. As a try, I copied code from this page. Then I compiled it to exe with pyinstaller. Then I use wix make a msi and it as Windows 11 service.
But after ...
1
vote
0
answers
42
views
Is there a way to wait for the Windows Network Stack to be initialized using windows services or c#?
We are working on a windows service that requires ethernet communications using c# .net. However we have a problem where on startup, the windows networking stack / underlying background network ...
0
votes
0
answers
16
views
Bluetooth permission error in service class
I m building an Android application that should to use device connected by Bluetooth to read some values.
So this is my service class:
package it.mc.service;
import static android.bluetooth....
0
votes
0
answers
21
views
Task scheduler versus a service runnign in the background
Requirements -
I need to make some checks (system resources, licensing, gates, registry keys etc.) every 10 minutes and then take some action (say launch an app). I need to repeat this process every ...
0
votes
0
answers
45
views
Why is the ServiceHost throwing an exception when I add a UdpAnnouncementEndpoint to ServiceDiscoveryBehavior?
The ServiceHost is throwing a NullReferenceException when I try to facilitate the service announcement. I do it exactly as described here
Below is a complete running code illustrating the problem.
I ...
0
votes
0
answers
97
views
Hosting a Windows Service using .NET Core
I'm porting an existing .NET Framework Application which was spread about various Windows Services to .NET Core. It is not that the applications should run autonomously but in the context of ASP.NET ...
0
votes
1
answer
62
views
C# FileInfo.Exists always returns false for a shared network path in a Windows service
Question:
I am using the FileInfo.Exists method in C# to check whether a file exists on a shared network location. However, the method always returns false, even though the file is present at the ...
0
votes
0
answers
52
views
connection to Api through Postman does not work Service Desk Plus
I'm trying to test the API:
<service domain|custom domain>/app//api/v3/requests
Making the respective changes to my service desk would be like this:
https://sdpondemand.manageengine.com/app/...
0
votes
0
answers
13
views
When i started my application, spring does not see my been of type IngredientRepository
Description:
Parameter 0 of constructor in tacos.web.DesignTacoController required a bean of type 'tacos.data.IngredientRepository' that could not be found.
Below controller;
package tacos.web;
...
0
votes
0
answers
19
views
wcf class in separate project not active when running as a service
I have a service application which contains multiple projects. One of the projects is a WFC project.
When running the main module as a application, the WFC part can be accessed. However, when running ...
0
votes
1
answer
72
views
AuthorizationHandler gets new instance of injected service
I have a Blazor app with custom AuthorizationHandler and IAuthorizationRequirement. Snippet from the AuthorizationHandler:
internal class PermissionLevelAuthorizationHandler : AuthorizationHandler&...
0
votes
1
answer
62
views
AssertionError when launching python via systemd [closed]
I seem to be getting an AssertionError with my Python script, but only when I launch it through systemd. Otherwise, it works fine if launched manually from the command line. I thought perhaps it's a ...
0
votes
0
answers
17
views
Is there a way to autodetect User for systemctl service?
I have a QT project that is being launched by custom systemctl service on Ubuntu. The problem is that I need to edit my .service file each time I am trying to set up this stuff on new device.
For ...
0
votes
1
answer
38
views
Action after one hour from the specified time
I have a service that records users of my telegram bot in the database. And I need to implement a mechanism by which if a user has not responded for an hour, he is recorded in the database. The user ...
0
votes
0
answers
34
views
Can't figure out how to turn on screen from foreground service or receiver without half or more of the functions being deprecated
I have a foreground service that should turn on the screen of the user everytime an update in the database occurs to let the user know, but I can't seem to figure out how to turn on the screen.
So far ...
1
vote
0
answers
29
views
Android ForegroundService in Multiple Screen of Jetpack Compose
at the moment i am developing Music Player in Jetpack Compose. I want to ask how can i handle using MusicService in multiple screens? I mean i have to be able change service state from my Home Screen ...
0
votes
0
answers
22
views
Remote service binding implementation
`
I’m trying to implement remote binding between two different Android apps. The first app contains a ClientActivity that binds to a Service in the second app. The service is supposed to generate a ...