JobScheduler Web Services Executing JobScheduler commands
|
|
|
- Samuel Young
- 10 years ago
- Views:
Transcription
1 JobScheduler - Job Execution and Scheduling System JobScheduler Web Services Executing JobScheduler commands Technical Reference March 2015 March 2015 JobScheduler Web Services page: 1
2 JobScheduler Web Services - Contact Information Contact Information Software- und Organisations-Service GmbH Giesebrechtstr. 15 D Berlin Germany Telephone +49 (0) Telefax +49 (0) Mail [email protected] Web Last Updated: 03/13/ :01 PM This documentation is based on JobScheduler Version Copyright SOS GmbH Berlin. All rights reserved. All trademarks or registered trademarks are the property of their respective holders. All information and materials in this book are provided "as is" and without warranty of any kind. All information in this document is subject to change without further notice. This product includes software developed by the Apache Software Foundation ( We would appreciate any feedback you have, or suggestions for changes and improvements; please forward your comments to [email protected]. March 2015 JobScheduler Web Services page: 2
3 JobScheduler Web Services - Table of Contents Table of Contents 1 Abstract Getting started Introduction Use of the JobScheduler for Web Services The Web Service Capability of Programs and Scripts Jobs Orchestration using Web Services Routing Web Service Requests The Asynchronous Web Service Query Process The synchronous Web Service Web Service Control Starting a Job Starting a job chain Configuration of an asynchronous Web Service Configuration of a Job Chain as an asynchronous Web Service The Style Sheet "request_xslt_stylesheet" The Style Sheet "response_xslt_stylesheet" The Style Sheet "forward_xslt_stylesheet" Configuration of a synchronous Web Service The Creation of Jobs for Synchronous Web Services Appendix A: The execute_file_request.xslt Style Sheet Appendix B: execute_file_response.xslt Appendix C: execute_file_forward.xslt Index March 2015 JobScheduler Web Services page: 3
4 JobScheduler Web Services - Abstract 1 Abstract... to be defined... March 2015 JobScheduler Web Services page: 4
5 JobScheduler Web Services - Getting started 2 Getting started... to be defined... March 2015 JobScheduler Web Services page: 5
6 JobScheduler Web Services - Introduction 3 Introduction The JobScheduler offers an interface with which the JobScheduler "external API" are provided as Web Services. With the external API objects, for example jobs, job chains and orders, can be scheduled. The following two types of Web Service can be provided: Asynchronous Web Services The JobScheduler can be configured to accept and reply to Web Service requests using XSLT-Stylesheets. It is not restricted to using a specialized protocol above HTTP (such as SOAP ). The implementation of this protocol is not contained in the JobScheduler itself but in the style sheets. Existing job chains can be adapted with this method for use as Web Services. The use of this technique means that the results from order processing are relayed asynchronously. A synchronous response is however also possible with this method - as confirmation that an order has been accepted. Synchronous Web Services Should synchronous responses containing the results of job processing be required, then the necessary interfaces must be included in the jobs themselves. Synchronous job responses are then sent by way of the JobScheduler API. The Web Service queries are then interpreted in jobs. Style sheets are not used - instead, a job chain is configured to reply to the Web Service. An understanding of the following subjects is seen as a requirement for this tutorial: Knowledge of the syntax of SOAP messages An understanding of the use of Jobs and Job Chains in the JobScheduler Basic knowledge of the JobScheduler XML Commands Basic knowledge of XSLT (for asynchronous Web Services) Knowledge of the JobScheduler internal API (for example Java) for the job implementation (for synchronous Web Services) March 2015 JobScheduler Web Services page: 6
7 JobScheduler Web Services - Use of the JobScheduler for Web Services 4 Use of the JobScheduler for Web Services The JobScheduler can make objects available to start initiated by a Web Service. The following examples show the usage of this interface in different fields of application 4.1 The Web Service Capability of Programs and Scripts Executable programs und shell scripts can be made available as Web Services. Applications can then control JobScheduler objects by way of Web Service calls. In turn, these objects can be used to start programs, (shell-) scripts or Java classes. March 2015 JobScheduler Web Services page: 7
8 JobScheduler Web Services - Use of the JobScheduler for Web Services 4.2 Jobs Orchestration using Web Services Programs and scripts can be integrated in Business Process Management (BPM) using the JobScheduler Web Service. The JobScheduler then delivers synchronous and asynchronous responses to the BPM engine. March 2015 JobScheduler Web Services page: 8
9 JobScheduler Web Services - Use of the JobScheduler for Web Services 4.3 Routing Web Service Requests The JobScheduler can route Web Service requests from the internet to an intranet. The requests are then received, authenticated and validated, and valid requests forwarded to a further JobScheduler in the intranet. March 2015 JobScheduler Web Services page: 9
10 JobScheduler Web Services - Use of the JobScheduler for Web Services March 2015 JobScheduler Web Services page: 10
11 JobScheduler Web Services - The Asynchronous Web Service Query Process 5 The Asynchronous Web Service Query Process The JobScheduler must be configured to provide a Web Service by way of an URL. This URL is then when a client sends a Web Services query to the JobScheduler (host and TCP port) per HTTP POST. In the example presented in this documentation the URL is used. The JobScheduler is not able to understand such incoming queries directly and therefore uses a request_xslt_stylesheet which has been preconfigured for the Web Service. This style sheet is used to transform the query into an XML command which can then be interpreted by the JobScheduler. The JobScheduler executes the XML command and holds the HTTP connection open. Further, it returns answers in XML format after executing XML commands. For example, the JobScheduler returns the following XML answer on successful completion of the <kill_task> command: <spooler> <answer> <ok/> </answer> </spooler> The (SOAP) client at the other end of the open HTTP connection expects a synchronous reply in the form of a SOAP message. The JobScheduler therefore uses the response_xslt_stylesheet to transform its XML responses into a format which the client can understand. After sending this reply to the client, the JobScheduler closes the HTTP connection. Such synchronous responses generally contain relatively simple information such as whether, for example, an order has been successfully received and which ID it has been allocated. In order to provide a Web Service in which the response contains the results of a completed order, it must also be possible to make responses asynchronously. This is necessary as order queuing and execution can take longer than the time for which the HTTP connection is kept alive. In this case, the order parameters (which change as a job chain is processed) are transformed using the style sheet "forward_xslt_stylesheet". The result of the order is sent as an asynchronous response to the (SOAP) client (or a completely different recipient) using a new HTTP connection. March 2015 JobScheduler Web Services page: 11
12 JobScheduler Web Services - The Asynchronous Web Service Query Process March 2015 JobScheduler Web Services page: 12
13 JobScheduler Web Services - The synchronous Web Service 6 The synchronous Web Service C o n s i d e r t h e s i t u a t i o n w h e r e a W e b S e r v i c e h a s b e e n c o n f i g u r e d f o r t h e URL and that this service uses a job chain to synchronously reply to Web Service queries. These queries come to the JobScheduler (to the host and TCP port) from the client as HTTP-POST requests. The JobScheduler would not attempt to interpret this query, but create an order for the job chain which has been pre-configured for Web Services. This order would then contain the query. The jobs in this Web Services job chain have the possibility of reading the query out of the order and replying to it. Jobs in this job chain must reply to the query using the Web_service_response.send() method. March 2015 JobScheduler Web Services page: 13
14 JobScheduler Web Services - The synchronous Web Service March 2015 JobScheduler Web Services page: 14
15 JobScheduler Web Services - Web Service Control 7 Web Service Control The JobScheduler distribution contains two style sheets, which enable the Web Service functions of the JobScheduler with SOAP. This Web Service is, however, per default inactive. <web_service debug = "no" request_xslt_stylesheet = "config/scheduler_soap_request.xslt" response_xslt_stylesheet = "config/scheduler_soap_response.xslt" name = "scheduler" url_path = "/scheduler" > </web_service> Example: scheduler.xml: Web Service activation To use the web service of the JobScheduler the tag must be inserted in the scheduler.xml. The best way to customize this is to use JOE. A Web Service will then be available under the URL after the JobScheduler has been restarted. 7.1 Starting a Job The SOAP <startjob> method, which is made available in the namespace is used to start a job. This method recognizes the following parameters, which are then sent as child elements : job: the Jobname name: the Task Name (optional) after: the number of seconds which should be waited before the task is started (optional) at: a time at which the task should be started (optional) Job parameters can be set by sending as many <param> elements as required. Note that <param> has <name> and <value> as child elements. <?xml version="1.0" encoding="utf-8"?> <soapenv:envelope xmlns:soapenv=" <soapenv:body> <startjob xmlns=" <job>scheduler_check_sanity</job> <at> :05:00</at> </startjob> </soapenv:body> </soapenv:envelope> Example: startjob for the scheduler_check_sanity Job A SOAP document is returned as reply, containing the task id allocated by the JobScheduler. March 2015 JobScheduler Web Services page: 15
16 JobScheduler Web Services - Web Service Control <?xml version="1.0" encoding="utf-8"?> <soapenv:envelope xmlns:soapenv=" <soapenv:body> <sos:taskid xmlns:sos=" </soapenv:body> </soapenv:envelope> Example: SOAP Answer to startjob 7.2 Starting a job chain The SOAP addorder method is used to create an order. This method recognizes the following parameters, which must be sent as child elements of <addorder>: jobchain: The order job chain id: the order id (optional) title: the order title (optional) Order parameters can be set by sending as many <param> elements as required. <?xml version="1.0" encoding="utf-8"?> <soapenv:envelope xmlns:soapenv=" <soapenv:body> <addorder xmlns=" <jobchain>database_reports</jobchain> <title>soaptest</title> <param> <name>command</name> <value>select * FROM SCHEDULER_MANAGED_ORDERS</value> </param> <param> <name>database_connection</name> <value>scheduler</value> </param> <param> <name>scheduler_order_report_mailto</name> <value> @myhost.com</value> </param> <param> <name>scheduler_order_report_asbody</name> <value>1</value> </param> <param> <name>scheduler_order_report_subject</name> <value>webservice_test 1</value> </param> </addorder> </soapenv:body> </soapenv:envelope> Example: addorder for the database_reports Job Chain (from the Managed Jobs Packet) A SOAP document containing the id assigned by the JobScheduler to the order is then sent as a reply. <soapenv:envelope xmlns:soapenv=" <soapenv:body> <sos:orderid xmlns:sos=" </soapenv:body> </soapenv:envelope> Example: SOAP Reply to addorder March 2015 JobScheduler Web Services page: 16
17 JobScheduler Web Services - Configuration of an asynchronous Web Service 8 Configuration of an asynchronous Web Service In order that the JobScheduler can use the style sheets which are described in the next chapter of this documentation, the scheduler.xml configuration file must be modified. First of all a <http_server> element must be added after the </process_classes> element, should it not already exist. A <web_service> element then needs to be added within the <http_server> for each Web Service. The configuration of the Web Service for the example used in this documentation is as follows: <web_service debug = "yes" request_xslt_stylesheet = "config/webservice/execute_file_request.xslt" response_xslt_stylesheet = "config/webservice/execute_file_response.xslt" forward_xslt_stylesheet = "config/webservice/execute_file_forward.xslt" name = "execute_file" url_path = "/execute_file" /> Example: Web Service config The debug="yes" parameter causes the results of the XSL transformation to be saved in the JobScheduler log directory. This is useful for monitoring whether a transformation has been carried out as expected, but should be switched off in a productive system as this can create large amounts of data. Note that in a real JobScheduler installation, the paths to the directories in which the style sheets are to be found may differ from those given in the example above. Note also that the JobScheduler must be restarted before changes made to the scheduler.xml file are implemented. March 2015 JobScheduler Web Services page: 17
18 JobScheduler Web Services - Configuration of a Job Chain as an asynchronous Web Service 9 Configuration of a Job Chain as an asynchronous Web Service In the following example it is assumed that the JobScheduler has been installed together with the Managed Jobs packet. A preconfigured job chain is included in the Managed Jobs packet. This job chain includes the JobSchedulerManagedExecutableJob, which in turn starts executable files on the JobScheduler host. Note that the Managed Jobs packet is not a requirement for Web Services with the JobScheduler, it is only used for this example. A SOAP interface should be made available for this job chain which allows executable files to be processed on the JobScheduler host. A UNIX "ls" command, which writes the content of a working directory to stdout, is used as an example call. An asynchronous answer containing the stdout standard output from the executable file should be available as an option. The complete style sheet source code can be found in the appendices. 9.1 The Style Sheet "request_xslt_stylesheet" The SOAP query itself forms the starting point for the development of style sheets to accept SOAP queries and transform them into XML commands which the JobScheduler can understand. The SOAP interface uses an executefile method, with a file parameter to specify the request. <?xml version="1.0" encoding="utf-8"?> <soapenv:envelope xmlns:soapenv=" <soapenv:header> <wsa:to xmlns:wsa=" </wsa:to> </soapenv:header> <soapenv:body> <executefile xmlns=" <file>ls</file> </executefile> </soapenv:body> </soapenv:envelope> Example: SOAP Request Method executefile Before the JobScheduler transforms the request, it embeds it in a <service_request> document, which transports additional meta-information about the query. <?xml version="1.0" encoding="utf-8"?> <service_request url=" <web_service name="execute_file" url_path="/execute_file" request_xslt_stylesheet="config/webservice/execute_file_request.xslt" response_xslt_stylesheet="config/webservice/execute_file_response.xslt" debug="1"/> <content> <soapenv:envelope xmlns:soapenv=" </soapenv:envelope> </content> </service_request> Example: service_request Note that the style sheet must stem from a <service_request> root: <xsl:template match="/service_request"> March 2015 JobScheduler Web Services page: 18
19 JobScheduler Web Services - Configuration of a Job Chain as an asynchronous Web Service <xsl:apply-templates select="content/soapenv:envelope/soapenv:body"/> <xsl:template match="soapenv:body"> <xsl:apply-templates select="*" mode="soapbody"/> The second template does not only select the expected executefile method, but all elements in the "soapbody" mode. On the one hand, this is done so that differing methods can be handled by a style sheet (and Web Service). In this case a new template with the "soapbody" mode would be written for each method. On the other hand, this allows valid SOAP requests which contain an unknown method to return a SOAP error. This topic will be covered in more detail later. In this example, a template is required for the <execute_file> elements. <xsl:template match="sos:executefile" mode="soapbody" priority="2"> <add_order job_chain="executable_files"> <xsl:attribute name="web_service"> <xsl:value-of select="/service_request/web_service/@name"/> </xsl:attribute> <params> <param name="command"> <xsl:attribute name="value"> <xsl:value-of select="sos:file"/> </xsl:attribute> </param> </params> </add_order> Example: Template for executefile The template generates an <add_order> command for the job chain executable files. Further, the web_service attribute containing the names of the Web Services being called (see Configuration) is added to the <add_order> command. <?xml version="1.0" encoding="utf-8"?> <add_order job_chain="executable_files" web_service="execute_file"> <params> <param name="command" value="ls"/> </params> </add_order> Example: Order: executable_files The transfer of the name of the Web Service to the order is a prerequisite for the JobScheduler later returning an asynchronous answer or making a redirection. The order parameters are set in <params>. The JobSchedulerManagedExecutableJob recognizes the command parameter which in turn contains the command to be executed (in this case "ls"). A further template is used for the treatment of errors. This template is used for all method calls which have not been matched to other templates. In the example used in this documentation this template would be used for all methods other than executefile. March 2015 JobScheduler Web Services page: 19
20 JobScheduler Web Services - Configuration of a Job Chain as an asynchronous Web Service <xsl:template match="*" mode="soapbody" priority="0.5"> <!-- Generate SOAP error message for the Web Service --> <service_response> <content> <soapenv:envelope> <soapenv:body> <soapenv:fault> <faultcode>soap-env:client</faultcode> <faultstring>unknown command: <xsl:value-of select="name(.)"/> </faultstring> </soapenv:fault> </soapenv:body> </soapenv:envelope> </content> </service_response> Example: treatment of errors This template generates the JobScheduler <service_response> command. This command then returns the content of the <content> element as an (asynchronous) response and thereby generates a SOAP error message for all unknown method calls. 9.2 The Style Sheet "response_xslt_stylesheet" After the JobScheduler has taken on an order, it either returns an answer containing the <OK> element as well as other information about the new order or, in the event of an error, the <ERROR> element. <?xml version="1.0" encoding="iso "?> <spooler> <answer time=" :19:46.342"> <ok> <order order="3823" id="3823" state="0" initial_state="0" job_chain="executable_files" job="scheduler_managed_executable_file" priority="0" created=" :19:46.342" web_service="execute_file"> <log level="debug9"/> </order> </ok> </answer> </spooler> Example: The JobScheduler Response The response from the JobScheduler is transformed using the response_xslt_stylesheet and synchronously sent back to the client. This requires that a <service_response> command is generated for the JobScheduler: <xsl:template match="/spooler/answer"> <service_response> <content> <soapenv:envelope> <soapenv:body> <xsl:apply-templates select="error ok"/> </soapenv:body> </soapenv:envelope> </content> </service_response> Example: template: spooler/answer a response such as the ID given to the new order can then be synchronously returned to the client, should the order be accepted: <xsl:template match="ok[order]" priority="2"> <sos:orderid><xsl:value-of select="order/@order"/></sos:orderid> March 2015 JobScheduler Web Services page: 20
21 JobScheduler Web Services - Configuration of a Job Chain as an asynchronous Web Service Other (synchronous) responses are also possible - for example, a Boolean value indicating the success of a command. 9.3 The Style Sheet "forward_xslt_stylesheet" After an order has been completed by the JobScheduler, a result can be delivered to the Web Service or to another address asynchronously. This involves a further XSLT transformation of either an <order> or a <task> element, depending on whether or not an add_order or a start_job command has executed by the Web Service. Information about an order and the order parameters are contained in the <order> element. The std_out_output parameter containing the STDOUT output from a command is generated by the "JobSchedulerManagedExecutableJob" job after an order has been executed. This output is then transformed using the style sheet before being forwarded as a SOAP response. <xsl:template match="order"> <service_request url=" <content> <soapenv:envelope> <soapenv:body> <xsl:apply-templates select="payload/params/param[@name='std_out_output']"/> </soapenv:body> </soapenv:envelope> </content> </service_request> Example: Template:order It is necessary that a <service_request> element is generated here as well. To do this a url parameter needs to be created for the return address, as it is necessary to establish a new connection for the asynchronous reply. In this example, the URL is hard coded in the style sheet. Note that hard coded URLs only make sense when it is planned that responses are always to be returned to this one address. In practice, it is more usual that the response address is contained in the query from the Web Service client. In this case, the request_xslt_stylesheet must write the return address in an order parameter, which can then be reread by forward_xslt_stylesheet. The template then selects the parameter named "std_out_output" and writes the content in a new element in the response: <xsl:template match="param[@name='std_out_output']"> <sos:stdout> <xsl:value-of select="@value"/> </sos:stdout> Example: Template get Stdout In this way the standard output (stdout) can be forwarded to the application receiving the Web Service responses. Note that it is important that the application which processes such output correctly interprets the new lines in the < sos:stdout> element as genuine new lines. March 2015 JobScheduler Web Services page: 21
22 JobScheduler Web Services - Configuration of a Job Chain as an asynchronous Web Service <?xml version="1.0"?> <soapenv:envelope xmlns:soapenv=" <soapenv:body> <sos:stdout xmlns:sos=" config jobs lib logs mail web </sos:stdout> </soapenv:body> </soapenv:envelope> Example: JavaScript : HelloWorld March 2015 JobScheduler Web Services page: 22
23 JobScheduler Web Services - Configuration of a synchronous Web Service 10 Configuration of a synchronous Web Service Before the JobScheduler can use the job described in the following chapter for a Web Service, it is necessary to configure a job chain in the live folder. The job chain for the example in the next chapter is configured as follows: <job_chain name="web_service_test"> <job_chain_node state="1" job="web_service_test_job" next_state="100" error_state="999" /> <job_chain_node state="100"/> <job_chain_node state="999"/> </job_chain> Example: job chain: web_service_test Although job chains usually consist of a number of jobs, the example chain has only the one web_service_test_job job. This job is configured as follows in the live folder: <job name = "web_service_test_job" order = "yes"> <script language = "java" java_class = "sos.scheduler.service.webservicetestjob"/> </job> Example: Job: web_service_test_job In order that this job chain can be used as a synchronous Web Service, a Web Service definition needs to be created in the <web_services> element (this element is described in "Configuration of Asynchronous Web Services"): <web_service name="test" job_chain="web_service_test" url_path="/test"/> Example: JavaScript : HelloWorld Note that the JobScheduler must be restarted after the scheduler.xml file has been changed. March 2015 JobScheduler Web Services page: 23
24 JobScheduler Web Services - The Creation of Jobs for Synchronous Web Services 11 The Creation of Jobs for Synchronous Web Services This chapter shows how a job which can read a Web Service request and return a synchronous response could be implemented. The function of this job is the interpretation of possible protocols such as SOAP. The job receives the request content in either binary or string form. Note that in order to keep this example simple, XML will not be interpreted here, as this would make the code longer and more complicated. The use of the DOM is also not covered by this documentation. Therefore the following job only logs the request content and returns a string containing the task ID. package sos.scheduler.service; import sos.spooler.job_impl; import sos.spooler.order; import sos.spooler.web_service_operation; import sos.spooler.web_service_request; import sos.spooler.web_service_response; public class WebServiceTestJob extends Job_impl { public boolean spooler_process() throws Exception { Order order = spooler_task.order(); Web_service_operation operation; try { operation = order.web_service_operation(); } catch (Exception e){ spooler_log.info("there is no Web Service operation attached to this order"); return true; } // read request Web_service_request request = operation.request(); spooler_log.info("content of Web Service Request:\n"+request.string_content()); // send reply Web_service_response response = operation.response(); } } response.set_string_content("task ID: "+spooler_task.id()); response.send(); return true; Example: Implementation: WebServiceTestJob.java The web_service_operation() call is placed in a try-catch block at the start of the job. This is necessary as it is possible that the job has to process an order which was created by the JobScheduler but had not been processed before the Scheduler shut down. In this case the JobScheduler would load the order from its database although the HTTP connection to the client no longer existed. Further, the Web_service_operation object would no longer exist. The job should catch this error and decide how to handle the order. The request content is read out of the Web_service_request object and written in the log. The answer is added to the Web_service_response object and synchronously sent back to the client using send(). In practice the Web_service_request would be read by one job and the Web_service_response set by another. It would be possible to create a job chain in which the first job reads the Web_service_request object and evaluate and write request parameters into the order payload. Subsequent jobs would then process the order payload and only the last job would write in the Web_service_response object and call the send() method. The example job described above is also available for download in the JobScheduler distribution samples package in versions for JavaScript and Perl. These versions can be found under the following names: web_service_test_job.js web_service_test_job.pl March 2015 JobScheduler Web Services page: 24
25 JobScheduler Web Services - The Creation of Jobs for Synchronous Web Services In addition to the creation of a job, the example configurations included in the samples package create job chains and Web Services. March 2015 JobScheduler Web Services page: 25
26 JobScheduler Web Services - The execute_file_request.xslt Style Sheet Appendix A: The execute_file_request.xslt Style Sheet <?xml version="1.0" encoding="iso "?> <xsl:stylesheet xmlns:xsl=" xmlns:soapenv=" xmlns:sos=" exclude-result-prefixes="soapenv sos" version="1.0"> <xsl:output method="xml" indent="yes"/> <xsl:template match="/service_request"> <xsl:apply-templates select="content/soapenv:envelope/soapenv:body"/> <xsl:template match="soapenv:body"> <xsl:apply-templates select="*" mode="soapbody"/> <xsl:template match="*" mode="soapbody" priority="0.5"> <!-- Generate SOAP Error Message for the Webservice --> <service_response> <content> <soapenv:envelope> <soapenv:body> <soapenv:fault> <faultcode>soap-env:client</faultcode> <faultstring>unknown command: <xsl:value-of select="name(.)"/> </faultstring> </soapenv:fault> </soapenv:body> </soapenv:envelope> </content> </service_response> <xsl:template match="sos:executefile" mode="soapbody" priority="2"> <add_order job_chain="executable_files"> <xsl:attribute name="web_service"> <xsl:value-of select="/service_request/web_service/@name"/> </xsl:attribute> <params> <param name="command"> <xsl:attribute name="value"> <xsl:value-of select="sos:file"/> </xsl:attribute> </param> </params> </add_order> </xsl:stylesheet> Example: execute_file_request.xslt March 2015 JobScheduler Web Services page: 26
27 JobScheduler Web Services - execute_file_response.xslt Appendix B: execute_file_response.xslt <?xml version="1.0" encoding="iso "?> <xsl:stylesheet xmlns:xsl=" xmlns:soapenv=" xmlns:sos=" exclude-result-prefixes="soapenv sos" version="1.0"> <xsl:output method="xml" indent="yes"/> <xsl:template match="/spooler/answer"> <service_response> <content> <soapenv:envelope> <soapenv:body> <xsl:apply-templates select="error ok"/> </soapenv:body> </soapenv:envelope> </content> </service_response> <xsl:template match="error"> <soapenv:fault> <faultcode>soap-env:client</faultcode> <faultstring><xsl:value-of select="@text"/></faultstring> </soapenv:fault> <xsl:template match="ok[order]" priority="2"> <sos:orderid><xsl:value-of select="order/@order"/></sos:orderid> </xsl:stylesheet> Example: execute_file_response.xslt March 2015 JobScheduler Web Services page: 27
28 JobScheduler Web Services - execute_file_forward.xslt Appendix C: execute_file_forward.xslt <?xml version="1.0" encoding="iso "?> <xsl:stylesheet xmlns:xsl=" xmlns:soapenv=" xmlns:sos=" exclude-result-prefixes="soapenv sos" version="1.0"> <xsl:output method="xml" indent="yes"/> <xsl:template match="order"> <service_request url=" <content> <soapenv:envelope> <soapenv:body> <xsl:apply-templates select="payload/params/param[@name='std_out_output']"/> </soapenv:body> </soapenv:envelope> </content> </service_request> <xsl:template match="param[@name='std_out_output']"> <sos:stdout> <xsl:value-of select="@value"/> </sos:stdout> </xsl:stylesheet> Example: execute_file_forward.xslt March 2015 JobScheduler Web Services page: 28
29 JobScheduler Web Services - Index Index W Web Service, Asynchronous 6 March 2015 JobScheduler Web Services page: 29
JobScheduler Events Definition and Processing
JobScheduler - Job Execution and Scheduling System JobScheduler Events Definition and Processing Reference March 2015 March 2015 JobScheduler Events page: 1 JobScheduler Events - Contact Information Contact
JobScheduler Installation by Copying
JobScheduler - Job Execution and Scheduling System JobScheduler Installation by Copying Deployment of multiple JobSchedulers on distributed servers by copying a template JobScheduler March 2015 March 2015
JobScheduler Security
JobScheduler - Job Execution and Scheduling System JobScheduler Security March 2015 March 2015 JobScheduler Security page: 1 JobScheduler Security - Contact Information Contact Information Software- und
CrontabFile Converter
JobScheduler - Job Execution and Scheduling System CrontabFile Converter Users Manual July 2014 July 2014 CrontabFile Converter page: 1 CrontabFile Converter - Contact Information Contact Information Software-
JobScheduler and Script Languages
JobScheduler - Job Execution and Scheduling System JobScheduler and Script Languages scripting with the package javax.script March 2015 March 2015 JobScheduler and Script Languages page: 1 JobScheduler
JobScheduler - Quickstart
JobScheduler - Job Execution and Scheduling System JobScheduler - Quickstart An Introduction to Job Scheduling March 2015 March 2015 JobScheduler - Quickstart page: 1 JobScheduler - Quickstart - Contact
MySQL Job Scheduling
JobScheduler - Job Execution and Scheduling System MySQL Job Scheduling MySQL automation March 2015 March 2015 MySQL Job Scheduling page: 1 MySQL Job Scheduling - Contact Information Contact Information
How To Use The Jobscheduler On A Linux Box 2.5.2.2 (Jid) On A Pcode (Jio) Or Macbook 2.2 On A Microsoft Powerbook 2 (For A Freebie
JobScheduler - Job Execution and Scheduling System JobScheduler Information Dashboard Work Plan and History March 2015 March 2015 JobScheduler page: 1 JobScheduler - Contact Information Contact Information
JOB SCHEDULER. Managed Jobs. Technical Documentation March 2009. Job Automation
Job Automation Managed Jobs JOB SCHEDULER Technical Documentation March 2009 Software- und Organisations-Service GmbH Giesebrechtstr. 15 10629 Berlin Germany Telephone +49 30 86 47 90-0 Telefax +49 30
Product Training Services. Training Options and Procedures for JobScheduler and YADE
Product Services Product Services Options and Procedures for JobScheduler and YADE 2 Contents Product Services JobScheduler Levels Level: JobScheduler Operations Level: JobScheduler Installation Level:
SendMIME Pro Installation & Users Guide
www.sendmime.com SendMIME Pro Installation & Users Guide Copyright 2002 SendMIME Software, All Rights Reserved. 6 Greer Street, Stittsville, Ontario Canada K2S 1H8 Phone: 613-831-4023 System Requirements
PHP Integration Kit. Version 2.5.1. User Guide
PHP Integration Kit Version 2.5.1 User Guide 2012 Ping Identity Corporation. All rights reserved. PingFederate PHP Integration Kit User Guide Version 2.5.1 December, 2012 Ping Identity Corporation 1001
Novell Identity Manager
AUTHORIZED DOCUMENTATION Manual Task Service Driver Implementation Guide Novell Identity Manager 4.0.1 April 15, 2011 www.novell.com Legal Notices Novell, Inc. makes no representations or warranties with
Architecture and Mode of Operation
Open Source Scheduler Architecture and Mode of Operation http://jobscheduler.sourceforge.net Contents Components Platforms & Databases Architecture Configuration Deployment Distributed Processing Security
JobScheduler Events Definition and Processing
JobScheduler - Job Execution and Scheduling System JobScheduler Events Definition and Processing Referenz März 2015 März 2015 JobScheduler Events Seite: 1 Impressum Impressum Software- und Organisations-Service
UFTP AUTHENTICATION SERVICE
UFTP Authentication Service UFTP AUTHENTICATION SERVICE UNICORE Team Document Version: 1.1.0 Component Version: 1.1.1 Date: 17 11 2014 UFTP Authentication Service Contents 1 Installation 1 1.1 Prerequisites....................................
JobScheduler - Amazon AMI Installation
JobScheduler - Job Execution and Scheduling System JobScheduler - Amazon AMI Installation March 2015 March 2015 JobScheduler - Amazon AMI Installation page: 1 JobScheduler - Amazon AMI Installation - Contact
Dove User Guide Copyright 2010-2011 Virgil Trasca
Dove User Guide Dove User Guide Copyright 2010-2011 Virgil Trasca Table of Contents 1. Introduction... 1 2. Distribute reports and documents... 3 Email... 3 Messages and templates... 3 Which message is
JobScheduler - Installation Guide
JobScheduler - Job Execution and Scheduling System JobScheduler - Installation Guide Installation and Configuration March 2015 March 2015 JobScheduler - Installation Guide page: 1 JobScheduler - Installation
IBM Campaign Version-independent Integration with IBM Engage Version 1 Release 3 April 8, 2016. Integration Guide IBM
IBM Campaign Version-independent Integration with IBM Engage Version 1 Release 3 April 8, 2016 Integration Guide IBM Note Before using this information and the product it supports, read the information
Magento Search Extension TECHNICAL DOCUMENTATION
CHAPTER 1... 3 1. INSTALLING PREREQUISITES AND THE MODULE (APACHE SOLR)... 3 1.1 Installation of the search server... 3 1.2 Configure the search server for usage with the search module... 7 Deploy the
JobScheduler. Architecture and Mode of Operation. Software for Open Source
JobScheduler Architecture and Mode of Operation JobScheduler worldwide Software- und Organisations-Service GmbH www.sos-berlin.com Contents Components Supported Platforms & Databases Architecture Job Configuration
Cleo Communications. CUEScript Training
Cleo Communications CUEScript Training Introduction RMCS Architecture Why CUEScript, What is it? How and Where Scripts in RMCS XML Primer XPath Pi Primer Introduction (cont.) Getting Started Scripting
Glyma Deployment Instructions
Glyma Deployment Instructions Version 0.8 Copyright 2015 Christopher Tomich and Paul Culmsee and Peter Chow Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
Healthstone Monitoring System
Healthstone Monitoring System Patrick Lambert v1.1.0 Healthstone Monitoring System 1 Contents 1 Introduction 2 2 Windows client 2 2.1 Installation.............................................. 2 2.2 Troubleshooting...........................................
Migration from Control-M to JobScheduler in a TWS Landscape. SOS Software GmbH Berlin, Germany
Migration from Control-M to JobScheduler in a TWS Landscape SOS Software GmbH Berlin, Germany Content basic conditions I & II previous landscape (Control-M) current landscape (JobScheduler) basic data
Usage Tracking for IBM InfoSphere Business Glossary
Usage Tracking for IBM InfoSphere Business Glossary InfoSphere Business Glossary Version 8.7 and later includes a feature that allows you to track usage of InfoSphere Business Glossary through web analytics
Copyright 2014 Jaspersoft Corporation. All rights reserved. Printed in the U.S.A. Jaspersoft, the Jaspersoft
5.6 Copyright 2014 Jaspersoft Corporation. All rights reserved. Printed in the U.S.A. Jaspersoft, the Jaspersoft logo, Jaspersoft ireport Designer, JasperReports Library, JasperReports Server, Jaspersoft
Enhanced Connector Applications SupportPac VP01 for IBM WebSphere Business Events 3.0.0
Enhanced Connector Applications SupportPac VP01 for IBM WebSphere Business Events 3.0.0 Third edition (May 2012). Copyright International Business Machines Corporation 2012. US Government Users Restricted
Spectrum Technology Platform
Spectrum Technology Platform Version 8.0.0 SP2 RIA Getting Started Guide Information in this document is subject to change without notice and does not represent a commitment on the part of the vendor or
Sage HRMS 2014 Sage Employee Self Service Tech Installation Guide for Windows 2003, 2008, and 2012. October 2013
Sage HRMS 2014 Sage Employee Self Service Tech Installation Guide for Windows 2003, 2008, and 2012 October 2013 This is a publication of Sage Software, Inc. Document version: October 17, 2013 Copyright
OpenLDAP Oracle Enterprise Gateway Integration Guide
An Oracle White Paper June 2011 OpenLDAP Oracle Enterprise Gateway Integration Guide 1 / 29 Disclaimer The following is intended to outline our general product direction. It is intended for information
CYAN SECURE WEB APPLIANCE. User interface manual
CYAN SECURE WEB APPLIANCE User interface manual Jun. 13, 2008 Applies to: CYAN Secure Web 1.4 and above Contents 1 Log in...3 2 Status...3 2.1 Status / System...3 2.2 Status / Network...4 Status / Network
Process Integrator Deployment on IBM Webspher Application Server Cluster
White Paper Process Integrator Deployment on IBM Webspher Application Server Cluster A user guide for deploying Process integrator on websphere application server 7.0.0.9 cluster Abstract This paper describes
IBM SPSS Collaboration and Deployment Services Version 6 Release 0. Single Sign-On Services Developer's Guide
IBM SPSS Collaboration and Deployment Services Version 6 Release 0 Single Sign-On Services Developer's Guide Note Before using this information and the product it supports, read the information in Notices
IBM Campaign and IBM Silverpop Engage Version 1 Release 2 August 31, 2015. Integration Guide IBM
IBM Campaign and IBM Silverpop Engage Version 1 Release 2 August 31, 2015 Integration Guide IBM Note Before using this information and the product it supports, read the information in Notices on page 93.
White Paper. Fabasoft Folio Thin Client Support. Fabasoft Folio 2015 Update Rollup 2
White Paper Fabasoft Folio Thin Client Support Fabasoft Folio 2015 Update Rollup 2 Copyright Fabasoft R&D GmbH, Linz, Austria, 2015. All rights reserved. All hardware and software names used are registered
EMC Clinical Archiving
EMC Clinical Archiving Version 1.7 Installation Guide EMC Corporation Corporate Headquarters Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Legal Notice Copyright 2014-2015 EMC Corporation. All Rights
Portals and Hosted Files
12 Portals and Hosted Files This chapter introduces Progress Rollbase Portals, portal pages, portal visitors setup and management, portal access control and login/authentication and recommended guidelines
MS Enterprise Library 5.0 (Logging Application Block)
International Journal of Scientific and Research Publications, Volume 4, Issue 8, August 2014 1 MS Enterprise Library 5.0 (Logging Application Block) Anubhav Tiwari * R&D Dept., Syscom Corporation Ltd.
Integrating with BarTender Integration Builder
Integrating with BarTender Integration Builder WHITE PAPER Contents Overview 3 Understanding BarTender's Native Integration Platform 4 Integration Builder 4 Administration Console 5 BarTender Integration
9236245 Issue 2EN. Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation
9236245 Issue 2EN Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation Nokia 9300 Configuring connection settings Legal Notice Copyright Nokia 2005. All rights reserved. Reproduction,
Web Services for Management Perl Library VMware ESX Server 3.5, VMware ESX Server 3i version 3.5, and VMware VirtualCenter 2.5
Technical Note Web Services for Management Perl Library VMware ESX Server 3.5, VMware ESX Server 3i version 3.5, and VMware VirtualCenter 2.5 In the VMware Infrastructure (VI) Perl Toolkit 1.5, VMware
Use Enterprise SSO as the Credential Server for Protected Sites
Webthority HOW TO Use Enterprise SSO as the Credential Server for Protected Sites This document describes how to integrate Webthority with Enterprise SSO version 8.0.2 or 8.0.3. Webthority can be configured
WORKING WITH LOAD BALANCING AND QUEUEING FOR ADOBE INDESIGN CS5 SERVER
WORKING WITH LOAD BALANCING AND QUEUEING FOR ADOBE INDESIGN CS5 SERVER 2010 Adobe Systems Incorporated. All rights reserved. Working With Load Balancing and Queueing for Adobe InDesign CS5 Server Adobe,
PEtALS Quick Start. PEtALS Team Roland NAUDIN <[email protected]> - February 2008 -
PEtALS Quick Start This document presents the Quick Start release of PEtALS. This release targets PEtALS beginners to ease their first step with PEtALS. PEtALS Team Roland NAUDIN
HP Business Service Management
HP Business Service Management Software Version: 9.25 BPM Monitoring Solutions - Best Practices Document Release Date: January 2015 Software Release Date: January 2015 Legal Notices Warranty The only warranties
Sentinel EMS v7.1 Web Services Guide
Sentinel EMS v7.1 Web Services Guide ii Sentinel EMS Web Services Guide Document Revision History Part Number 007-011157-001, Revision E. Software versions 7.1 and later. Revision Action/Change Date A
Cisco TelePresence VCR MSE 8220
Cisco TelePresence VCR MSE 8220 Getting started 61-0008-05 Contents General information... 3 About the Cisco TelePresence VCR MSE 8220... 3 Port and LED location... 3 LED behavior... 4 Installing the VCR
Architecture and Mode of Operation
Software- und Organisations-Service Open Source Scheduler Architecture and Mode of Operation Software- und Organisations-Service GmbH www.sos-berlin.com Scheduler worldwide Open Source Users and Commercial
XMLVend Protocol Message Validation Suite
XMLVend Protocol Message Validation Suite 25-01-2012 Table of Contents 1. Overview 2 2. Installation and Operational Requirements 2 3. Preparing the system 3 4. Intercepting Messages 4 5. Generating Reports
Event Manager. LANDesk Service Desk
Event Manager LANDesk Service Desk LANDESK SERVICE DESK EVENT MANAGER GUIDE This document contains information that is the proprietary and confidential property of LANDesk Software, Inc. and/or its affiliated
Oracle Enterprise Manager
Oracle Enterprise Manager Connectors Integration Guide Release 12.1.0.4 E25163-05 February 2015 Oracle Enterprise Manager Connectors Integration Guide, Release 12.1.0.4 E25163-05 Copyright 2015, Oracle
Open Source Job Scheduler
Planning and scheduling jobs can mean a lot of work, especially if they are spread across multiple machines. Here s a tool to make that task a lot easier. BY JAMES MOHR he ability to perform a certain
Managing XML Documents Versions and Upgrades with XSLT
Managing XML Documents Versions and Upgrades with XSLT Vadim Zaliva, [email protected] 2001 Abstract This paper describes mechanism for versioning and upgrding XML configuration files used in FWBuilder
EPiServer Operator's Guide
EPiServer Operator's Guide Abstract This document is mainly intended for administrators and developers that operate EPiServer or want to learn more about EPiServer's operating environment. The document
Tableau Server Trusted Authentication
Tableau Server Trusted Authentication When you embed Tableau Server views into webpages, everyone who visits the page must be a licensed user on Tableau Server. When users visit the page they will be prompted
E-mail Listeners. E-mail Formats. Free Form. Formatted
E-mail Listeners 6 E-mail Formats You use the E-mail Listeners application to receive and process Service Requests and other types of tickets through e-mail in the form of e-mail messages. Using E- mail
HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Collaboration Guide
HP Service Manager Software Version: 9.40 For the supported Windows and Linux operating systems Collaboration Guide Document Release Date: December 2014 Software Release Date: December 2014 Legal Notices
Monitoring Oracle Enterprise Performance Management System Release 11.1.2.3 Deployments from Oracle Enterprise Manager 12c
Monitoring Oracle Enterprise Performance Management System Release 11.1.2.3 Deployments from Oracle Enterprise Manager 12c This document describes how to set up Oracle Enterprise Manager 12c to monitor
An Oracle White Paper May 2013. Creating Custom PDF Reports with Oracle Application Express and the APEX Listener
An Oracle White Paper May 2013 Creating Custom PDF Reports with Oracle Application Express and the APEX Listener Disclaimer The following is intended to outline our general product direction. It is intended
versasrs HelpDesk quality of service
versacat v2.1.0 Date: 24 June 2010 Copyright 2002-2010 VersaDev Pty. Ltd. All Rights Reserved. *************************************************************** Contents ***************************************************************
IIS SECURE ACCESS FILTER 1.3
OTP SERVER INTEGRATION MODULE IIS SECURE ACCESS FILTER 1.3 Copyright, NordicEdge, 2006 www.nordicedge.se Copyright, 2006, Nordic Edge AB Page 1 of 14 1 Introduction 1.1 Overview Nordic Edge One Time Password
Secure Friendly Net Detection Server. July 2006
Secure FND Server Secure Friendly Net Detection Server July 2006 Disclaimer Considerable care has been taken in the preparation and publication of this manual, errors in content, typographical or otherwise
Configuring Apache HTTP Server as a Reverse Proxy Server for SAS 9.2 Web Applications Deployed on BEA WebLogic Server 9.2
Configuration Guide Configuring Apache HTTP Server as a Reverse Proxy Server for SAS 9.2 Web Applications Deployed on BEA WebLogic Server 9.2 This document describes how to configure Apache HTTP Server
Siebel Application Deployment Manager Guide. Siebel Innovation Pack 2013 Version 8.1/8.2 September 2013
Siebel Application Deployment Manager Guide Siebel Innovation Pack 2013 Version 8.1/8.2 September 2013 Copyright 2005, 2013 Oracle and/or its affiliates. All rights reserved. This software and related
Pay with Amazon Integration Guide
2 2 Contents... 4 Introduction to Pay with Amazon... 5 Before you start - Important Information... 5 Important Advanced Payment APIs prerequisites... 5 How does Pay with Amazon work?...6 Key concepts in
Cybozu Garoon 3 Server Distributed System Installation Guide Edition 3.1 Cybozu, Inc.
Cybozu Garoon 3 Server Distributed System Installation Guide Edition 3.1 Cybozu, Inc. Preface Preface This guide describes the features and operations of Cybozu Garoon Version 3.1.0. Who Should Use This
Advanced Service Design
vcloud Automation Center 6.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions
MIGS Payment Client Installation Guide. EGate User Manual
MIGS Payment Client Installation Guide EGate User Manual April 2004 Copyright The information contained in this manual is proprietary and confidential to MasterCard International Incorporated (MasterCard)
OpenScape Voice V8 Application Developers Manual. Programming Guide A31003-H8080-R100-2-7620
OpenScape Voice V8 Application Developers Manual Programming Guide A31003-H8080-R100-2-7620 Our Quality and Environmental Management Systems are implemented according to the requirements of the ISO9001
Address Phone & Fax Internet
Smilehouse Workspace 1.13 Payment Gateway API Document Info Document type: Technical document Creator: Smilehouse Workspace Development Team Date approved: 31.05.2010 Page 2/34 Table of Content 1. Introduction...
Cisco TelePresence Authenticating Cisco VCS Accounts Using LDAP
Cisco TelePresence Authenticating Cisco VCS Accounts Using LDAP Deployment Guide Cisco VCS X8.1 D14465.06 December 2013 Contents Introduction 3 Process summary 3 LDAP accessible authentication server configuration
Developing Web Views for VMware vcenter Orchestrator
Developing Web Views for VMware vcenter Orchestrator vcenter Orchestrator 5.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced
www.novell.com/documentation Jobs Guide Identity Manager 4.0.1 February 10, 2012
www.novell.com/documentation Jobs Guide Identity Manager 4.0.1 February 10, 2012 Legal Notices Novell, Inc. makes no representations or warranties with respect to the contents or use of this documentation,
FirstClass Synchronization Services 12 Release Notes Windows Version 12.035
FirstClass Synchronization Services 12 Release Notes Windows Version 12.035 Copyright 2014 Open Text Corporation What you will find in this document: A. Contact Information B. Requirements C. Installation
EMC Documentum Connector for Microsoft SharePoint
EMC Documentum Connector for Microsoft SharePoint Version 7.1 Installation Guide EMC Corporation Corporate Headquarters Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Legal Notice Copyright 2013-2014
LICENSE4J AUTO LICENSE GENERATION AND ACTIVATION SERVER USER GUIDE
LICENSE4J AUTO LICENSE GENERATION AND ACTIVATION SERVER USER GUIDE VERSION 1.6.0 LICENSE4J www.license4j.com Table of Contents Getting Started... 2 Server Roles... 4 Installation... 9 Server WAR Deployment...
Oracle Forms Services Secure Web.Show_Document() calls to Oracle Reports Server 6i
Oracle Forms Services Secure Web.Show_Document() calls to Oracle Reports Server 6i $Q2UDFOH7HFKQLFDO:KLWHSDSHU 0DUFK Secure Web.Show_Document() calls to Oracle Reports Server 6i Introduction...3 solution
FTP Peach Pit Data Sheet
FTP Peach Pit Data Sheet Peach Fuzzer, LLC v3.6.94 Copyright 2015 Peach Fuzzer, LLC. All rights reserved. This document may not be distributed or used for commercial purposes without the explicit consent
Installation Guide Supplement
Installation Guide Supplement for use with Microsoft ISA Server and Forefront TMG Websense Web Security Websense Web Filter v7.5 1996 2010, Websense Inc. All rights reserved. 10240 Sorrento Valley Rd.,
CA Spectrum and CA Service Desk
CA Spectrum and CA Service Desk Integration Guide CA Spectrum 9.4 / CA Service Desk r12 and later This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter
IBM WebSphere Message Broker - Integrating Tivoli Federated Identity Manager
IBM WebSphere Message Broker - Integrating Tivoli Federated Identity Manager Version 1.1 Property of IBM Page 1 of 18 Version 1.1, March 2008 This version applies to Version 6.0.0.3 of IBM WebSphere Message
BlackBerry Enterprise Service 10. Secure Work Space for ios and Android Version: 10.1.1. Security Note
BlackBerry Enterprise Service 10 Secure Work Space for ios and Android Version: 10.1.1 Security Note Published: 2013-06-21 SWD-20130621110651069 Contents 1 About this guide...4 2 What is BlackBerry Enterprise
Novell Identity Manager
Password Management Guide AUTHORIZED DOCUMENTATION Novell Identity Manager 3.6.1 June 05, 2009 www.novell.com Identity Manager 3.6.1 Password Management Guide Legal Notices Novell, Inc. makes no representations
BusinessObjects Enterprise XI Release 2
BusinessObjects Enterprise XI Release 2 How to configure an Internet Information Services server as a front end to a WebLogic application server Overview Contents This document describes the process of
Installation, Configuration, and Usage
Installation, Configuration, and Usage Copyright Free Lunch Labs www.freelunchlabs.com Installation BEFORE INSTALLING THIS EXTENSION CREATE OF BACKUP OF YOUR MAGENTO INSTALLATION AND ALL ASSOCISTED FILES
Using the vcenter Orchestrator Plug-In for vsphere Auto Deploy 1.0
Using the vcenter Orchestrator Plug-In for vsphere Auto Deploy 1.0 vcenter Orchestrator 4.2 This document supports the version of each product listed and supports all subsequent versions until the document
WebSphere Commerce V7 Feature Pack 5
WebSphere Commerce V7 Feature Pack 5 Bazaarvoice ratings and reviews integration 2012 IBM Corporation Feature Pack 5 includes the Integration of Bazaarvoice Ratings and Reviews widgets into the Aurora
There are numerous ways to access monitors:
Remote Monitors REMOTE MONITORS... 1 Overview... 1 Accessing Monitors... 1 Creating Monitors... 2 Monitor Wizard Options... 11 Editing the Monitor Configuration... 14 Status... 15 Location... 17 Alerting...
Basic Exchange Setup Guide
Basic Exchange Setup Guide The following document and screenshots are provided for a single Microsoft Exchange Small Business Server 2003 or Exchange Server 2007 setup. These instructions are not provided
10CS73:Web Programming
10CS73:Web Programming Question Bank Fundamentals of Web: 1.What is WWW? 2. What are domain names? Explain domain name conversion with diagram 3.What are the difference between web browser and web server
Setting Up SSL on IIS6 for MEGA Advisor
Setting Up SSL on IIS6 for MEGA Advisor Revised: July 5, 2012 Created: February 1, 2008 Author: Melinda BODROGI CONTENTS Contents... 2 Principle... 3 Requirements... 4 Install the certification authority
FioranoMQ 9. High Availability Guide
FioranoMQ 9 High Availability Guide Copyright (c) 1999-2008, Fiorano Software Technologies Pvt. Ltd., Copyright (c) 2008-2009, Fiorano Software Pty. Ltd. All rights reserved. This software is the confidential
Grid Computing in SAS 9.4 Third Edition
Grid Computing in SAS 9.4 Third Edition SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2014. Grid Computing in SAS 9.4, Third Edition. Cary, NC:
SOA Software API Gateway Appliance 7.1.x Administration Guide
SOA Software API Gateway Appliance 7.1.x Administration Guide Trademarks SOA Software and the SOA Software logo are either trademarks or registered trademarks of SOA Software, Inc. Other product names,
Ellucian Recruiter Installation and Integration. Release 4.1 December 2015
Ellucian Recruiter Installation and Integration Release 4.1 December 2015 Notices Notices Without limitation: Ellucian, Banner, Colleague, and Luminis are trademarks of the Ellucian group of companies
Getting Started with RES Automation Manager Agent for Linux
Getting Started with RES Automation Manager Agent for Linux Contents Chapter 1: Introduction 1 Chapter 2: Prerequisites and General Guidelines 2 Chapter 3: Installation 3 3.1 Manual Installation... 3 3.2
