Most voted "services" questions
77 questions
Sort by count of
-
16
votes2
answers1660
viewsWhat is a Backend as a Service (Baas)
I would like an explanation of what a Baas is that would overcome some doubts: What is Baas? In general, they are an API and/or framework and/or library? Why? What are the main ones? What are the…
-
13
votes2
answers2267
viewsWhat is the best way to run a java application as a Service on Windows (32 or 64 bit)?
What you need to do to run a Java application (no visual interface) as a Windows service. The program basically uses the Filesystem API and the network API (java.net, java.io and java.nio.) If it is…
-
10
votes2
answers8126
viewsWhat is the service layer in DDD?
Reading about Ddds I’ve heard about the service layer and I’m having a little doubt about that because from what I read a service can count business logic. Basically the definition I saw is this:…
-
7
votes1
answer625
viewsDoes using Timer class features (System.Timers) cost a Windows service?
I need to do a database check once a day. I’m thinking of using the class Timer (System.Timers). The time contactor feature will burden/lock the other system services? This solution is advisable…
-
7
votes1
answer765
viewsWhat are the advantages and disadvantages of using Baas
Yesterday I attended a lecture where I was presenting some things about BaaS(Backend as a Service). After that some doubts arose: Following this model the need to create a back-end for complete is…
-
5
votes1
answer325
viewsIn a service-oriented architecture, is the database decentralized?
I’m with the prospect of taking on a big project, and by its own scale I suggested the adoption of a service-oriented architecture - because it is easier to solve several medium problems than a very…
-
5
votes1
answer276
viewsError when putting Virtualbox as a service
I created a windows service to configure my VM in mode Headless, with the command: sc.exe create DailyLubuntu binpath= "\"C:\Program Files\Oracle\VirtualBox\VBoxHeadless.exe\" startvm Daily LUbuntu…
-
4
votes1
answer578
viewsHandle services with powershell
I created a script to start and stop a service. My intention is to be able to start or stop a service by simply clicking on a desktop shortcut. I created a shortcut for the script and in the…
-
4
votes2
answers926
viewsHow to reference the webservices of eSocial by Visual Studio?
I already followed the instructions of this question read, reread, and repeated the tutorial by Pedro Gaspar. And I can’t get eSocial webservices referenced by Visual Studio. What I’ve done so far…
-
3
votes1
answer101
viewsIs it possible to use Session in Windows Service?
I have an application in Windows Service, and I need to save the state while a certain method is running, which is the best way to do this?
-
3
votes1
answer250
viewsExecute a method with the closed application "Service"
On Android it is possible to send notifications, make queries via http, execute methods, all through a Service without the user need to necessarily run the application, just the fact that the…
-
3
votes1
answer226
viewsHow to implement Service Layer with Spring?
Does anyone know any tutorial, examples... any source to learn how to implement service layer?
-
3
votes0
answers32
viewsDoubt in the MVC standard: should one service talk to another directly?
It is correct for one service to talk to another directly through dependency injection, or who should manage this communication is the controller. Ex.: I have a service(A) that needs a data obtained…
-
2
votes1
answer115
viewsHow to determine if a string value is in XML format?
I am connecting with an API, or service as you wish, which returns an xml when it finds data in the database, but unfortunately it returns a string if nothing is found or an error occurs. In my…
-
2
votes2
answers4968
viewsError initializing SQL Server Express
I try to initialize the SQL Server service (SQLEXPRESS) and I get this error message: What can it be?
-
2
votes3
answers226
viewsHow to use Getsetting/Savesetting in Windows Services
I created a service and configured it as Localsystem. In the implementation I try to search for a record saved on REGEDIT by another programme. The method GetSetting always returns me empty. Is…
-
2
votes2
answers1116
viewsProgressbar loading per Javafx Process time
I have a method that carries a ProgressBar, but it only starts loading at the end of the process, that is after my application finishes generating the reports it starts to be filled. How do I load…
-
2
votes0
answers54
viewsUpdate Main via an Intentservice
I have an application that works together with GCM (Google Cloud Messages), which consults the server and when there is news sends a notification to the user. I need to update my Mainactivity…
-
2
votes0
answers141
viewsSend data from the app with locked cell screen to the server using voice command
Good afternoon. I wonder if there is a way to create a service in my application where when the user said something you take the content of what he said and send it to the server, but with the cell…
-
2
votes1
answer149
viewsInjection of dependency into service
Guys I can do dependency injection in services? for example, I tried this: service 1 var crypto = angular.module('crypto',['ngRoute']); service 2 var teste = angular.module('userlog',['crypto']);…
-
2
votes1
answer2797
viewsWhat is the difference between Service and Application Software?
I’ve always wondered about the difference between terms serviço and software de aplicação. Both have similar meanings, but what’s the big difference in themselves? Below are some definitions of the…
-
2
votes1
answer89
viewsWindows service for after Exception
Is there any way to make a Windows service created on c# don’t give Stop() after a Exception? The service was created with a timer, which will run every 1 hour, but there was an error in the…
-
2
votes1
answer47
viewsWindows service, using async method, is there a need?
In my system, I have some auxiliary routines, which are fired at defined times, outside of work hours. These routines are run by a Windows service program. Would you need to run these asynchronous…
-
2
votes2
answers163
viewsController and service logic with Angularjs
I have some questions regarding the logic of the controller and service search functions. Follow an example of service: angular.module("myApp").factory("ProjetosAPI", function ($http, config) { var…
-
2
votes0
answers95
viewsService with Filesystemwatcher does not listen forever
I’m doing a windows service in C#, which listens to a folder and every time it has an audio file it uploads. The problem is that it works, but after a few minutes of listening to the folder, it does…
-
2
votes0
answers175
viewsSharing Components and Services between Modules
In the development of Angular projects, it is common to share components and services between the various modules that the application may have. When it comes to services, Angular projects tend to…
-
1
votes1
answer1714
viewsError 5: Access denied in an attempt to install a service created on Windows Server 2012
I created an application of services and after the installation of it, I can not start it appears the following message: I’ve checked application permissions; I tried to delete "logs"; I’ve…
-
1
votes1
answer803
viewsJunit with spring Autowired
I have a big problem that in my Genericservice I use an @Autowired on an Httpservletrequest (Even not knowing the utility, because, I do not know the architecture so well), and needed to use unit…
-
1
votes1
answer118
viewsError ORA-12571 encountedred in Windows Service
I have a C# system running as a windows service, with Windows Server 2012R2. Eventually when the service tries to communicate with the database (to perform a query or make an Insert, for example)…
-
1
votes3
answers206
viewsContext in services and repositories
In the company we work, we use Asp.net mvc divided into 2 projects: web - (groundwork) service - (business rules) In several places I have noticed other programmers using the direct context (that…
-
1
votes2
answers5590
viewsWindows Service - Error 1053 on Start
Hello, I have a windows C# service that I have to install on several clients. My problem is that in some clients I can install and it works normally, but in some clients I can install the service…
-
1
votes0
answers401
viewsService or package to generate Nfe possessing only the Invoice key
With only the Nfe key I can access the Revenue website and view the Invoice in PDF. You can use a third-party service or bundle that manages such PDF in the same way as Recipe offers, possessing…
-
1
votes1
answer2035
viewsTranslation of Windows service name
I am using Windows in Portuguese in my work. I need to follow a tutorial in English to allow the windows firewall to work again. I can’t find the service "base Filtering engine service" in the list…
-
1
votes2
answers600
views -
1
votes1
answer756
viewsHow does the MVC+ Service layer architecture work?
I’m trying to find some documentation for this, if anyone has a book that addresses the subject please inform.
-
1
votes1
answer1244
viewsWhat are the advantages and disadvantages of publishing a web service on a server or as a Windows service?
My company often creates Windows services to publish services Web. This means that the service is not hosted on any server (such as IIS). One obvious disadvantage I see right away is that the…
-
1
votes0
answers201
viewsIs it possible to install a windows service from a DLL? (Delphi)
I have a dll that has methods that should be run on a windows service. I did a search and saw that to install a service, I would need an executable. I own the 2007 version of Delphi and Windows 7.…
-
1
votes1
answer38
viewsMonitor changes in the application
I need a class that listens for any changes in the application (or external changes). I made a class that extended from class Service, but I understand that it goes into the method onStartCommand…
-
1
votes1
answer116
viewsConfigure Multiple Windows Services in a Single Project
I am developing a project like Windows Services and I came across the need to perform routines with different runtime and rules. It is possible to have multiple windows services in a single project?…
-
1
votes3
answers228
viewsUsing Services to vailidar + ruby on Rails
I’m trying to create a service that will check if a Sario exists class UserService def create_user(user_username, user_email) if User.find(user_username) false end if User.find(user_email) false end…
-
1
votes1
answer734
viewsService variable comes as UNDEFINED in Angular Component 2
I’m not getting a variable from a service at 2. I have companies-index.component.ts and companies-crud.service.ts. I would like to take a service variable in Component but it always comes as…
-
1
votes0
answers234
viewsResponsibility of service and Repository
Folks would like to know who uses service design-Pattern and Repository, how it would be a basic architecture structure, or whatever the service may or may not do, and what are the responsibilities…
-
1
votes1
answer384
viewsInteract with Windows service to send and receive data?
I created a service on Windows is installed on localhost and now has to interact with this service. Within my web application I will give a query command that will be sent to this service and this…
-
1
votes2
answers2039
viewsList Services via CMD
I’m using the remote wmic service get displayname,name,state to List Windows Services. I would like to know if it is possible to list via CMD one or more Specific Services. In this scenario I want…
-
1
votes0
answers932
viewsTimer - run at set time
I am developing a Windows Service, where every day at 18:00 hours, I need an event to be triggered. So I’m using the class Timer. I managed to trigger an event by defining the property Interval,…
-
1
votes2
answers681
viewsC# - Windows Service only runs once
I am developing a windows service to run every 10 minutes, it inserts some values in the database, but I noticed that the routine only runs once. using System; using System.Collections.Generic;…
-
1
votes1
answer74
viewsGetopenfilename() used with user personification
I have a process that requires SYSTEM privileges and for this purpose is launched by a service. When this process executes the function Getopenfilename() to open a select file dialog box, I get an…
-
1
votes0
answers1184
viewsService installation with sc.exe
I created a Serviceapplication using Delphi XE6 When I use the command install (no prompt) the application is installed correctly and the service can be started. But I need to install 4 instances of…
-
1
votes1
answer144
viewsLaunch an MVC application through a Windows Service
I have an application that was developed in the DDD standard, which uses dependency injection, it works normally, however I needed to add a Windows Service type project that will start the…
-
1
votes1
answer67
viewsRun service even if the app is not open
I am creating an alarm clock app and in the tests I would like it to wake up (in this example it still vibrates), but I am not able to make it run in the background and so does not end up awakening,…
android services broadcastreceiver android-alarmmanagerasked 6 years, 8 months ago Eduardo Rafael Moraes 710