Questions tagged [servicemanager]

The service control manager (SCM) is started at system boot. It is a remote procedure call (RPC) server, so that service configuration and service control programs can manipulate services on remote machines.

The service functions provide an interface for the following tasks performed by the SCM:

  • Maintaining the database of installed services.
  • Starting services and driver services either upon system startup or upon demand.
  • Enumerating installed services and driver services.
  • Maintaining status information for running services and driver services.
  • Transmitting control requests to running services.
  • Locking and unlocking the service database.
75 questions
0
votes
1 answer

Service-monitoring tool

We have several Linux processes implemented in various technologies, Java, C++, etc. They interact with each other by passing messages on Websphere MQ. If any process crashes, we would like it to be restarted automatically for a configured number of…
Yash
  • 946
  • 1
  • 13
  • 28
0
votes
1 answer

ZF2 load service config from module

I am still struggling in instantiating a service from a ZF2 module outside of Zend Framework (in a blank .php). I want to achieve: Instantiate + invoke a ZF2 service method from outside ZF by the use of the ServiceManager and possibly DI. What I…
0
votes
1 answer

Invocation of TIBCO web service from HP Service Manager is causing error

For the integration purpose, we need to consume a web service exposed by TIBCO in HP SM. In HP SM, we consume a web service by using a utility called wsdl2js, which create JavaScript using wsdl url. I am able to use wsdl2js but when I invoke the web…
0
votes
1 answer

ZF2 ServiceManager - adding new module

I started learning ZF2 but have a problem with ServiceManager. I tried to add new Module "Menu" to ServiceManager. In my application/config/module.config.php added this code: 'service_manager' => array( 'factories' => array( …
Nizzre
  • 275
  • 1
  • 6
  • 14
0
votes
1 answer

Use Service Manager Zend Framework 2

if I have a service manager in the module Category, such as, can I have read from Category in module Application? I have done so in Module.php in Application, 'list-category' is located in the module.config.php file of the module Category: public…
Carol Casta
  • 75
  • 1
  • 9
0
votes
2 answers

Zend Framework 2 Custom elements using ServiceManager not work

I want create a custom element and use the short name for add the element into Form, using the new ServiceManager tecnique for ZF2 V.2.1+ I am try to copy the same sample of the zend documentation step to step but it not works. When I use the…
0
votes
1 answer

How to set the values of a new incident?

I'm writing a C# code that creates a new Service Manager 2012 Incident and set its values I'm having a problem setting the "Source", "Classification Category", and "Affected User" values for the incident,, any help please? thanks,,
0
votes
1 answer

use service locator for form or add the dependency and create an object?

i am just getting my hands on zend framework 2. I have created a user form and to use that form in my controller i can either include the from class in my controller and create and object using new or i can get access to form using service manager…
graphicmist
  • 71
  • 3
  • 15
0
votes
2 answers

ServiceManager can't find classes by full namespace when testing with phpunit

I'm retrieving instances from the ServiceManager by their full class names in some cases, for example: $someThing = $serviceManager->get('MyModule\Some\Nice\Lib\SomeThing'); This works pretty well for HTTP MVC requests, however, when using phpunit,…
Daniel M
  • 3,369
  • 20
  • 30
0
votes
2 answers

cannot access ServiceManager in Zend Framework 2

I'm on 2.0.4. My files: https://gist.github.com/4191490 According to the documentation at http://framework.zend.com/manual/2.0/en/modules/zend.service-manager.quick-start.html If a class implements ServiceManagerAwareInterface, then its object will…
thoaionline
  • 518
  • 2
  • 5
  • 14
-1
votes
1 answer

Zend framework 2 get specific type services

How can I get every class that implements or extends from a specific class ? For example I want to get all of classes that instantiated from MyClassName class ?
Dante
  • 101
  • 12
-1
votes
1 answer

How I can use service Manager in entity class in ZendFramwork2?

How I can use service Manager in entity class in ZendFramwork2? I just can't get it. Upd: I create entity class of user and create method, which loads additional data about it from DB. I would can load this data via table-class if I have instance of…
Almeonamy
  • 23
  • 9
-2
votes
1 answer

how to make sure single guava service manager instance per jvm?

Singleton pattern allows to contain one instance per application thread. How can I make sure only single instance of guava Service Manager is running per JVM ? So when ever it launches a new seperate entry java thread can check whether the…
Njax3SmmM2x2a0Zf7Hpd
  • 1,354
  • 4
  • 22
  • 44
-2
votes
1 answer

how to retrieve values of ModuleName.global.php config files in autoload directory in Zend 2?

I've been looking for information on this question but the only answer I can find is by looking at how other modules take care of this. So far, I have seen this: With CdliTwoStageSignup in Module.php 'factories' => array( . …
paxtor
  • 331
  • 5
  • 17
-5
votes
1 answer

Logic Help for function Move up and Down in a listview

I am using a poco class for the following screen but im just wondering how I would achieve the move up and down elements of this screen I am using ObservableCollection to add my items to a mutual list my question is how would I achieve the move up…
c-sharp-and-swiftui-devni
  • 3,743
  • 4
  • 39
  • 100
1 2 3 4
5