Automatically Determining Compatibility of Evolving Services


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Automatically Determining Compatibility of Evolving Services
# 1  
Old 05-22-2008
Automatically Determining Compatibility of Evolving Services

HPL-2008-49 Automatically Determining Compatibility of Evolving Services - Becker, Karin; Lopes, Andre; Milojicic, Dejan; Pruyne, Jim; Singhal, Sharad
Keyword(s): SOA, service, backward compatibility, version
Abstract: A major advantage of Service-Oriented Architectures (SOA) is composition and coordination of loosely coupled services. Because the development lifecycles of services and clients are de-coupled, multiple service versions have to be maintained to continue supporting older clients. Typically versions a ...
Full Report

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Script to Start services based on dependent services on other AIX machine

Hi, I just started working on a script. After my research, i found a command which can help me: AIM: To build a script which starts the services (Services 1) on server 1 automatically whenever its down. And it has a dependency on other service (Service 2) on Server 2. So my script has to... (4 Replies)
Discussion started by: draghun9
4 Replies

2. Red Hat

Restart of services if port no is changed in /etc/services in RHEL

I had a doubt if any services need to be restarted if port no in /etc/services in an RHEL setup is changed. For eg, the port no of 443 for SSL may need to be changed. I hope my query is clear whether any services need to be restarted if port no in /etc/services is changed. Please revert with... (10 Replies)
Discussion started by: RHCE
10 Replies

3. Shell Programming and Scripting

Automatically determining directory path for scripts and programs

I have some C++ code in the following directory structure /home/chrisd/tatsh/trunk/hstmy/ ├── baseLib ├── bin │ ├── awk │ ├── bash │ ├── diag │ ├── ksh │ │ └── TAG201011 │ ├── old │ ├── perl │ ├── prog │ ├── py │ └── tcsh ├── docs ├── fortran ├── others... (0 Replies)
Discussion started by: kristinu
0 Replies

4. Solaris

Determining PostgreSQL version

I need to find out if a version of PostgreSQL installed in SPARC Solaris is > 7.2 please tell me how to do it. thanks. (4 Replies)
Discussion started by: orange47
4 Replies

5. UNIX for Advanced & Expert Users

Determining typing latency

Hi all, When I use an editor (vi) that is spawned in a remote server, visually I could see the latency between typing a character/word and being displayed on the terminal. I could see this visually but how do I get a metric on this or how to quantify this? As expected, when I type in a editor... (6 Replies)
Discussion started by: matrixmadhan
6 Replies

6. Programming

determining the IP of a function

Is there a way to determine the "Instruction Pointer" of a function in c++, and if so can someone tell me? (5 Replies)
Discussion started by: neur0n
5 Replies

7. UNIX for Advanced & Expert Users

start some services automatically

Hello All i have a question related to some services,i want to start some services with server linux centos. i make "chkconfig httpd on" and "chkconfig asterisk on",but when i verify with chkconfig --list i found httpd 0: off 1: off 2: on 3: on 4: on 5: on 6:... (6 Replies)
Discussion started by: bernard12
6 Replies

8. UNIX for Advanced & Expert Users

Determining interface to access IP

Hello I've got a server with multiple NICS. In a script I want to log the outbound interface. Is there an easy way I can do this so that the output looks something like this: host(xxx.xxx.xxx.xxx): Opening connection to ... Obviously, getting the host is simple with hostname. But how... (4 Replies)
Discussion started by: brsett
4 Replies

9. Virtualization and Cloud Computing

Data Warehouse evolving towards CEP?

vincent Tue, 25 Mar 2008 03:15:31 +0000 Whilst at DAMA last week I managed to miss the Teradata talk on “active data warehouses“. Luckily James Taylor blogged comprehensively on the talk, and although it seems Teradata declined to make the presentation available to attendees, I’m guessing it was... (0 Replies)
Discussion started by: Linux Bot
0 Replies
Login or Register to Ask a Question
WIN32_CREATE_SERVICE(3) 						 1						   WIN32_CREATE_SERVICE(3)

win32_create_service - Creates a new service entry in the SCM database

SYNOPSIS
mixed win32_create_service (array $details, [string $machine]) DESCRIPTION
PARAMETERS
o $details - An array of service details: o $service - The short name of the service. This is the name that you will use to control the service using the net command. The ser- vice must be unique (no two services can share the same name), and, ideally, should avoid having spaces in the name. o $display -The display name of the service. This is the name that you will see in the Services Applet. o $description -The long description of the service. This is the description that you will see in the Services Applet. o $user - The name of the user account under which you want the service to run. If omitted, the service will run as the LocalSystem account. If the username is specified, you must also provide a password. o $password - The password that corresponds to the $user. o $path - The full path to the executable module that will be launched when the service is started. If omitted, the path to the current PHP process will be used. o $params - Command line parameters to pass to the service when it starts. If you want to run a PHP script as the service, then the first parameter should be the full path to the PHP script that you intend to run. If the script name or path contains spa- ces, then wrap the full path to the PHP script with ". o $load_order - Controls the load_order. This is not yet fully supported. o $svc_type - Sets the service type. If omitted, the default value is WIN32_SERVICE_WIN32_OWN_PROCESS. Don't change this unless you know what you're doing. o $start_type - Specifies how the service should be started. The default is WIN32_SERVICE_AUTO_START which means the service will be launched when the machine starts up. o $error_control - Informs the SCM what it should do when it detects a problem with the service. The default is WIN32_SERVER_ERROR_IGNORE. Changing this value is not yet fully supported. o $delayed_start - If $delayed_start is set to TRUE, then this will inform the SCM that this service should be started after other auto- start services are started plus a short delay. Any service can be marked as a delayed auto-start service; however, this setting has no effect unless the service's $start_type is WIN32_SERVICE_AUTO_START. This setting is only applicable on Windows Vista and Windows Server 2008 or greater. o $base_priority - To reduce the impact on processor utilisation, it may be necessary to set a base priority lower than normal. The $base_priority can be set to one of the constants define in Win32 Base Priority Classes. o $machine - The optional machine name on which you want to create a service. If omitted, it will use the local machine. RETURN VALUES
Returns WIN32_NO_ERROR on success, FALSE if there is a problem with the parameters or a Win32 Error Code on failure. EXAMPLES
Example #1 A win32_create_service(3) example Create a service with the short name 'dummyphp'. <?php $x = win32_create_service(array( 'service' => 'dummyphp', # the name of your service 'display' => 'sample dummy PHP service', # short description 'description' => 'This is a dummy Windows service created using PHP.', # long description 'params' => '"' . __FILE__ . '" run', # path to the script and parameters )); debug_zval_dump($x); ?> SEE ALSO
win32_delete_service(3), Win32 Base Priority Classes, Win32 Error Codes. PHP Documentation Group WIN32_CREATE_SERVICE(3)