Questions tagged as 'services'

0
answers

Send application data with screen of cell blocked to the server using voice command [closed]

Good afternoon. I would like to know if there is a way to create a service in my application where when the user speaks something is taken the content of what he said and sent to the server, but with the cell blocked, without it enter the pas...
asked by 25.07.2015 / 19:33
0
answers

Refresh Main via an IntentService [closed]

I have an application that works together with GCM (Google Cloud Messages), which queries the server and when there is news sends a notification to the user. I need to update my MainActivity listView, what would be the best way to do this?...
asked by 06.07.2015 / 14:38
1
answer

Windows Service for after Exception

Is there a way to make a Windows service created in c # do not give Stop() after Exception ? The service was created with a timer , which will be executed every 1 hour, but there was an error in the execution and it retur...
asked by 17.11.2015 / 20:51
2
answers

Windows Service - Error 1053 When Starting

Hello, I have a windows service in C # that I have to install on several clients. My problem is that on some clients I can install and it works normally, however on some clients I can install the service but it does not start at all. I barely...
asked by 30.12.2014 / 19:46
2
answers

C # - Windows Service only runs once

I'm developing a windows service to run every 10 minutes, it inserts some values into the database, but I noticed that the routine only runs once. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data;...
asked by 10.07.2017 / 22:00
3
answers

Using Services to vailidar + ruby on rails

I'm trying to create a service that will check if a user exists class UserService def create_user(user_username, user_email) if User.find(user_username) false end if User.find(user_email) false end true end...
asked by 13.01.2016 / 21:55
2
answers

JSON x Web Services

1 - What is the difference of JSON for Web Services? (Only the format type on return)? 2 - In terms of performance, which would be better? 3 - In practice should I use JSON (with a php or java file for example) to integrate my applications...
asked by 15.03.2016 / 20:48
1
answer

Creating a client-server architecture in C # [closed]

I made a N-tier test application (database access, presentation, business model, and transfer objects) worked quietly and I learned a lot about 3 layers and N layers. Now I want to make a program that is client-server and I have these doubt...
asked by 05.07.2018 / 01:33
1
answer

Create bat to finish Service

I'm trying to create a .bat file to terminate and start a service in Windows. To do this I first end the process after restarting the service But the command inside the batch file (.bat) does not find the process that is taskkill /f /im...
asked by 23.05.2018 / 15:36
1
answer

Monitor in-app changes

I need a class that listens for some change in the application (or external change). I made a class that extended from class Service , however I realize that it enters the method onStartCommand only once. Am I doing something...
asked by 17.07.2017 / 04:55