QRM Quick Start Guide

Size: px
Start display at page:

Download "QRM Quick Start Guide"

Transcription

1 1 QRM Quick Start Guide The Compatible with LabVIEW logo is a trademark of National Instruments Corporation and is used under a license from National Instruments Corporation. 1

2 2 Contents 1 Document Change History Documents and Abbreviations Reference Documents Abbreviations Readers Guide Overview QRM Web Service - Test Data Storage System QRM Web Application - Test Data Presentation and Analysis Firewalls Distribution Setups Security License Evaluation License QRM Result Hierarchy Setting up a Station Manual Setup of Station Database Database Installation QRM Web Service Installation Web Service Configuration File Windows 7/8/Windows 2008 Server Windows XP Configuration Settings Database Connections Database Insert XML Storage Forwarding Synchronization Mail Proxy VPN Monitor Security and Permissions QRM Web Service Web Monitor Web Service Store Process State Logging Manual Upload of ATML Files QRM Web Server Web Support API NI Application Web Server (optional) NI Application Web Server Configuration Advanced Configuration Setting up the Service (optional) QRM Web Application Installation Using QRM Web Application QRM Web Service SOAP QRM Clients TestStand QRM Result Processor Plugin LabVIEW QRMClient Support Troubleshooting

3 3 1 Document Change History Version Comment Author 1.0 First version. Mattias Ericsson 1.1 Updated after review. Added 4.6 license and 6 Mattias Ericsson Setting up a station. 2 Documents and Abbreviations 2.1 Reference Documents Ref Doc Nr Document Name Content [1] ATML specification [2] QRM Windows Installation Guide Guide [3] QRM Web Application Manual Manual [4] QRM Web Server SOAP API API [5] QRM TestStand Result Processor Documentation [6] QRM LabVIEW Client Documentation 2.2 Abbreviations ATML GUID IIS QRM SOAP TBD UTC UUT VPN Automated Test Markup Language XML Schema for test results defined in the ATML standard IEEE Std 1671 Globally Unique Identifier - A unique id that couldn t be duplicated. Internet Information Server. Microsoft web hosting server. Quality Result Management Simple Object Access Protocol To Be Defined Coordinated Universal Time Unit Under Test Virtual Private Network 3 Readers Guide This document provides an overview of how to setup, configure and use QRM. It is strongly recommended to first try to setup one single station with QRM Web service, QRM Web Application running on an IIS installation and a SQL Server Express installation with all needed databases as described in section 6. Sections 7, 8 and 9 are for more manual setup scenarios. 3

4 4 4 Overview The QRM result management system has been created in order to store and maintain test results. It is a Windows based (Windows 7/8/2008R2 Server/2012 Server) distributed system based on web services, databases and ATML XML data. QRM consists of two main parts: QRM Web Service This part is responsible for storing and synchronizing test data in the system. QRM Web Application Server This part are responsible for presenting and statistical analysis of test data through a web page based system. Test Station Server Client QRM Web Service QRM Web Service IIS Web Server Test Program QRM Database Laptop Figure 1. QRM overview. This is typical setup. A test program on a test station post ATML results to the QRM Web Service that forwards the ATML to another QRM Web Service that store into the QRM database. A client makes a request to the IIS web server to get the results. The only interaction between the two major parts is through the data storage, in all other senses they are totally separated. The QRM is a client-server based distributed system using web services. All communication between the web services and clients are using HTTP protocol, which means that it is very firewall friendly. All test data is sent as XML data, using the ATML standard with some QRM extensions. This is a standard developed especially for test results in automated systems. It is always the client who initiates the communication to the web service. Notice that the web service itself could act as a client. The database has been designed to meet all the data required by the ATML standard. 4

5 5 Example: The test program on a test station runs a test sequence, once the sequence is finished, all test data for one UUT is formatted to an ATML result set and the test program then acts like a HTTP client and post the ATML test data to the local web service. This is a very fast procedure and the test program could continue testing and there is no need to wait for the data to be stored in the database (which traditionally is a very time consuming operation). Then it is the web service responsibility to either store the incoming ATML test data to a database or to just forward the test data to another remote web service. The web service itself will then actually act as a client when posting the test data forward. The web service on the computer is always running. This means that as soon as a client posted some test data to the web service (e.g. the test program has posted its test results), it will try to process the test data even after the test program is finished. This makes the testing very efficient with a high through put in the testing; since the storing of test data is handle in the background by the web service. For view and statistical analysis of the test results, the web based part of QRM is used. The web system connects directly to the data storage containing the test data to be analyzed. To view the result, the user simply uses a standard web browser (e.g. Firefox or Internet Explorer) to view or analyze the test results. 4.1 QRM Web Service - Test Data Storage System The test data storage system consists of a web service application running on the National Instrument web server and a database and/or ATML files. It is implemented in LabVIEW with RESTful web service architecture. It listens to a HTTP (HTTPS) port to receive incoming requests. Default port is TCP port The web service is responsible for: Storing test data in a database and/or as ATML files Forwarding test data to another computer running the same web service. Reply to request of fetching test data. Synchronizing of test data. Monitor a specified folder for new ATML result files. Connecting, monitoring and reconnection VPN connections. It is a fault tolerant service and if it fails to store test data in a database or fails to forward the data, it will periodically retry. The web service on each computer can be configured to behave differently. This way the desired forwarding, storage and synchronization could be performed as required for different scenarios. The QRM Web Service executes as a 32-bit Windows service. Figure 2 shows what it looks like in Windows 7. The service is called: NI Application Web Server and the associated process is called: ApplicationWebService.exe *32 5

6 6 Figure 2. The QRM Web Service executes as a Windows service called NI Application Web Server. The process is called ApplicationWebServer.exe* QRM Web Application - Test Data Presentation and Analysis The test data presentation and analysis system is a complete web page based system. It is implemented as an ASP.NET application running on a Microsoft IIS server application and the web application is connected to a test result database. The web page has two parts: Presentation test data is filtered and presented as tables and graphs on the screen. Analysis test data is statistical analyzed (Six Sigma) and presented with calculated key values and graphs (e.g. histogram). The IIS server is always running on the computer making sure the web page is always available. Please see reference [3] of how to use the QRM Web Application. 6

7 7 Figure 3. The QRM Web Application showing a test report. 4.3 Firewalls It is important to successfully synchronize test data through multiple sites distributed between different firewalls. A typical scenario is shown in Figure 6 where there are factories located somewhere else in the world and the test data needs to be synchronized to the database at the headquarters. Assume there are firewalls at all site, not allowing any client to connect to the web service from outside the firewall. Usually there is no problem for a HTTP client to open the firewall from the inside requesting some data over the web, this is what is happening when you open a normal web browser surfing the web. This way, it is possible to place a routing server between the factories and the headquarters (as shown in Figure 1) that has been configure to act as a web server and open up the firewall for the web services. This server can be a cloud server if needed. The factories then writes the test result data to this routing server instead and the head quarter application then periodically requests any new test data from the routing server and thereby synchronize the test data between the sites. 4.4 Distribution Setups As described in the previous sections, there could be a variety of different setups of server, databases, forwarding and each web service could be configure to suite the 7

8 8 specific requirements needed depending on firewalls, server availability, database locations etc. The simplest possible system is shown in Figure 1. Test Station QRM Web Service IIS Web Server Test Program QRM Database Laptop Figure 4. The simplest possible setup of QRM. Everything installed on a single computer. Figure 2 shows a more advanced setup with two factories and one headquarter. Each factory has its own result database and web application installation. This way each factory can access its own results. Both factories forward the result data to the headquarters through a VPN connection. Note that it is the same QRM web services that are used everywhere, but it is configured differently on each computer. Head Quarters Factory 1 Server Test Station 1 NI NI VPN connection IIS NI Test Program Test Station 2 Data IIS Data NI Test Program Key Laptop VPN connection Laptop Factory 2 Server Test Station 1 HTTP Client Request NI NI NI NI Web Service Server (Store, Forward) IIS Test Program Test Station 2 IIS ASP.NET Web Server (Web Page) Laptop DB Server NI Test Program TestStand, LabVIEW Application Data Test Program Data Data Storage (Database or ATML files) Figure 5. A typical setup with a factory connected to the headquarters through a VPN tunnel. 8

9 9 If it is not possible to use a VPN connection, which is the easiest way to connect and headquarters will not allow any open ports in the incoming firewall, it is still possible to route QRM results through the use of a routing server that firewall settings can be controlled. The headquarter web service is then configured to periodically ask the routing server if there is any new ATML results and returns a list of the new results. Each of the new result is then requested from the routing server. This way the headquarter firewall is only opened from the inside, which usually is no problem. Head Quarters Factory 1 Server Test Station 1 NI NI NI Test Program IIS Test Station 2 Data IIS Data NI Test Program Laptop Laptop Factory 2 Server Test Station 1 NI NI Key IIS Test Program Test Station 2 NI IIS HTTP Client Request NI Web Service Server (Store, Forward) ASP.NET Web Server (Web Page) Routing Server NI Cloud Laptop DB Server Data NI Test Program Test Program Data TestStand, LabVIEW Application Data Storage (Database or ATML files) Data Figure 6. An advanced setup when no VPN access is available and firewalls block incoming communication. QRM data is routed through a routing server which firewalls can be configured. The head quarter QRM web service is setup for synchronization. 4.5 Security All web service communication is configurable to use SSL encryption (HTTPS) and is always using HTTP Digest authentication for user access. Realm is QRM. Typical, QRM is installed on an intranet corporate network and not accessible from the public internet. This usually makes it unnecessary to use SSL. 4.6 License Both the QRM Web Application and QRM Web Service require a license that must be activated by the AddQ activation server. This is performed once for each license and requires a public access to our activation server. No license activation is required for the QRM Clients (LabVIEW or TestStand). 9

10 10 By default, the QRM Web Application allows one activation per license and QRM Web Service allows ten activations per license. It is two different license keys. If the computer that needs to be activated is not connected to the public internet, manual activation and downloading of a license file can be performed by following the instructions on the screen if the automatically activation fails Evaluation License If no license is activated, no test results will be stored in database or forwarded. Only ATML XML storage is available. An evaluation license is time-limited without any other limitations. Please contact AddQ at sales@addq.se for an evaluation license and information of how to download the need software. 5 QRM Result Hierarchy One of the most important things when working with QRM is to understand the QRM Result Hierarchy. This hierarchy is based much on the structure of the ATML standard, but does not follow this exactly. The PASS/FAIL of a measurement is called Outcome. Outcome can be PASS, FAIL, DONE, ABORT or N/A. The structure is as follows. Result Set One sequence execution for one UUT Outcome, name, start time, stop time Exactly one per QRM posting ATML Result Set Result Group One or more result groups within the Result Set Outcome, name ( test case in test specification) Typical a step in the test sequence ATML this can be TestGroup or SessionAction. A Result Group contains one or more Result or another Result Group Result One of more measurement within a Result Group Outcome, name, value and unit Datatype (DBL, INT, STRING, BOOL) Limits (>,<,=,>=,<=,!=) ATML this is a Test 10

11 11 6 Setting up a Station QRM can be setup in many ways, all depending on the environment. The simplest possible scenario is to set up a single development station as shown in Figure 4. It will include the following: SQL Server 2012 Express with QRM Result Database and aspnetdb user database. QRM Web Service IIS with Web Deploy extension running QRM Web Application TestStand QRM Client or LabVIEW Client System Requirements. 2GB RAM In order set up the development station, do the following: 1. Run the QRM_setup_<processor>.exe, accept license and select destination folder. 2. Select Full Installation. 11

12 12 3. Select all of the Additional Tasks. 4. After installation is finsihed, please reboot if prompt. 5. Test the QRM Web Application installation by open in your browser. QRM login page should appear. Login with user administrator and password abc123. You will be prompt to change password at first login. 12

13 13 6. Test the QRM Web Service Application installation by open Press Read Log. When prompt enter user qrmuser and password qrm123!. You should be able to see the log file. The license should be invalid. 7. Scroll down in the window to make sure Database storage and XML result storgage is set to TRUE. 8. License activation is needed (full or evaulation) in order for the QRM Web Service to store to database. The QRM Web Application can run without a license if logged in as administrator and from a localhost call. 13

14 14 9. Activate the license by pressing the Activate License button. Enter the license you have received from AddQ. Please contact for an evaluation license. 10. Done! Now setup any of the TestStand Result Processor (reference [5]) or LabVIEW QRM Client (reference [6]) and run an example as stated in these documents. 11. If there is any problems with the installation. Please refer to reference [2], Troubleshooting section. 6.1 Manual Setup of Station If a more manual setup is preferred, do the following minimum installation. 1. Install SQL Server Express (reference [2] section 5). 2. Install.NET Framework 3.5 and.net Framework 4 (depending on Windows platform) (reference [2] section 8 and 9) 3. Install the QRM Web Service (reference [2] section 10) 4. Enable the IIS Web Server and install the Web Deploy extension (reference [2] section 11). 5. Execute the batch file: <Install CD>/Scripts/DevStation/ SetupDevelopment.bat. Right-click the bat-file and select Run as administrator. This script will do the following: a. Create QRM Result Database in SQL Server Express b. Create aspnetdb in SQL Server Express

15 15 c. Create a SQL Server login TestUser with password test. d. Configure QRM Web Service to store in database using the TestUser login and also store to ATML XML files and enable logging. e. Import the QRM Web Application into IIS. 6. Test the QRM Web Application by open and the login prompt should appear. Login with user administrator and password abc123. You will be prompt to change password at first login. 7. Test the QRM Web Service by open Scroll down and make sure Database storage and XML result storage are activated. Press Read Log. When prompt enter user qrmuser and password qrm123!. You should be able to see the log file. 8. Done! Now setup any of the TestStand Result Processor (reference [5]) or LabVIEW QRM Client (reference [6]) and run an example as stated in these documents. 9. In order to uninstall do the following: a. Execute the batch file: <Install CD>/Scripts/DevStation/ DropDevelopment.bat. Right-click the bat-file and select Run as administrator. This will drop all that was installed by SetupDevelopment.bat. b. Run the uninstallers for SQL Server Express, IIS and QRM Web Service. 15

16 16 7 Database This section refers how to manually setup the database if a SQL Server already exists. If installation Setup Development Station has already been done, databases are already setup. 7.1 Database Installation Please refer to reference [2] of how to install the QRM databases. 8 QRM Web Service This section refers how to manually install the QRM Web Service If installation Setup Development Station has already been done, this service is already setup. 8.1 Installation Please refer to reference [2] for instructions of how to install the QRM web service. 8.2 Web Service Configuration File In order for the web service to work correctly, the web service configuration file needs to be set up. It is located differently depending on OS. When the web service is installed, it will only reply on request, but will not perform any action. The default folder for QRM file storage is C:\QRM. The following need to be configured: General settings (password, logging) Database connector type and connection string. Forwarding XML storage Optional advanced configuration: Synchronization Mail Proxy Windows 7/8/Windows 2008 Server Configuration file (this will be preserved when reinstalling the service). C:\Users\Public\Documents\QRM\QRMWebServiceConfig.ini Windows XP Configuration file (this will be preserved when reinstalling the service). C:\Documents and Settings\All Users\Documents\QRM\QRMWebServiceConfig.ini 16

17 Configuration Settings [QRMWebService] ## General settings ## LogFolder=C:\QRM\QRMLog TempFolder= #If empty default system tempfolder will be used. UseLog=FALSE AuthUsername=qrmuser AuthPassword=qrm123! LoginForInfoPage=FALSE #If TRUE password prompt is used for info page. Set this true if webservice is access from public internet. RefreshInfoPageRate=30000 #ms for autorefreshing info page. If rate = 0, no autorefreshing is used. InactiveSpindownTime=10 #min. When web service is inactive it will spin down automatically to free memory. Notice that if DBRetry interval or ForwardRetry interval is set < inactivity spindown time, web service will never spin down. If = 0, no spindown will occur. ## Database settings ## DatabaseProviders='ADODB' #ADODB,OLEDB,ODBC,MYSQL or SQLSERVER DatabaseConnectionStrings='<ODBC name>,user,password' #DatabaseConnectionStrings='Provider=MSDASQL.1;Persist Security Info=True;User ID=<user>;Password=<password>;Data Source=<ODBC>; #ADODB (ActiveX) example #DatabaseConnectionStrings='Driver={SQL Server Native Client 10.0};Server=.\sqlexpress;Database=QRMResultDatabase;Trusted_Connection=yes;' #DatabaseConnectionStrings='Driver={SQL Server};Server=.\sqlexpress;DataBase=QRMResultDatabase;Uid=<user>;Pwd=<password>'; #DatabaseConnectionStrings='DSN=<ODBC name>' #OBDC (ADO.NET) example #DatabaseConnectionStrings='Provider=SQLNCLI10;Server=.\sqlexpress;Database=QRMResultD atabase; Trusted_Connection=yes;' #DatabaseConnectionStrings='Provider=Microsoft.ACE.OLEDB.12.0;Data Source=<path>\QRMResultDatabase.accdb;Persist Security Info=False;' #OLEDB(ADO.NET) example #DatabaseConnectionStrings='Data Source=.\sqlexpress;Initial Catalog=QRMResultDatabase;User Id=QRMUser;Password=<pw>;MultipleActiveResultSets=True' #DatabaseConnectionStrings='Persist Security Info=False;Integrated Security=true;Initial Catalog=QRMResultDatabase;server=.\sqlexpress' #SQLSERVER (ADO.NET) example DatabaseProductFilter= #'<ProductName>' or!<productname> StoreDatabaseActive=FALSE TemporaryDBResultFolder=C:\QRM\QRMTmp\DBResults #Temporary results store if database connection is down. DBRetryInterval=00:05:00 # hh:mm:ss RemoveUUID=TRUE # Removes UUID identifier for UUT, ResultGroups and Results in DB. This will make dataspace smaller. Version2Compatible=FALSE # Specifies if web service is compatible with version 2 of database or not. ## Attachment settings ## AttachmentFolder=C:\QRM\QRMResults\Attachments CopyAttachmentsOnLocalhost=TRUE #If the attachements are on the localhost, this will copy the attachment to the folder specified above. ## Permanent XML file store settings ## 17

18 18 StoreXMLResultFolder=C:\QRM\QRMResults\XMLStorage StoreXMLResultActive=FALSE ## Forward settings ### ForwardingURLs=' # 'URL;username;password' ForwardingActive=FALSE TemporaryForwardFolder=C:\QRM\QRMTmp\Forward DeleteAttachmentsAfterForward=TRUE ForwardRetryInterval=00:03:00 # hh:mm:ss VPNConnections= # 'VPN name;username;password;allusers' # type = User or AllUsers. Notice that VPN connection must be reachable from system account, typically AllUsers. VPNActive=FALSE ## Request server settings ## RequestServerMode=File #DB,File,DB_NoAttachments,File_NoAttachments #Make sure to set StoreXMLResultActive=TRUE DeleteAfterRequest=TRUE DeleteAttachmentAfterRequest=TRUE ## Request client settings ## SyncURLs=' # 'URL;username;password' SyncActive=FALSE SyncInterval=AT:01:00:00,AT:04:00:00 #hh:mm:ss #AT:hh:mm:ss,AT:hh:mm:ss... SyncAll=FALSE #If false, only results from the last synchronized timestamp will be fetch. #If true, all of the results will be retrieved from the synchronizing URL, if server is configured delete after request, else server will keep track of last synchronization timestamp. SyncAttachments=TRUE ## Monitor folder for new ATML files ## MonitorFolders=C:\TestStandResultFolder MonitorActive=FALSE MonitorFilter=*.xml MonitorSubFolders=FALSE DeleteAfterUpload=TRUE ## ATLM ATMLIgnoreList=SessionAction #Elements to ignore and not log in data base. ## Mail alarm settings ## SMTPServer=smtp.gmail.com;587;<accountmail>;<password> #Server address;server port;username;password MailActive=FALSE SMTPFrom= #Mail Address SMTPTo= #Mail Address1, Mail Address2... ## Proxy settings ## ## Used by forward and sync request ProxyAddress= #IP:Port or 'Default' (same settings for proxy will be used as Internet Explorer uses.) ProxyUsername= ProxyPassword= ProxyDomain= 18

19 Database Connections The web service contains four different database connectors. Connection Provider Technique Database Comment ADODB Active X Data SQL Server through Fast. Use if possible. Objects (ADO) ODBC ODBC ODBC (ADO.NET) SQL Server through ODBC.NET standard ODBC connector. About 5 times slower than OLEDB OLEDB (ADO.NET) SQL Server and MS Access SQLSERVER SqlConnection (ADO.NET) SQL Server Table 1. Database providers supported by QRM. ADODB. Only provider supporting MS Access. About 5 times slower than ADODB. About 5 times slower than ADODB. Databases need a connection string. There are a few examples in the configuration file. Please find a proper connection string at The configuration file keys are: DatabaseProviders DatabaseConnectionStrings StoreDatabaseActive=TRUE Please note the StoreDatabaseActive key that must be set to TRUE, else database storage is disabled. If the database connection is lost, it will be temporary disabled and any incoming ATML result will be temporary stored on disk in a temporary folder. The web service will periodically retry opening the connection and when it is successful, all temporary ATML files will be stored in the database. The retry interval is configurable in the configuration file ODBC It is also possible to map a data source as an ODBC System DSN in the ODBC Data Source Administrator. Windows XP ODBC Control Panel->Administrative Tools->Data Sources (ODBC) Windows 7 64-bit, Windows 2008R2 and Windows 8 Launch the 32-bit ODBC Data Source Administrator from: C:\Windows\SysWOW64\odbcad32.exe Windows 7/8 32-bit operating system Launch from the Control Panel->Administative Tools->Data Sources (ODBC) 19

20 Database Insert When the QRM web service parses and stores an ATML result set, a check will be performed if the result set already exists in the database. According to the ATML standard, each result set has a unique GUID associated. QRM will use this GUID to check if the result set is already stored in the database or not. This way it is always safe to upload a result set twice, since it will be ignored if it already exists. When a result set is stored in the database, this is performed as a SQL transaction and if it is not successful, the entire result set will be thrown in order to keep database consistency. The result set will be stored to disk by the QRM web service in a special DBCorrupt folder. Default is <QRM Temp Folder>\DBResults\Corrupt It is possible in the configuration file to ignore storing certain results such as ATML session actions. Session actions typical do not add much result information and makes results more difficult to read. 8.3 XML Storage The web service can be configured just to store the ATML result sets as an XML file on disk. You can later upload the XML files manually through the QRM Web Service as described in section The configuration keys are: StoreXMLResultFolder StoreXMLResultActive=TRUE 8.4 Forwarding The web service can be configured to forward test data to another web service location. The web service will actually act as a HTTP client when forwarding the test data. If a forward fails (e.g. the remote web service is temporary unavailable), the test result must be stored in a temporary folder and then be sent forward when the remote web service is available again. The configuration file keys are: ForwardingURLs ForwardingActive=TRUE ForwardRetryInterval 8.5 Synchronization The web service can be configured to periodically try to fetch test data from web services in order to synchronize its data storage with the remote data storages. The configuration file keys are: SyncURLs SyncActive=TRUE SyncInterval (can be interval or absolute time) 20

21 Mail The web service can be setup to send an alert mail to one or more receivers when a problem occurs twice. The mail client uses SMTP. The correct mail settings need to be setup in the configuration file. 8.7 Proxy The web service may require to use a proxy in order to forward or when synchronizing data. The proxy settings are configured in the configuration file. 8.8 VPN Monitor The web service can also monitor one or more VPN connections and opens this automatically. It will also monitor if the connections are down and will try to reopen it. If this fails, it will try to reopen it every time there is a forward or synchronization timer event. 8.9 Security and Permissions The following permissions and users are default used with the QRM Web Service. All web service calls must provide a username and password. This can be changed in the configuration file. User Password Description qrmuser qrm123! This is the login the clients are using when reading and writing in to the web service. Table 2. QRM users. 21

22 QRM Web Service Web Monitor There is web page that could be useful to monitor the QRM Web Service: (if configured) Use "localhost" to access the local web service. Figure 7 shows the QRM Web Server Info page. This is where the QRM status is shown. It is possible to start, shutdown, enable logging, read log and clear counters. However, all these features (except read log) require the user to login to the server with the specified user and password set up in the web service configuration file. Default is qrmuser and qrm123!.this page is also auto refreshing. Time interval can be configured in the configuration file. Default is 30 s. Figure 7. The QRM web service info page Web Service Store Process State The QRM Web Service executes as a Windows Service using a system account. It will run even if no user is logged on. However, the web service operates in two modes: Idle or Run top level. When it is Idle, no database connection is open and all background processes are shut down. As soon as there is a request to the QRM web service, background process starts, database connections are opened etc. and background process state is run top level. The web service can spin down to Idle, if there has been no activity for default 10 minutes. This will release memory. The timeout is configurable in the web service configuration file. 22

23 Logging It is possible to enable a QRM web service log. It can either be configure to be enabled in the QRM Web Service configuration file or enabled from the web browser. However, if it is enabled from web browser and the service is shut down or restarted, the settings from the configuration file will be used. Figure 8. The QRM web service log page Manual Upload of ATML Files It is possible to manually upload ATML XML files to the QRM Web Service. Press the button Upload Result File and the Browse Select either an.xml file or a zip file containing multiple XML files. Figure 9. Manual upload of ATML XML files. 23

24 QRM Web Server Web Support API URL Authentication Description QRMResult/GarbageCollect Yes Support service. Force garbage collection of the web service objects. QRMResult/Start Yes Support service. Starts web service background process. QRMResult/Shutdown Yes Support service. Stops web service background process if no jobs are in queue. QRMResult/ForcedShutdown Yes Support service. Stops web service background process even if jobs are in queue. QRMResult/TerminateProcess Yes Support service. Terminates the ApplicationWebServer.exe. QRMResult/Info QRMResult/ Support service. Returns information about web service as an HTML page. QRMResult/ConfigInfo Yes Returns the configuration settings. QRMResult/ReadLog Yes Reads the log file. QRMResult/ClearLog Yes Clears the log file. QRMResult/EnableLog Yes Enables the file logging. QRMResult/DisableLog Yes Disables the file logging. QRMResult/DeleteTempFiles Yes Deletes all temporary result files. QRMResult/SendTestMail Yes Sends a test mail to all specified mail addresses. QRMResult/Upload Yes Uploads a XML result file or a zip-archive with many XML result files by a browse button. Table 3. QRM Web Server Support API. 24

25 NI Application Web Server (optional) If SSL (HTTPS) is required this is done though the NI Application Web Server. If SSL(HTTPS) is not required, configuration of the NI Application Web Server is not needed and this section may be skipped. The web service setup for each station is configured through the NI Application Web Server, which is part of the NI web service installation and needs to be set up for each station. When installed, the NI Application Web Server is configured through a web API (requires Microsoft Silverlight plug-in) using the following URL: address>:3580 In this web page, the server port and SSL certificates are configured as well as users and group access to the web service. Please reference to the National Instrument online information regarding the NI Application Web Server on the following URL: Figure 10. NI Application Web Server web configuration. 25

26 NI Application Web Server Configuration When installing the QRM web service for the first time please perform the following steps. 1. Open 2. Press Login in the upper right corner. Use admin with a blank password. 3. Press the Users tab and double click on admin. Enter a strong password and press OK and then Save. 26

27 27 4. Press the menu button with the monitor and the globe. Expand both System Web Server by the Advance tab. 5. In the System Web Server, set SSL enable to Yes and then Apply. You will now be forced to restart the service. Press Logout in the upper right corner. 27

28 28 6. Open the Control Panel->Administrative Tools->Services (eng). Right-click on the NI System Web Server and select Restart. There will be other services restarted as well. This is ok. 7. Reload the page Login as admin with password previously provided. Press the menu button with the monitor and the globe. Expand both System Web Server and Application Web Server by the Advance tab. 8. In the System Web Server select the LabVIEWDefaultCertificate in the Certificate file drop down list. Press the Apply button. 28

29 29 9. In the Application Web Server section, press the + button and add a virtual host called QRMSSL. Select the LabVIEWDefaultCertificate as Certificate file. Press Apply. 10. Press Logout in the upper right corner. 11. Restart the service again as described in step Done! 29

30 Advanced Configuration In the NI Application Web there are other things to configure like: Select if 32-bit or 64-bit application web server is active. Make sure 32-bit application web server is active TCP ports, default is 8080 (http) and 8081 (https). The NI Web server has a configuration file that can be directly edited as well Windows XP Web Server Configuration C:\Program Files\National Instruments\Shared\NI WebServer\NISystemWebServer.conf C:\Program Files\National Instruments\Shared\NI WebServer\NIWebAppServer.conf Windows 7/Windows Server 2008 (32bit) Web Server Configuration C:\Program Files (x86)\national Instruments\Shared\NI WebServer\NISystemWebServer.conf C:\Program Files (x86)\national Instruments\Shared\NI WebServer\NIWebAppServer.conf Windows 7/Windows Server 2008 (64bit) Web Server Configuration C:\Program Files\National Instruments\Shared\NI WebServer\NISystemWebServer.conf C:\Program Files\National Instruments\Shared\NI WebServer\NIWebAppServer.conf 30

31 Setting up the Service (optional) The NI Application Web Server can be configured to be robust. Open the Control Panel->Administrative Tools->Services (eng). Right-click on the NI Application Web Server and select Properties. Select the Recover tab and select Restart the Service on all failure tabs. 31

32 32 9 QRM Web Application This section refers how to manually install the QRM Web Application. If installation Setup Development Station has already been done, installation is already setup. 9.1 Installation Please refer reference [2] of how to install the QRM Web Application. All browsers are supported: Firefox, Internet Explorer, Google Chrome and Safari. The web application also runs on iphone and ipad using Safari. 9.2 Using QRM Web Application Please refer to reference [3] of how to use QRM Web Application. Figure 11. The QRM Web Application. 9.3 QRM Web Service SOAP If you would like to fetch QRM data to import in another system, this can be performed in two different ways. 1. Make your own database SQL query to the QRM result database. 2. Use the QRM Web Service SOAP API The QRM web application does not only host the web application accessible through a web browser, but also host a couple of SOAP web services. Please refer to reference [4] of how to use the SOAP API. 32

33 33 10 QRM Clients A QRM client can be anything that may post ATML results to the QRM Web Service through HTTP. There exist two QRM Clients, one for TestStand, TestStand QRM Result Processor Plugin, and one for LabVIEW, QRM Client. Both clients requires a QRM Web Service in order to work correctly. The TestStand Result Processor Plugin is actually built using the QRM LabVIEW Client. Results that are posted to the QRM web service by any QRM client is performed asynchronous. This means that as soon as the QRM web service has received the ATML XML result set, it will reply back to the client that it has been received (HTTP 200 ok), but the client does know if the result set actually ended up in the QRM database or not. This way it is very fast posting results to the QRM web service and the web service will continue processing the result sets even after the client has finished the execution TestStand QRM Result Processor Plugin The TestStand QRM Result Processor Plugin is an addon to TestStand 2012 or later. Please refer to reference [5]. They are located in: <Install dir>\teststand Result Processor\<TS version> Figure 12. The AddQ QRM Result Processor installed in TestStand. 33

34 LabVIEW QRMClient The LabVIEW QRMClient is an addon to LabVIEW 2010 or later and distributed as VIPM package. Please refer to reference [6]. It is located in: <Install dir>\labview QRM Client\<package>.vip Figure 13. QRMClient menu installed in the Addons->QRM 11 Support If you have questions, please post them at the QRM Community: If you don t have access to the community, please click Ask to join this group. For any question, feel free to contact AddQ support at: support@addq.se 12 Troubleshooting Please refer to the troubleshooting section in reference [2] QRM Installation Guide. 34

QRM Installation Guide Windows

QRM Installation Guide Windows 1 The Compatible with LabVIEW logo is a trademark of National Instruments Corporation and is used under a license from National Instruments Corporation. 1 2 Contents 1 Document Change History... 3 2 Documents

More information

QRM Web Application User Manual

QRM Web Application User Manual 1 QRM Web Application User Manual The Compatible with LabVIEW logo is a trademark of National Instruments Corporation and is used under a license from National Instruments Corporation. 1 2 Contents 1 Document

More information

Version Installation Guide. 1 Bocada Installation Guide

Version Installation Guide. 1 Bocada Installation Guide Version 19.4 Installation Guide 1 Bocada Installation Guide Copyright 2019 Bocada LLC. All Rights Reserved. Bocada and BackupReport are registered trademarks of Bocada LLC. Vision, Prism, vpconnect, and

More information

Five9 Plus Adapter for Agent Desktop Toolkit

Five9 Plus Adapter for Agent Desktop Toolkit Cloud Contact Center Software Five9 Plus Adapter for Agent Desktop Toolkit Administrator s Guide September 2017 The Five9 Plus Adapter for Agent Desktop Toolkit integrates the Five9 Cloud Contact Center

More information

NetExtender for SSL-VPN

NetExtender for SSL-VPN NetExtender for SSL-VPN Document Scope This document describes how to plan, design, implement, and manage the NetExtender feature in a SonicWALL SSL-VPN Environment. This document contains the following

More information

AT&T Core Mobility Integrated Dispatch Console User Guide. Installation Guide. AT&T Integrated Dispatch Console 3.0

AT&T Core Mobility Integrated Dispatch Console User Guide. Installation Guide. AT&T Integrated Dispatch Console 3.0 Installation Guide AT&T Integrated Dispatch Console 3.0 October 2016 Table of Content 1. Introduction... 3 1.1. Purpose and Scope... 3 1.2. Terms and Definitions... 3 1.3. About this Manual... 5 1.4. What

More information

VMware Identity Manager Connector Installation and Configuration (Legacy Mode)

VMware Identity Manager Connector Installation and Configuration (Legacy Mode) VMware Identity Manager Connector Installation and Configuration (Legacy Mode) VMware Identity Manager This document supports the version of each product listed and supports all subsequent versions until

More information

External Data Connector for SharePoint

External Data Connector for SharePoint External Data Connector for SharePoint Last Updated: August 2014 Copyright 2014 Vyapin Software Systems Private Limited. All rights reserved. This document is being furnished by Vyapin Software Systems

More information

Installing and Configuring vcloud Connector

Installing and Configuring vcloud Connector Installing and Configuring vcloud Connector vcloud Connector 2.6.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

More information

Aspera Connect Windows XP, 2003, Vista, 2008, 7. Document Version: 1

Aspera Connect Windows XP, 2003, Vista, 2008, 7. Document Version: 1 Aspera Connect 2.6.3 Windows XP, 2003, Vista, 2008, 7 Document Version: 1 2 Contents Contents Introduction... 3 Setting Up... 4 Upgrading from a Previous Version...4 Installation... 4 Set Up Network Environment...

More information

Privileged Identity App Launcher and Session Recording

Privileged Identity App Launcher and Session Recording Privileged Identity App Launcher and Session Recording 2018 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are

More information

CA Service Desk Integration with Remote Support

CA Service Desk Integration with Remote Support CA Service Desk Integration with Remote Support 2003-2019 BeyondTrust Corporation. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust Corporation. Other trademarks are the

More information

Hosted Encore 5 Desktop Installation Guide

Hosted Encore 5 Desktop Installation Guide Hosted Encore 5 Desktop Installation Guide November 18, 2015 WARNING: This Guide is for quickly configuring desktops to communicate with Cluen s hosted Encore solution. If you are installing Encore within

More information

PageScope Enterprise Suite Ver. 3.1 Installation Guide

PageScope Enterprise Suite Ver. 3.1 Installation Guide PageScope Enterprise Suite Ver. 3.1 Installation Guide Enterprise Suite Contents 1 Summary 1.1 Introduction...1-1 1.1.1 About Device Manager...1-1 Basic functions... 1-1 1.1. Add-on (extension) applications...1-1.1.3

More information

Cisco Unified Serviceability

Cisco Unified Serviceability Cisco Unified Serviceability Introduction, page 1 Installation, page 5 Introduction This document uses the following abbreviations to identify administration differences for these Cisco products: Unified

More information

KYOCERA Net Admin User Guide

KYOCERA Net Admin User Guide KYOCERA Net Admin User Guide Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable

More information

Traverse Intelligent Tracking by PCS. Installation Guide for Traverse.

Traverse Intelligent Tracking by PCS. Installation Guide for Traverse. Traverse Intelligent Tracking by PCS Installation Guide for Traverse. Tom Romeo 6/10/2011 The information in this documentation is not contractual in nature. It is subject to modification without notice.

More information

NetDespatch Velocity Connector User Guide

NetDespatch Velocity Connector User Guide NetDespatch Velocity Connector User Guide XML version Customised guide specifically for use with XML Integrations Guide refers to Microsoft Windows 7 Requirements before Proceeding You will need to have:

More information

Using ANM With Virtual Data Centers

Using ANM With Virtual Data Centers APPENDIXB Date: 3/8/10 This appendix describes how to integrate ANM with VMware vcenter Server, which is a third-party product for creating and managing virtual data centers. Using VMware vsphere Client,

More information

Troubleshooting. Participants List Displays Multiple Entries for the Same User

Troubleshooting. Participants List Displays Multiple Entries for the Same User Participants List Displays Multiple Entries for the Same User, page 1 Internet Explorer Browser Not Supported, page 2 "404 Page Not Found" Error Encountered, page 2 Cannot Start or Join Meeting, page 2

More information

Integration Service. Admin Console User Guide. On-Premises

Integration Service. Admin Console User Guide. On-Premises Kony Fabric Integration Service Admin Console User Guide On-Premises Release V8 SP1 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and the

More information

Easy UI Solution 2.1 Installation Guide

Easy UI Solution 2.1 Installation Guide Easy UI Solution 2.1 Installation Guide Thank you for selecting our product. This guide is intended for System Administrators, and describes how to install Easy UI Solution 2.1 (hereafter referred to as

More information

Parallels Remote Application Server

Parallels Remote Application Server Parallels Remote Application Server Parallels Client for Windows User's Guide v16.1 Parallels International GmbH Vordergasse 59 8200 Schaffhausen Switzerland Tel: + 41 52 672 20 30 www.parallels.com Copyright

More information

WebsitePanel User Guide

WebsitePanel User Guide WebsitePanel User Guide User role in WebsitePanel is the last security level in roles hierarchy. Users are created by reseller and they are consumers of hosting services. Users are able to create and manage

More information

Hypertext Transfer Protocol Over Secure Sockets Layer (HTTPS)

Hypertext Transfer Protocol Over Secure Sockets Layer (HTTPS) Hypertext Transfer Protocol Over Secure Sockets Layer (HTTPS) This chapter provides information about Hypertext Transfer Protocol over Secure Sockets Layer. HTTPS, page 1 HTTPS for Cisco Unified IP Phone

More information

Apptix Online Backup by Mozy User Guide

Apptix Online Backup by Mozy User Guide Apptix Online Backup by Mozy User Guide 1.10.1.2 Contents Chapter 1: Overview...5 Chapter 2: Installing Apptix Online Backup by Mozy...7 Downloading the Apptix Online Backup by Mozy Client...7 Installing

More information

The Cisco HCM-F Administrative Interface

The Cisco HCM-F Administrative Interface CHAPTER 5 This chapter contains information on the following topics: Overview of Cisco HCM-F Administrative Interface, page 5-1 Browser Support, page 5-2 Login and Logout, page 5-4 Online Help, page 5-5

More information

Hypertext Transfer Protocol over Secure Sockets Layer (HTTPS)

Hypertext Transfer Protocol over Secure Sockets Layer (HTTPS) Hypertext Transfer Protocol over Secure Sockets Layer (HTTPS) This chapter provides information about Hypertext Transfer Protocol over Secure Sockets Layer. HTTPS, page 1 HTTPS for Cisco Unified IP Phone

More information

Parallels Remote Application Server

Parallels Remote Application Server Parallels Remote Application Server Parallels Client for Mac User's Guide v16 Parallels International GmbH Vordergasse 59 8200 Schaffhausen Switzerland Tel: + 41 52 672 20 30 www.parallels.com Copyright

More information

Install and upgrade Qlik Sense. Qlik Sense 3.2 Copyright QlikTech International AB. All rights reserved.

Install and upgrade Qlik Sense. Qlik Sense 3.2 Copyright QlikTech International AB. All rights reserved. Install and upgrade Qlik Sense Qlik Sense 3.2 Copyright 1993-2017 QlikTech International AB. All rights reserved. Copyright 1993-2017 QlikTech International AB. All rights reserved. Qlik, QlikTech, Qlik

More information

AMS Device View Installation Guide. Version 2.0 Installation Guide May 2018

AMS Device View Installation Guide. Version 2.0 Installation Guide May 2018 AMS Device View Installation Guide Version 2.0 Installation Guide May 2018 Disclaimer The contents of this publication are presented for informational purposes only, and while every effort has been made

More information

Installation on Windows Server 2008

Installation on Windows Server 2008 USER GUIDE MADCAP PULSE 4 Installation on Windows Server 2008 Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described

More information

Integration Service. Admin Console User Guide. On-Premises

Integration Service. Admin Console User Guide. On-Premises Kony MobileFabric TM Integration Service Admin Console User Guide On-Premises Release 7.3 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and

More information

UC for Enterprise (UCE) NEC Centralized Authentication Service (NEC CAS)

UC for Enterprise (UCE) NEC Centralized Authentication Service (NEC CAS) UC for Enterprise (UCE) NEC Centralized Authentication Service (NEC CAS) Installation Guide NEC NEC Corporation October 2010 NDA-30362, Revision 15 Liability Disclaimer NEC Corporation reserves the right

More information

KNOXPLANS for New Users

KNOXPLANS for New Users KNOXPLANS for New Users Version 9.1, October 2018 Contents KNOXPLANS for New Users... 1 Welcome to KnoxPlans, Version 9.1... 2 Recommended Client Hardware and O/S Specifications... 2 Browser Requirements...

More information

Remote Support 19.1 Web Rep Console

Remote Support 19.1 Web Rep Console Remote Support 19.1 Web Rep Console 2003-2019 BeyondTrust Corporation. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust Corporation. Other trademarks are the property

More information

SYNERGY. Supervision and energy management software INSTRUCTION MANUAL

SYNERGY. Supervision and energy management software INSTRUCTION MANUAL SYNERGY Supervision and energy management software INSTRUCTION MANUAL INDEX 1 INTRODUCTION... 4 2 HARDWARE AND SOFTWARE REQUIREMENTS... 4 3 SETUP... 4 4 SYNERGY LOGIN AND USERS... 5 4.1 Users... 5 4.2

More information

How to Configure SSL VPN Portal for Forcepoint NGFW TECHNICAL DOCUMENT

How to Configure SSL VPN Portal for Forcepoint NGFW TECHNICAL DOCUMENT How to Configure SSL VPN Portal for Forcepoint NGFW TECHNICAL DOCUMENT Ta Table of Contents Table of Contents TA TABLE OF CONTENTS 1 TABLE OF CONTENTS 1 BACKGROUND 2 CONFIGURATION STEPS 2 Create a SSL

More information

SC-T35/SC-T45/SC-T46/SC-T47 ViewSonic Device Manager User Guide

SC-T35/SC-T45/SC-T46/SC-T47 ViewSonic Device Manager User Guide SC-T35/SC-T45/SC-T46/SC-T47 ViewSonic Device Manager User Guide Copyright and Trademark Statements 2014 ViewSonic Computer Corp. All rights reserved. This document contains proprietary information that

More information

Parallels Remote Application Server

Parallels Remote Application Server Parallels Remote Application Server Parallels Client for Windows User's Guide v15.5 Parallels International GmbH Vordergasse 59 8200 Schaffhausen Switzerland Tel: + 41 52 672 20 30 www.parallels.com Copyright

More information

Practice Labs User Guide

Practice Labs User Guide Practice Labs User Guide This page is intentionally blank Contents Introduction... 3 Overview... 3 Accessing Practice Labs... 3 The Practice Labs Interface... 4 Minimum Browser Requirements... 5 The Content

More information

Using Hypertext Transfer Protocol over Secure Sockets Layer (HTTPS)

Using Hypertext Transfer Protocol over Secure Sockets Layer (HTTPS) CHAPTER 2 Using Hypertext Transfer Protocol over Secure Sockets Layer (HTTPS) This chapter contains information on the following topics: HTTPS Overview, page 2-1 HTTPS for Cisco Unified IP Phone Services,

More information

8x8 Virtual Office Salesforce Call Center Interface User Guide

8x8 Virtual Office Salesforce Call Center Interface User Guide 8x8 Virtual Office User Guide August 2012 The Champion For Business Communications Table of Contents 8x8 Virtual Office Salesforce Call Center App... 3 System Requirements...3 Installation... 4 Uninstalling

More information

Table of Contents. VMware AirWatch: Technology Partner Integration

Table of Contents. VMware AirWatch: Technology Partner Integration Table of Contents Lab Overview - HOL-1857-08-UEM - Workspace ONE UEM - Technology Partner Integration... 2 Lab Guidance... 3 Module 1 - F5 Integration with Workspace ONE UEM (30 min)... 9 Introduction...

More information

Installation Guide for Pulse on Windows Server 2012

Installation Guide for Pulse on Windows Server 2012 USER GUIDE MADCAP PULSE 4 Installation Guide for Pulse on Windows Server 2012 Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The

More information

Click Studios. Passwordstate. Remote Session Launcher. Installation Instructions

Click Studios. Passwordstate. Remote Session Launcher. Installation Instructions Passwordstate Remote Session Launcher Installation Instructions This document and the information controlled therein is the property of Click Studios. It must not be reproduced in whole/part, or otherwise

More information

Table of Contents HOL-1757-MBL-6

Table of Contents HOL-1757-MBL-6 Table of Contents Lab Overview - - VMware AirWatch: Technology Partner Integration... 2 Lab Guidance... 3 Module 1 - F5 Integration with AirWatch (30 min)... 8 Getting Started... 9 F5 BigIP Configuration...

More information

Preface. Fuji Xerox Co., Ltd. Preface. Note

Preface. Fuji Xerox Co., Ltd. Preface. Note Mac and Mac OS are trademarks of Apple Inc., registered in the U.S. and other countries. Microsoft, Windows, and Windows Vista are either registered trademarks or trademarks of Microsoft Corporation in

More information

User Guide. 3CX Recording Manager Standard. Version

User Guide. 3CX Recording Manager Standard. Version User Guide 3CX Recording Manager Standard Version 15.5.109 "Copyright VoIPTools, LLC 2011-2018" Information in this document is subject to change without notice. No part of this document may be reproduced

More information

Remote Support Web Rep Console

Remote Support Web Rep Console Remote Support Web Rep Console 2017 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property of their

More information

Integrate Routing and Remote Access Service (RRAS) EventTracker v8.x and above

Integrate Routing and Remote Access Service (RRAS) EventTracker v8.x and above Integrate Routing and Remote Access Service (RRAS) EventTracker v8.x and above Publication Date: April 18, 2017 Abstract This guide provides instructions to configure Routing and Remote Access Service

More information

User Manual. Admin Report Kit for IIS 7 (ARKIIS)

User Manual. Admin Report Kit for IIS 7 (ARKIIS) User Manual Admin Report Kit for IIS 7 (ARKIIS) Table of Contents 1 Admin Report Kit for IIS 7... 1 1.1 About ARKIIS... 1 1.2 Who can Use ARKIIS?... 1 1.3 System requirements... 2 1.4 Technical Support...

More information

Aretics T7 Installation Manual

Aretics T7 Installation Manual Aretics T7 Installation Manual 1(24) Aretics T7 Installation Manual This document describes how to manage Aretics T7 in your IT environment. Here you will find information about installing the system,

More information

CA Agile Central Administrator Guide. CA Agile Central On-Premises

CA Agile Central Administrator Guide. CA Agile Central On-Premises CA Agile Central Administrator Guide CA Agile Central On-Premises 2018.1 Table of Contents Overview... 3 Server Requirements...3 Browser Requirements...3 Access Help and WSAPI...4 Time Zone...5 Architectural

More information

Installing and Configuring vcloud Connector

Installing and Configuring vcloud Connector Installing and Configuring vcloud Connector vcloud Connector 2.5.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

More information

Kaseya 2. Installation guide. Version R8. English

Kaseya 2. Installation guide. Version R8. English Kaseya 2 Kaseya Server Setup Installation guide Version R8 English October 24, 2014 Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept

More information

Introduction Secure Message Center (Webmail, Mobile & Visually Impaired) Webmail... 2 Mobile & Tablet... 4 Visually Impaired...

Introduction Secure Message Center (Webmail, Mobile & Visually Impaired) Webmail... 2 Mobile & Tablet... 4 Visually Impaired... WEB MESSAGE CENTER END USER GUIDE The Secure Web Message Center allows users to access and send and receive secure messages via any browser on a computer, tablet or other mobile devices. Introduction...

More information

Accessing Carolinas Healthcare System Resources Remotely

Accessing Carolinas Healthcare System Resources Remotely Accessing Carolinas Healthcare System Resources Remotely Have you logged in remotely before? If not, please proceed to Step 1. If yes, please log in as normal or see FAQ section if you are having trouble

More information

Troubleshooting. Participants List Displays Multiple Entries for the Same User

Troubleshooting. Participants List Displays Multiple Entries for the Same User Participants List Displays Multiple Entries for the Same User, page 1 Internet Explorer Browser Not Supported, page 2 404 Page Not Found Error Encountered, page 2 Cannot Start or Join Meeting, page 2 SSO

More information

Installing and Configuring VMware Identity Manager Connector (Windows) OCT 2018 VMware Identity Manager VMware Identity Manager 3.

Installing and Configuring VMware Identity Manager Connector (Windows) OCT 2018 VMware Identity Manager VMware Identity Manager 3. Installing and Configuring VMware Identity Manager Connector 2018.8.1.0 (Windows) OCT 2018 VMware Identity Manager VMware Identity Manager 3.3 You can find the most up-to-date technical documentation on

More information

Installation Guide. Cimatron Site Manager 2.0 Release Note

Installation Guide. Cimatron Site Manager 2.0 Release Note Installation Guide Cimatron Site Manager 2.0 Release Note Installation Guide i Table of Contents Introduction... 1 Cimatron Site Manager Components... 2 Installation... 3 Hardware Requirements... 3 Software

More information

SAP GUI 7.30 for Windows Computer

SAP GUI 7.30 for Windows Computer SAP GUI 7.30 for Windows Computer Student and Faculty Installation Instructions Table of Contents Caution:... 2 System Requirements:... 2 System Memory (RAM) requirements:... 2 Disk Space requirements:...

More information

Installation and Upgrade Guide. Front Office v9.0

Installation and Upgrade Guide. Front Office v9.0 c Installation and Upgrade Guide Front Office v9.0 Contents 1.0 Introduction... 4 2.0 Prerequisites... 5 2.1 Database... 5 2.2 Portal and Web Service... 5 2.3 Windows Service... 5 3.0 New Installation...

More information

Sign in and Meeting Issues

Sign in and Meeting Issues Account Activation Fails, page 2 Automatic Login Problems Occur After Cookies are Imported from Microsoft Internet Explorer, page 2 Browser Compatibility Issues, page 2 Cannot Connect to WebEx Site or

More information

DocAve for Salesforce 2.1

DocAve for Salesforce 2.1 DocAve for Salesforce 2.1 This document is intended for anyone wishing to familiarize themselves with the user interface and basic functionality of AvePoint s DocAve for Salesforce tool. System Requirements

More information

Chapter 10 Configure AnyConnect Remote Access SSL VPN Using ASDM

Chapter 10 Configure AnyConnect Remote Access SSL VPN Using ASDM Chapter 10 Configure AnyConnect Remote Access SSL VPN Using ASDM Topology Note: ISR G1 devices use FastEthernet interfaces instead of GigabitEthernet interfaces. 2015 Cisco and/or its affiliates. All rights

More information

Real-Time Dashboard Integration Bomgar Remote Support

Real-Time Dashboard Integration Bomgar Remote Support Real-Time Dashboard Integration Bomgar Remote Support 2017 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are

More information

Product Documentation. ER/Studio Portal. Installation Guide. Version 1.5 Published October 8, 2009

Product Documentation. ER/Studio Portal. Installation Guide. Version 1.5 Published October 8, 2009 Product Documentation ER/Studio Portal Installation Guide Version 1.5 Published October 8, 2009 2nd Edition Copyright 1994-2009 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California

More information

Perceptive TransForm E-Forms Manager 8.x. Installation and Configuration Guide March 1, 2012

Perceptive TransForm E-Forms Manager 8.x. Installation and Configuration Guide March 1, 2012 Perceptive TransForm E-Forms Manager 8.x Installation and Configuration Guide March 1, 2012 Table of Contents 1 Introduction... 3 1.1 Intended Audience... 3 1.2 Related Resources and Documentation... 3

More information

Ebrary User Guide. Downloading a Book: Reading ebrary books online: Accessing BookShelf: Using the Bookshelf:

Ebrary User Guide. Downloading a Book: Reading ebrary books online: Accessing BookShelf: Using the Bookshelf: Ebrary User Guide Downloading a Book: Reading ebrary books online: Accessing BookShelf: Using the Bookshelf: ebrary Mobile App Installation and Sign in procedure: Using ebrary App in ipad iphone ipod:

More information

Using the VMware vcenter Orchestrator Client. vrealize Orchestrator 5.5.1

Using the VMware vcenter Orchestrator Client. vrealize Orchestrator 5.5.1 Using the VMware vcenter Orchestrator Client vrealize Orchestrator 5.5.1 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments

More information

Epson Device Admin User s Guide NPD EN

Epson Device Admin User s Guide NPD EN Epson Device Admin User s Guide NPD5817-00 EN About this Manual About this Manual Marks and Symbols! Caution: Instructions that must be followed carefully to avoid bodily injury. c Important: Instructions

More information

Ekran System v.5.2 Deployment Guide

Ekran System v.5.2 Deployment Guide Ekran System v.5.2 Deployment Guide Table of Contents About... 6 System Requirements... 7 Program Structure... 9 Deployment Process... 10 Server and Database... 11 About... 11 Database Types Comparison...

More information

NeuralStar Installation Guide

NeuralStar Installation Guide NeuralStar Installation Guide Version 9.8 Release 3 May 2012 1st Edition Preface Software License Agreement Software is defined as the Kratos Technology & Training Solutions, Inc. computer programs with

More information

BlackBerry Enterprise Server for Microsoft Office 365. Version: 1.0. Administration Guide

BlackBerry Enterprise Server for Microsoft Office 365. Version: 1.0. Administration Guide BlackBerry Enterprise Server for Microsoft Office 365 Version: 1.0 Administration Guide Published: 2013-01-29 SWD-20130131125552322 Contents 1 Related resources... 18 2 About BlackBerry Enterprise Server

More information

CloudShell 7.1 GA. Installation Guide. Release Date: September Document Version: 2.0

CloudShell 7.1 GA. Installation Guide. Release Date: September Document Version: 2.0 CloudShell 7.1 GA Installation Guide Release Date: September 2016 Document Version: 2.0 Legal notice Information in this document is subject to change without notice. Without limiting the rights under

More information

AT&T CLOUD SERVICES. AT&T Synaptic Compute as a Service SM. Using VMware vcloud Connector

AT&T CLOUD SERVICES. AT&T Synaptic Compute as a Service SM. Using VMware vcloud Connector AT&T CLOUD SERVICES AT&T Synaptic Compute as a Service SM Using VMware vcloud Connector 2014 AT&T Intellectual Property. All rights reserved. AT&T, the AT&T logo and all other AT&T marks contained herein

More information

ER/Studio Enterprise Portal 1.1 Installation Guide

ER/Studio Enterprise Portal 1.1 Installation Guide ER/Studio Enterprise Portal 1.1 Installation Guide 2nd Edition, April 16/2009 Copyright 1994-2009 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco,

More information

Copyright and Legal Disclaimers

Copyright and Legal Disclaimers Copyright and Legal Disclaimers User Manual for DiConnect Lite Copyright 2012 by DiCentral Corporation All rights reserved. This document and all content that is contained, embedded and linked to this

More information

VII. Corente Services SSL Client

VII. Corente Services SSL Client VII. Corente Services SSL Client Corente Release 9.1 Manual 9.1.1 Copyright 2014, Oracle and/or its affiliates. All rights reserved. Table of Contents Preface... 5 I. Introduction... 6 Chapter 1. Requirements...

More information

Installation Guide. CloudShell Version: Release Date: June Document Version: 1.0

Installation Guide. CloudShell Version: Release Date: June Document Version: 1.0 Installation Guide CloudShell Version: 7.0.0.8538 Release Date: June 2016 Document Version: 1.0 Legal notice Information in this document is subject to change without notice. Without limiting the rights

More information

XLmanage Version 2.4. Installation Guide. ClearCube Technology, Inc.

XLmanage Version 2.4. Installation Guide. ClearCube Technology, Inc. XLmanage Version 2.4 Installation Guide ClearCube Technology, Inc. www.clearcube.com Copyright and Trademark Notices Copyright 2009 ClearCube Technology, Inc. All Rights Reserved. Information in this document

More information

Media Server Installation & Administration Guide

Media Server Installation & Administration Guide Media Server Installation & Administration Guide Smarter Surveillance for a Safer World On-Net Surveillance Systems, Inc. One Blue Hill Plaza, 7 th Floor, PO Box 1555 Pearl River, NY 10965 Phone: (845)

More information

Appliance Installation Guide

Appliance Installation Guide Appliance Installation Guide GWAVA 5 Copyright 2009. GWAVA Inc. All rights reserved. Content may not be reproduced without permission. http://www.gwava.com 1 Contents Overview... 2 Minimum System Requirements...

More information

docalpha Installation Guide

docalpha Installation Guide ARTSYL DOCALPHA INSTALLATION GUIDE 1. docalpha Architecture Overview... 2 1.1. docalpha Server Components... 4 1.2. docalpha Production Environment Stations Overview... 4 1.3. docalpha Setup & Administration

More information

Troubleshooting. Participants List Displays Multiple Entries for the Same User

Troubleshooting. Participants List Displays Multiple Entries for the Same User Participants List Displays Multiple Entries for the Same User, page 1 Internet Explorer Browser Not Supported, page 2 "404 Page Not Found" Error Encountered, page 2 Cannot Start or Join Meeting, page 2

More information

Installation Guide. Version R94. English

Installation Guide. Version R94. English Kaseya Server Setup Installation Guide Version R94 English September 20, 2017 Copyright Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept

More information

Pulse Secure Client for Chrome OS

Pulse Secure Client for Chrome OS Pulse Secure Client for Chrome OS Quick Start Guide Published March, 2018 Release 5.2r1 Version 1.6 2018 by Pulse Secure, LLC. All rights reserved 1 Pulse Secure, LLC 2700 Zanker Road, Suite 200 San Jose,

More information

Installation Manual. Fleet Maintenance Software. Version 6.4

Installation Manual. Fleet Maintenance Software. Version 6.4 Fleet Maintenance Software Installation Manual Version 6.4 6 Terri Lane, Suite 700 Burlington, NJ 08016 (609) 747-8800 Fax (609) 747-8801 Dossier@dossiersystemsinc.com www.dossiersystemsinc.com Copyright

More information

Install and upgrade Qlik Sense. Qlik Sense 3.0 Copyright QlikTech International AB. All rights reserved.

Install and upgrade Qlik Sense. Qlik Sense 3.0 Copyright QlikTech International AB. All rights reserved. Install and upgrade Qlik Sense Qlik Sense 3.0 Copyright 1993-2016 QlikTech International AB. All rights reserved. Copyright 1993-2016 QlikTech International AB. All rights reserved. Qlik, QlikTech, Qlik

More information

Software Installation Manual

Software Installation Manual Software Installation Manual Page 1 of 5 Hardware Requirements The ProxnetPro application is installed on a single, dedicated* Host PC, that will then provide Web Server access to any number of connected

More information

WATS Client 4.2 Installation Guide

WATS Client 4.2 Installation Guide O September 2013 WATS Client 4.2 Installation Guide In this document: WATS Client Installation WATS Client Upgrade Client Activation Uninstall WATS Test Station 2.3 Requirements list WATS Client installation

More information

CA Agile Central Installation Guide On-Premises release

CA Agile Central Installation Guide On-Premises release CA Agile Central Installation Guide On-Premises release 2016.2 Agile Central to Go 2017.1 rallysupport@rallydev.com www.rallydev.com 2017 CA Technologies (c) 2017 CA Technologies Version 2016.2 (c) Table

More information

Best Practices and Troubleshooting Guide

Best Practices and Troubleshooting Guide Best Practices and Troubleshooting Guide vcenter Chargeback Manager 2.5 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by

More information

Data Access Studio Install/Upgrade Guide for JDE World

Data Access Studio Install/Upgrade Guide for JDE World Data Access Studio Install/Upgrade Guide for JDE World 5299 DTC Blvd Greenwood Village, CO 80111, USA www.reportsnow.com Contents System Requirements... 2 Downloading and Installing/Upgrading DAS... 3

More information

CHAPTER. Introduction

CHAPTER. Introduction CHAPTER 1 Cisco Unified Communications Manager (formerly Cisco Unified CallManager) serves as the software-based call-processing component of the Cisco Unified Communications family of products. A wide

More information

Configuring GNS3 for CCNA Security Exam (for Windows) Software Requirements to Run GNS3

Configuring GNS3 for CCNA Security Exam (for Windows) Software Requirements to Run GNS3 Configuring GNS3 for CCNA Security Exam (for Windows) Software Requirements to Run GNS3 From Cisco s website, here are the minimum requirements for CCP 2.7 and CCP 2.8: The following info comes from many

More information

Deliver and manage customer VIP POCs. The lab will be directed and provide you with step-by-step walkthroughs of key features.

Deliver and manage customer VIP POCs. The lab will be directed and provide you with step-by-step walkthroughs of key features. SR L15 Hands-On Lab Description Protecting Corporate Networks with Symantec Validation and ID Protection At the end of this lab, you should be able to Technically present and answer questions from your

More information

Covene Cohesion Server Installation Guide A Modular Platform for Pexip Infinity Management October 25, 2016 Version 3.3 Revision 1.

Covene Cohesion Server Installation Guide A Modular Platform for Pexip Infinity Management October 25, 2016 Version 3.3 Revision 1. Covene Cohesion Server Installation Guide A Modular Platform for Pexip Infinity Management October 25, 2016 Version 3.3 Revision 1.0 Table of Contents 1. Overview... 3 2. Upgrading an Existing Installation...

More information

Dolby Conference Phone. Configuration guide for BT MeetMe with Dolby Voice

Dolby Conference Phone. Configuration guide for BT MeetMe with Dolby Voice Dolby Conference Phone Configuration guide for BT MeetMe with Dolby Voice Version 3.2 17 May 2017 Copyright 2017 Dolby Laboratories. All rights reserved. Dolby Laboratories, Inc. 1275 Market Street San

More information