Xirgo OBD II Protocol Adapter SDK Setup Guide. Version 1.0

Size: px
Start display at page:

Download "Xirgo OBD II Protocol Adapter SDK Setup Guide. Version 1.0"

Transcription

1 Xirgo OBD II Protocol Adapter SDK Setup Guide Version 1.0

2 Introduction... 2 About the Protocol Adapter SDK... 2 About Xirgo... 3 Installation... 3 Configuration and Setup... 3 Configuring the Xirgo device... 3 Configuring the Protocol Adapter... 4 Running the Protocol Adapter SDK... 5 Troubleshooting... 7 Compatibility... 8 Document Revision History... 8 Copyright 2015 PTC Inc. and/or Its Subsidiary Companies. All Rights Reserved. 1

3 Introduction About the Protocol Adapter SDK The Internet of Things is a rapidly-growing and oftentimes fragmented network of devices which frequently don t unify under a standardized language which connects them easily to each other. There exist many examples of devices which may be perfectly suited to reporting data in a specialized role, but for which their data reporting is shrouded in a proprietary format. When the ThingWorx platform needs to connect to one of these devices, the need for a translator, or Protocol Adapter, arises. The Protocol Adapter SDK is a package provided by ThingWorx for the purposes of connecting such a device, whose firmware and/or data format is unchangeable and incompatible with ThingWorx, to the ThingWorx Platform: Reporting Device Websocket Platform Proprietary Device Protocol Adapter Platform Often, these devices open a TCP or UDP networking socket and send data using a proprietary format. To allow these devices to connect to the ThingWorx Platform, the Protocol Adapter SDK runs intermediary to the device and ThingWorx, and listens on a specified port for any incoming device messages, and it parses the incoming messages from the device s native format into properties that are then transmitted to the ThingWorx Platform. It should be noted that the Protocol Adapter SDK should ideally be set up to run on an intermediary server, separate from the one on which the ThingWorx Platform is located (for scalability purposes). However, the Protocol Adapter SDK may also be run on the same server on which the ThingWorx Platform is located. Typically, when available on devices which are capable, the ThingWorx Edge MicroServer is installed on a client device for collecting and reporting data to ThingWorx using a secure WebSocket connection, instead of the Protocol Adapter SDK. The Edge MicroServer is a powerful component of the ThingWorx architecture. The Edge MicroServer allows for the rapid deployment of connections between the ThingWorx platform and an associated Copyright 2015 PTC Inc. and/or Its Subsidiary Companies. All Rights Reserved. 2

4 data reporting device, with minimal design requirements on the part of the user. It provides an alwayson connection to the platform, and it opens a local web server that interacts with the REST API available on the platform. About Xirgo The device Xirgo 2000 series is a versatile plug and play OBD II device. The device monitors and tracks vital information. The device is capable of sending GSM and GPRS messages that constitute the GPS coordinates of the device, speed of the vehicle, the IMEI number of the device, time, date, etc. This guide will follow the steps in configuring the Xirgo device to report data to a ThingWorx server via the Protocol Adapter SDK. The Protocol Adapter SDK allows only for one-way communication in this case. Installation The Protocol Adapter may run on an AWS server or a local machine, but IP address of the server running Thingworx platform should be configured in the Protocol Adapter. Please note that this guide was written for a computer running Microsoft Windows. Refer to the Troubleshooting section of this guide for help with frequently asked questions. Configuration and Setup Configuring the Xirgo device 1. Power on the device by interfacing the device with the OBD II port of the vehicle. 2. Insert a valid SIM card with a cellular data plan into the device in the position indicated on the right. 3. The Xirgo 2000 series have three LEDs to indicate communication behavior of the device. O: The OBD LED is orange in color. It flickers when the ignition of the vehicle is ON and it is OFF when the ignition is turned OFF. C: The cellular LED is blue in color. It blinks every three seconds to indicate that it is connected to the cellular network and it is capable of communicating via SMS messages. G: The GPS LED is green in color. It blinks regularly to indicate a GPS lock. Copyright 2015 PTC Inc. and/or Its Subsidiary Companies. All Rights Reserved. 3

5 4. The Xirgo device is configured using +XT commands. The commands can be sent via SMS messages if the SIM card has an active data plan or by connecting the Xirgo device to a PC via USB using a TELNET session. The XT commands will remain the same for either methods. 5. In order to receive response messages from the device, the device has to be configured to send response messages to a destination mobile phone number. This has to be configured with the +XT:1008 command on the right. Note: After sending this command all response messages will be sent to this number regardless of the phone number of the device from which the commands were sent. 6. Configure the device with the APN of the SIM network by using the command on the right. +XT:1008,<phone_number> Note: Replace <phone_number> with the destination mobile phone number. +XT:1002,,,<apn> Note: Replace <apn> with the APN of the network to which the SIM card is configured. The empty fields in the above command are for username and password in case the cellular network is configured to it. 7. Configure the device to the IP address and port number of the server running the Protocol Adapter such that the Protocol Adapter server receives the messages sent from the device containing vital information from the device. +XT:1001,<server_port>,< server_ip_address>,2 Note: Replace <server_port> and <server_ip_address> with the port and IP address of the server running the Protocol Adapter. Configuring the Protocol Adapter 1. Included in the starter kit for the Xirgo Protocol Adapter SDK package, you ll find a file labeled config.json in the root level of the Xirgo.zip package. Open this file for editing with a text editor. In config.json, change the value of socketport under ConnectionServerSettings to the port to which the device has been configured to, in the above given steps. The Copyright 2015 PTC Inc. and/or Its Subsidiary Companies. All Rights Reserved. 4

6 Protocol Adapter will be listening on this port. Remember that the GPRS port for the device is the same. 2. In config.json, change the thingworxserverapikey to an Application Key currently being used by your Thingworx application. Set the thingworxserver and thingworxserverport to the IP address and port number, respectively, of the machine that is running the Thingworx platform. Your configuration should be similar to the image on the right. The socketport is set to the port number to which the device has been configured. The socketprotocol is set to UDP since messages from the device are sent in data packets. Running the Protocol Adapter SDK Before running the Protocol Adapter SDK, make sure that the Thingworx application is running on the referenced port and server address. Make sure that the Xirgo device is plugged in, switched ON, and it is located in an area with clear GPS signal (such as a window or outside area). 1 Using Eclipse IDE: Import the project into the eclipse workspace. File->Import- >Java->Existing Projects -> browse to the folder containing the project. Note: Create a new Java Project in your IDE if necessary before importing. 2 Build a Runnable JAR file using File > Export > Runnable JAR File, and run it Copyright 2015 PTC Inc. and/or Its Subsidiary Companies. All Rights Reserved. 5

7 from command line (alternatively, run within Eclipse IDE) using the command: Java jar <jar-filename>.jar 3 While the program is running, you should see a series of output messages, beginning with a successful connection message, and including an Accepted client connection message indicating that the Protocol Adapter is receiving an incoming message from the Xirgo device (see the example log below). If you do not receive these messages in the log, verify that the connection settings on both your Xirgo device and in the config.json files are correct. In addition, verify that the specified listener port is open on your server and that no firewalls are blocking the UDP connection. 4 When your Protocol Adapter listener successfully receives a connection from the Xirgo device, it should automatically create a remote thing on your ThingWorx instance, to which you may bind a Remote Thing entity on the platform and add data bindings. Data forwarded from the Protocol Adapter will be visible under Manage Remote Bindings on a Remote Thing entity in ThingWorx which carries the same name/identifier as that created by the Protocol Adapter on the platform. Above: Successful data reporting from the Protocol Adapter to the Thingworx platform. Note the value of isconnected is set to True. Copyright 2015 PTC Inc. and/or Its Subsidiary Companies. All Rights Reserved. 6

8 Troubleshooting Problem Solution(s) 1. Not receiving any response message from the device. 1. Ensure that the device is configured with the correct phone number, APN on which the response is expected. 2. Ensure that the IP Address and Port number are the same as the IP address and Port on which the Protocol Adapter server is running. 3. Ensure that the SIM card is valid and the cellular LED is briefly blinking every 3 seconds indicating cellular connectivity. 4. Ensure that the Protocol Adapter is running on the specified IP address and listening on the specified port number. 5. Ensure that the firewall is disabled for the specified port number for UDP connection on the server running the Protocol Adapter. 2. Protocol Adapter SDK giving error: Refilling connections on [endpoint 0, uri: ws://localhost:80/thingworx/ws] failed : Connection authentication/registration FAILED 1. Ensure that the config.json has the correct port number, server address, and Application key for the Thingworx application. 2. Ensure that Tomcat is running and ThingWorx is running at the specified port. 3. Verify that the specified port is open and that your url is correct. Try to connect with SSL disabled. 5. While the Xirgo device is running and reporting data to the server, the Protocol Adapter SDK is merely stating the following debug message: [ClientHandler: ] Client has been idle, sending websocket ping... The Xirgo device is not able to connect to the Protocol Adapter SDK. 1. Ensure that the Cellular LED is blinking every 3 seconds and GPS LED is blinking to verify connectivity. 2. Ensure that the Xirgo device is kept somewhere outside building to obtain GPS coordinates, since GPS doesn t work in indoor environments. Verify your SIM card s data and GPRS capability and try an alternate SIM card if necessary. 3. Check the Xirgo device +XT command settings and make sure that the GPRS server hostname is set to the public IP address of the Computer/AWS server running the Protocol Adapter SDK. Ensure that Protocol Adapter is listening on the UDP port is the same as the port number to which the device is configured. 4. Ensure that config.json is configured correctly and it is modified accordingly with a valid Thingworx App-key, Thingworx server IP address, Thingworx server port number. 5. Disable firewall setting for the UDP port on the server on which the Protocol Adapter is listening. Copyright 2015 PTC Inc. and/or Its Subsidiary Companies. All Rights Reserved. 7

9 Compatibility This guide has been tested for compatibility with the Xirgo Device and the following ThingWorx platform, server, and operating system: ThingWorx Platform Version ThingWorx 6.5 OS Xirgo Device Windows 7, Service Pack 1, Windows Server 12 hosted on AWS Xirgo 2000 series Document Revision History Revision Date Version Description of Change October 12, Initial Release Copyright 2015 PTC Inc. and/or Its Subsidiary Companies. All Rights Reserved. 8

B&B Spectre LTE Edge MicroServer Setup Guide

B&B Spectre LTE Edge MicroServer Setup Guide B&B Spectre LTE Edge MicroServer Setup Guide July 2015 Table of Contents 1. Introduction... 1-1 About the Spectre LTE... 1-1 2. Installation... 2-1 Set up the Spectre LTE... 2-1 Set up the ThingWorx Application...

More information

Novatel Wireless SA-2100 Edge MicroServer Installation and Setup Guide. Version [1.0]

Novatel Wireless SA-2100 Edge MicroServer Installation and Setup Guide. Version [1.0] Novatel Wireless SA-2100 Edge MicroServer Installation and Setup Guide Version [1.0] Copyright 2015 PTC Inc. and/or Its Subsidiary Companies. All Rights Reserved. User and training guides and related documentation

More information

Dell IoT Gateway 5500 Edge MicroServer Setup Guide

Dell IoT Gateway 5500 Edge MicroServer Setup Guide Dell IoT Gateway 5500 Edge MicroServer Setup Guide Version [1.0] Software Change Log... 2 Introduction... 2 About the Dell IoT Gateway 5500... 2 Installation... 3 Initial Setup... 3 Download Prerequisite

More information

NXP i.mx 6 UltraLite Evaluation Kit Edge MicroServer Installation and Setup Guide. Version 1.0

NXP i.mx 6 UltraLite Evaluation Kit Edge MicroServer Installation and Setup Guide. Version 1.0 NXP i.mx 6 UltraLite Evaluation Kit Edge MicroServer Installation and Setup Guide Version 1.0 Software Change Log... 2 Introduction... 2 About the NXP i.mx 6 UltraLite Evaluation Kit... 2 Initial Setup...

More information

Broadcom BCM943364WCD1 C-SDK Setup Guide. Version 1.0

Broadcom BCM943364WCD1 C-SDK Setup Guide. Version 1.0 Broadcom BCM943364WCD1 C-SDK Setup Guide Version 1.0 Software Change Log... 2 Introduction... 2 About the Broadcom BCM943364WCD1... 2 Installation... 3 Downloads and Prerequisites... 3 Configuration and

More information

Vantron VT-M2M-TC-VM ThingWorx Setup Guide

Vantron VT-M2M-TC-VM ThingWorx Setup Guide Vantron VT-M2M-TC-VM ThingWorx Setup Guide October 2015 Contents Introduction... 2 About the Vantron VT-M2M_TC_VM... 2 Installation... 2 Compile the Vantron lvdemo Executable... 2 Prerequisites... 2 Connect

More information

Vantron VT-M2M-TC-VM ThingWorx Setup Guide

Vantron VT-M2M-TC-VM ThingWorx Setup Guide Vantron VT-M2M-TC-VM ThingWorx Setup Guide October 2015 Copyright 2015 PTC Inc. and/or Its Subsidiary Companies. All Rights Reserved. User and training guides and related documentation from PTC Inc. and

More information

ThingWorx Lantronix PremierWaveXN Edge MicroServer Installation and Setup Guide

ThingWorx Lantronix PremierWaveXN Edge MicroServer Installation and Setup Guide ThingWorx Lantronix PremierWaveXN Edge MicroServer Installation and Setup Guide July 2015 Copyright 2015 PTC Inc. and/or Its Subsidiary Companies. All Rights Reserved. User and training guides and related

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

FIFOTRACK PARAMETER TOOL USER GUIDE V1.1

FIFOTRACK PARAMETER TOOL USER GUIDE V1.1 FIFOTRACK PARAMETER TOOL USER GUIDE V1.1 Copyright 2015 fifotrack All rights reserved 1 Copyright and Disclaimer: All copyrights belong to Shenzhen fifotrack Solution Co., Ltd. You are not allowed to revise,

More information

BitPipe Cellular Dev- Kit

BitPipe Cellular Dev- Kit BitPipe Cellular Dev- Kit Rev 1.2 2018-03-19 Table of Contents Table of Contents... 2 Table of figures... 3 1 Revision history... 4 2 Introduction... 4 3 Included Material... 4 4 BitPipe Development Kit

More information

BitPipe Cellular Dev-Kit

BitPipe Cellular Dev-Kit Rev 1.0 2016-09-02 1 Table of Contents Table of Contents... 2 Table of figures... 3 1. Revision history... 4 2. Introduction... 4 3. Included Material... 4 4. Requirements... 5 5. BitPipe Development Kit

More information

FAST Installation (PMRS) Box Contents

FAST Installation (PMRS) Box Contents FAST Installation (PMRS) Box Contents PMRS Unit Video/Power Adapter GPS Antenna 5V Charger u USB Cable 12V 5V Car Adapter PTZ+GPIO Cable Voice splitter GSM Antenna (Optional) LAN Cable Required Items SIM

More information

Lotusphere IBM Collaboration Solutions Development Lab

Lotusphere IBM Collaboration Solutions Development Lab Lotusphere 2012 IBM Collaboration Solutions Development Lab Lab#4 IBM Sametime Unified Telephony Lite telephony integration and integrated telephony presence with PBX 1 Introduction: IBM Sametime Unified

More information

ThingWorx Service Apps Setup and Configuration Guide 8.2

ThingWorx Service Apps Setup and Configuration Guide 8.2 ThingWorx Service Apps Setup and Configuration Guide 8.2 Copyright 2018 PTC Inc. and/or Its Subsidiary Companies. All Rights Reserved. User and training guides and related documentation from PTC Inc. and

More information

[Pick the date] DS-300 Configuration Guide v 5.7

[Pick the date] DS-300 Configuration Guide v 5.7 DS-300 Version 5.7 Web based configuration Troubleshooting Guide 1. LOGIN SETTINGS By Default, after getting a DHCP IP address from DS-300, open any Internet browser and type in the URL address for Customer

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

Setting Up the Development Environment

Setting Up the Development Environment CHAPTER 5 Setting Up the Development Environment This chapter tells you how to prepare your development environment for building a ZK Ajax web application. You should follow these steps to set up an environment

More information

Remote Console Manager with GSM Modem QS Guide

Remote Console Manager with GSM Modem QS Guide LES1204A-3G-R2 Remote Console Manager with GSM Modem QS Guide Quick Start Guide This Quick Start Guide helps you through installation, configuration, and local operation. For more details, refer to the

More information

MRD-310 MRD G Cellular Modem / Router Web configuration reference guide. Web configuration reference guide

MRD-310 MRD G Cellular Modem / Router Web configuration reference guide. Web configuration reference guide Web configuration reference guide 6623-3201 MRD-310 MRD-330 Westermo Teleindustri AB 2008 3G Cellular Modem / Router Web configuration reference guide www.westermo.com Table of Contents 1 Basic Configuration...

More information

Custom Application Signatures

Custom Application Signatures Custom Application Signatures Tech Note PAN-OS 4.1 Revision A Contents Overview... 3 Why Custom App-IDs... 3 Objectives... 3 Signatures for Custom App-IDs... 3 Research the Application... 3 Identify Patterns

More information

Remote Console Manager with GSM Modem QS Guide

Remote Console Manager with GSM Modem QS Guide LES1204A-3G-R2 Remote Console Manager with GSM Modem QS Guide Quick Start Guide This Quick Start Guide helps you through installation, configuration, and local operation. For more details, refer to the

More information

TrueSight Capacity Optimization 10.x - LDAP Integration with Microsoft Active Directory. January 2017

TrueSight Capacity Optimization 10.x - LDAP Integration with Microsoft Active Directory. January 2017 TrueSight Capacity Optimization 10.x - LDAP Integration with Microsoft Active Directory January 2017 If you plan to use Capacity Views, or other views provided by TrueSight Presentation Server, don t waste

More information

<Partner Name> <Partner Product> RSA SECURID ACCESS Implementation Guide. PingIdentity PingFederate 8

<Partner Name> <Partner Product> RSA SECURID ACCESS Implementation Guide. PingIdentity PingFederate 8 RSA SECURID ACCESS Implementation Guide PingIdentity John Sammon & Gina Salvalzo, RSA Partner Engineering Last Modified: February 27 th, 2018 Solution Summary Ping Identity

More information

WFCE - Build and deployment. WFCE - Deployment to Installed Polarion. WFCE - Execution from Workspace. WFCE - Configuration.

WFCE - Build and deployment. WFCE - Deployment to Installed Polarion. WFCE - Execution from Workspace. WFCE - Configuration. Workflow function and condition Example WFCE - Introduction 1 WFCE - Java API Workspace preparation 1 WFCE - Creating project plugin 1 WFCE - Build and deployment 2 WFCE - Deployment to Installed Polarion

More information

User Manual. SSV Remote Access Gateway. Web ConfigTool

User Manual. SSV Remote Access Gateway. Web ConfigTool SSV Remote Access Gateway Web ConfigTool User Manual SSV Software Systems GmbH Dünenweg 5 D-30419 Hannover Phone: +49 (0)511/40 000-0 Fax: +49 (0)511/40 000-40 E-mail: sales@ssv-embedded.de Document Revision:

More information

Windows Installation Guide 8.2

Windows Installation Guide 8.2 Windows Installation Guide 8.2 Copyright 2018 PTC Inc. and/or Its Subsidiary Companies. All Rights Reserved. User and training guides and related documentation from PTC Inc. and its subsidiary companies

More information

Remote Process Explorer

Remote Process Explorer Remote Process Explorer Frequently Asked Questions LizardSystems Table of Contents Introduction 3 What is Remote Process Explorer? 3 Before Installing 3 How can I download Remote Process Explorer? 3 Will

More information

GIVE W INGS TO YOUR IDEAS

GIVE W INGS TO YOUR IDEAS GIVE W INGS TO YOUR IDEAS Using TCP and UDP under Open-AT Revision: 001 Date: June 2003 PLUG IN TO THE WIRELESS WORLD Author: Wavecom Support Consultant Date: 23 th June 2005 APN Content Level BASIC INTERMEDIATE

More information

PTC Navigate Manage Traces Installation and Configuration Guide PTC Navigate Manage Traces 1.0 with Integrity Lifecycle Manager and Windchill

PTC Navigate Manage Traces Installation and Configuration Guide PTC Navigate Manage Traces 1.0 with Integrity Lifecycle Manager and Windchill PTC Navigate Manage Traces Installation and Configuration Guide PTC Navigate Manage Traces 1.0 with Integrity Lifecycle Manager and Windchill Copyright 2016 PTC Inc. and/or Its Subsidiary Companies. All

More information

Proficy Plant Applications 7.0 Quick Install Guide (And Best Practices)

Proficy Plant Applications 7.0 Quick Install Guide (And Best Practices) Proficy Plant Applications 7.0 Quick Install Guide (And Best Practices) Installation Instructions Based on: Windows Server 2016 x64 Operating System SQL Server 2016 Standard (where applicable) Microsoft

More information

Configuration Guide. BlackBerry UEM. Version 12.9

Configuration Guide. BlackBerry UEM. Version 12.9 Configuration Guide BlackBerry UEM Version 12.9 Published: 2018-07-16 SWD-20180713083904821 Contents About this guide... 8 Getting started... 9 Configuring BlackBerry UEM for the first time...9 Configuration

More information

BlackBerry UEM Configuration Guide

BlackBerry UEM Configuration Guide BlackBerry UEM Configuration Guide 12.9 2018-11-05Z 2 Contents Getting started... 7 Configuring BlackBerry UEM for the first time... 7 Configuration tasks for managing BlackBerry OS devices... 9 Administrator

More information

LDAP Directory Integration

LDAP Directory Integration LDAP Server Name, Address, and Profile Configuration, on page 1 with Cisco Unified Communications Manager Task List, on page 1 for Contact Searches on XMPP Clients, on page 6 LDAP Server Name, Address,

More information

ThingWorx Relational Databases Connectors Extension User Guide

ThingWorx Relational Databases Connectors Extension User Guide ThingWorx Relational Databases Connectors Extension User Guide Version 1.0 Software Change Log... 2 Introduction and Installation... 2 About the Relational Databases Connectors Extension... 2 Installing

More information

STEP ONE: Registration and Activation

STEP ONE: Registration and Activation WELCOME! Welcome to a new dimension of safety and security for your vehicles with your purchase of the TrackmateGPS MINI H 3G and its advanced technology. You are now able to have control of your vehicles,

More information

mobilecam GM-GV3 mobilecam & Viewer Software User Guide

mobilecam GM-GV3 mobilecam & Viewer Software User Guide GM-GV3 & Viewer Software User Guide 1 Table of Contents Chapter 1 GM-GV3 Overview 1.1 Package contents. 1.2 GM-GV3 overview.. 1.3 peripheral connection diagram.. Chapter 2 Install the Program & Setup the.

More information

Quick Start Guide LES1308A, LES1316A LES1332A, LES1348A. Securely manage data center and network equipment from anywhere in the world.

Quick Start Guide LES1308A, LES1316A LES1332A, LES1348A. Securely manage data center and network equipment from anywhere in the world. LES1308A, LES1316A LES1332A, LES1348A 8-/16-/32-/48-Port Advanced Console Server with GSM Modem QS Guide Quick Start Guide Securely manage data center and network equipment from anywhere in the world.

More information

Service. Updating Firmware of Galileosky Tracking Device

Service. Updating Firmware of Galileosky Tracking Device Service. Updating Firmware of Galileosky Tracking Device User Manual www.galileosky.com Contents Tools, Devices, Materials... 3 General Information... 4 Local Firmware Updating via USB Connection... 5

More information

Symantec Mobile Management for Configuration Manager 7.2 MR1 Release Notes

Symantec Mobile Management for Configuration Manager 7.2 MR1 Release Notes Symantec Mobile Management for Configuration Manager 7.2 MR1 Release Notes Symantec Mobile Management for Configuration Manager 7.2 MR1 Release Notes This document includes the following topics: About

More information

Developing Android applications in Windows

Developing Android applications in Windows Developing Android applications in Windows Below you will find information about the components needed for developing Android applications and other (optional) software needed to connect to the institution

More information

form layout - we will demonstrate how to add your own custom form extensions in to form layout

form layout - we will demonstrate how to add your own custom form extensions in to form layout Form Extension Example FEE - Introduction 1 FEE - Java API Workspace preparation 1 FEE - Creating project plugin 1 FEE - Deployment to Installed Polarion 1 FEE - Execution from Workspace 1 FEE - Configuration

More information

APPLICATION NOTE. Rainbow Scada Usage Guide. Tel: Fax:

APPLICATION NOTE. Rainbow Scada Usage Guide. Tel: Fax: Tel: +90-216 466 84 60 Fax: +90-216 364 65 65 datakom@datakom.com.tr http://www.datakom.com.tr APPLICATION NOTE Rainbow Scada Usage Guide PRODUCTS AFFECTED: D-500 / D-700 WRITTEN BY: Metin Hekimoglu DATE:

More information

Avaya one-x Mobile User Guide for J2ME

Avaya one-x Mobile User Guide for J2ME Avaya one-x Mobile User Guide for J2ME Release 5.2 January 2010 0.2 2009 Avaya Inc. All Rights Reserved. Notice While reasonable efforts were made to ensure that the information in this document was complete

More information

GSM/GPRS/GPS Tracker GL300 User Manual

GSM/GPRS/GPS Tracker GL300 User Manual GSM/GPRS/GPS Tracker GL300 User Manual TRACGL300UM001 Revision: 1.01 http://www.queclink.com sales@queclink.com Document Title GL300 User Manual Version 1.01 Date 2014-05-09 Status Document Control ID

More information

Application Note: Remote Device Test

Application Note: Remote Device Test Application Note: Remote Device Test Scope AT240, AT110, AT210, AT200 Overview The self-test command is used to check the identity and status of a device and diagnose common issues related to configuration

More information

LDAP Directory Integration

LDAP Directory Integration LDAP Server Name, Address, and Profile Configuration, page 1 with Cisco Unified Communications Manager Task List, page 1 for Contact Searches on XMPP Clients, page 6 LDAP Server Name, Address, and Profile

More information

ZENDA Manager User Guide. Applicable Model: ZD-VT1

ZENDA Manager User Guide. Applicable Model: ZD-VT1 ZENDA Manager User Guide Applicable Model: ZD-VT1 Change History File Name ZENDA Manager User Guide Created By Owen Cheng Project ZD-VT1 Creation Date 2016-01-18 Update Date 2016-02-02 Subproject User

More information

User module. Guest Configuration APPLICATION NOTE

User module. Guest Configuration APPLICATION NOTE User module Guest Configuration APPLICATION NOTE USED SYMBOLS Used symbols Danger important notice, which may have an influence on the user s safety or the function of the device. Attention notice on possible

More information

My Personal Flasher (MPF) - User Guide for Android

My Personal Flasher (MPF) - User Guide for Android My Personal Flasher (MPF) - User Guide for Android Table of Contents Connection to Android... 2 Droid Personal Flasher Use... 5 Dealer update... 7 1 Connection to Android Pre-Requisites: You MUST have

More information

3G M2M Router Plus (NTC / NTC ) 3G M2M Router (NTC ) Firmware Release Notes

3G M2M Router Plus (NTC / NTC ) 3G M2M Router (NTC ) Firmware Release Notes 3G M2M Router Plus (NTC-6200-02 / NTC-6200-12) 3G M2M Router (NTC-6200-13) Firmware Release Notes Copyright Copyright 2016 NetComm Wireless Limited. All rights reserved. The information contained herein

More information

UC Office for Smart Phone - iphone Edition

UC Office for Smart Phone - iphone Edition UC Office for Smart Phone - iphone Edition User Guide Revision 1.0 Contents 1 INTRODUCTION... 1 1.1 Overview... 1 2 REQUIREMENTS... 1 2.1 Hardware and Software Requirements... 1 2.2 Licensing Requirements...

More information

BlackBerry Developer Summit. A02: Rapid Development Leveraging BEMS Services and the AppKinetics Framework

BlackBerry Developer Summit. A02: Rapid Development Leveraging BEMS Services and the AppKinetics Framework BlackBerry Developer Summit A02: Rapid Development Leveraging BEMS Services and the AppKinetics Framework Page 2 of 21 Table of Contents 1. Workbook Scope... 4 2. Compatibility... 4 3. Source code download

More information

The Cosy 131 User Guide USER MANUAL

The Cosy 131 User Guide USER MANUAL The Cosy 131 User Guide USER MANUAL UM-0004-00 EN 1.1 ENGLISH Important User Information Liability Every care has been taken in the preparation of this document. Please inform HMS Industrial Networks SA

More information

OPC UA Configuration Manager Help 2010 Kepware Technologies

OPC UA Configuration Manager Help 2010 Kepware Technologies OPC UA Configuration Manager Help 2010 Kepware Technologies 1 OPC UA Configuration Manager Help Table of Contents 1 Getting Started... 2 Help Contents... 2 Overview... 2 Server Settings... 2 2 OPC UA Configuration...

More information

This pre-installed mdexsim-vodafone must be replaced with your own SIM-card.

This pre-installed mdexsim-vodafone must be replaced with your own SIM-card. Quick Guide MX510 & mdex fixed.ip+ via OpenVPN MX510 & mdex public.ip via OpenVPN This guide describes the quick configuration of the mdex Router MX510 to have a remote access to one or more terminals

More information

Getting Started with Android Development Zebra Android Link-OS SDK Android Studio

Getting Started with Android Development Zebra Android Link-OS SDK Android Studio Getting Started with Android Development Zebra Android Link-OS SDK Android Studio Overview This Application Note describes the end-to-end process of designing, packaging, deploying and running an Android

More information

User s Guide for 3G/GPS Camera

User s Guide for 3G/GPS Camera User s Guide for 3G/GPS Camera Version: 1.2 Date: October 26, 2010 Revision History Version Date Changes 1.0 06/29/2010 First Release of 3G/GPS Camera User s Guide 1.1 10/14/2010 Update the function description

More information

GSM/GPRS/GPS Tracker GL300 User Manual

GSM/GPRS/GPS Tracker GL300 User Manual GSM/GPRS/GPS Tracker GL300 User Manual TRACGL300UM001 Revision: Draft http://www.queclink.com sales@queclink.com Document Title Version GL300 User manual Draft Date 2013-04-18 Status Document Control ID

More information

Gemalto EHS6T-USB Terminal Starter Kit. Getting Started Guide

Gemalto EHS6T-USB Terminal Starter Kit. Getting Started Guide Gemalto EHS6T-USB Terminal Starter Kit Getting Started Guide EHS6T-USB Terminal Starter Kit Contents Image is for a Kit A version. Other versions with different antenna may be available. This manual is

More information

Quick Start Guide Vodafone Mobile Connect USB Stick

Quick Start Guide Vodafone Mobile Connect USB Stick Quick Start Guide Vodafone Mobile Connect USB Stick Welcome 2 What can I do with it? 3 Set up your USB Stick 4 Run the software 5 Configuration 6 Make a connection 7 USB Stick status 7 Other settings 8

More information

VMware Horizon View Deployment

VMware Horizon View Deployment VMware Horizon View provides end users with access to their machines and applications through a unified workspace across multiple devices, locations, and connections. The Horizon View Connection Server

More information

EveryonePrint. Mobile Gateway 4.2. Installation Guide. EveryonePrint Mobile Gateway Installation Guide Page 1 of 30

EveryonePrint. Mobile Gateway 4.2. Installation Guide. EveryonePrint Mobile Gateway Installation Guide Page 1 of 30 EveryonePrint Mobile Gateway 4.2 Installation Guide EveryonePrint Mobile Gateway Installation Guide 2016.09.01 Page 1 of 30 1. Introduction... 3 1.1 Multiple networks (using Multicast Bonjour AirPrint)...

More information

User Guide for itrust over SMS and itrust over Wi-Fi Direct Installation and Use

User Guide for itrust over SMS and itrust over Wi-Fi Direct Installation and Use National Science Foundation CNS 10-16193 User Guide for itrust over SMS and itrust over Wi-Fi Direct Installation and Use University of California, Santa Barbara by Isaí Michel Lombera This documentation

More information

SCCM Plug-in User Guide. Version 3.0

SCCM Plug-in User Guide. Version 3.0 SCCM Plug-in User Guide Version 3.0 JAMF Software, LLC 2012 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide is accurate. JAMF Software 301 4th Ave

More information

2 Oracle WebLogic Overview Prerequisites Baseline Architecture...6

2 Oracle WebLogic Overview Prerequisites Baseline Architecture...6 Table of Contents 1 Oracle Access Manager Integration...1 1.1 Overview...1 1.2 Prerequisites...1 1.3 Deployment...1 1.4 Integration...1 1.5 Authentication Process...1 2 Oracle WebLogic...2 3 Overview...3

More information

Signing For Development/Debug

Signing For Development/Debug Signing Android Apps v1.0 By GoNorthWest 15 December 2011 If you are creating an Android application, Google requires that those applications are signed with a certificate. This signing process is significantly

More information

CSCI 201 Lab 1 Environment Setup

CSCI 201 Lab 1 Environment Setup CSCI 201 Lab 1 Environment Setup "The journey of a thousand miles begins with one step." - Lao Tzu Introduction This lab document will go over the steps to install and set up Eclipse, which is a Java integrated

More information

GM862-GPS-OT User Guide

GM862-GPS-OT User Guide Released - 1/03/2010 1 Contents: 1. Quick startup guide....... 2. Turning ON the modem....... 3. Turning OFF the modem.......... SMS commands syntax.........1 Configuration commands..2 GPS commands.....3

More information

Installing the DITA CMS Eclipse Client

Installing the DITA CMS Eclipse Client Installing the DITA CMS Eclipse Client WWW.IIASOFT.COM / DITACMS v. 4.1 / Copyright 2015 IIASOFT Technologies. All rights reserved. Last revised: March 03, 2015 Table of contents 3 Table of contents Packaging

More information

If you don t have the JDK, you will need to install it. 1. Go to

If you don t have the JDK, you will need to install it. 1. Go to Developing Android applications in Windows Below you will find information about the components needed for developing Android applications and other (optional) software needed to connect to the institution

More information

JBoss SOAP Web Services User Guide. Version: M5

JBoss SOAP Web Services User Guide. Version: M5 JBoss SOAP Web Services User Guide Version: 3.3.0.M5 1. JBoss SOAP Web Services Runtime and Tools support Overview... 1 1.1. Key Features of JBossWS... 1 2. Creating a Simple Web Service... 3 2.1. Generation...

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

Lab Guide. Barracuda NextGen Firewall F-Series Microsoft Azure - NGF0501

Lab Guide. Barracuda NextGen Firewall F-Series Microsoft Azure - NGF0501 Barracuda NextGen Firewall F-Series Microsoft Azure - NGF0501 Lab Guide Official training material for Barracuda certified trainings and Authorized Training Centers. Edition 2018 Revision 1.0 campus.barracuda.com

More information

NMS300 Network Management System Application

NMS300 Network Management System Application NMS300 Network Management System Application Quick Start Guide October 2013 202-11288-02 350 East Plumeria Drive San Jose, CA 95134 USA Support Thank you for purchasing this NETGEAR product. After installing

More information

Getting Started Install and Configuration ThingWorx Studio Trial Version 8.2.1

Getting Started Install and Configuration ThingWorx Studio Trial Version 8.2.1 Getting Started Install and Configuration ThingWorx Studio Trial Version 8.2.1 Copyright 2018 PTC Inc. and/or Its Subsidiary Companies. All Rights Reserved. User and training guides and related documentation

More information

JT4100P LTE Outdoor CPE Administrator User Manual V1.0

JT4100P LTE Outdoor CPE Administrator User Manual V1.0 JT4100P LTE Outdoor CPE Administrator User Manual V1.0 Page 1 PLEASE READ THESE SAFETY PRECAUTIONS! RF Energy Health Hazard The radio equipment described in this guide uses radio frequency transmitters.

More information

Develop Mobile Front Ends Using Mobile Application Framework A - 2

Develop Mobile Front Ends Using Mobile Application Framework A - 2 Develop Mobile Front Ends Using Mobile Application Framework A - 2 Develop Mobile Front Ends Using Mobile Application Framework A - 3 Develop Mobile Front Ends Using Mobile Application Framework A - 4

More information

VIEVU DOCKING STATION USER GUIDE

VIEVU DOCKING STATION USER GUIDE VIEVU DOCKING STATION USER GUIDE Contact Us If you need assistance or have any questions, please visit www.vievu.com/docking-station-support, contact us by phone at 888-285-4548 or email support@vievu.com.

More information

HOME AUTOMATION, INC. Model 93A00-1. Serial Server. User s Manual

HOME AUTOMATION, INC. Model 93A00-1. Serial Server. User s Manual HOME AUTOMATION, INC. Model 93A00-1 Serial Server User s Manual Document Number 93I00-1 Rev. A December, 2009 Introduction The 93A00-1 is a RS232/RS485 to TCP/IP converter integrated with a robust system

More information

AVL-900 Hardware Quick Installation Guide

AVL-900 Hardware Quick Installation Guide AVL-900 Quick Start Guide AVL-900 Hardware Quick Installation Guide 1. Precaution before Installation Check if all the parts are included. Prepare a SIM card for GSM communication. Use some other mobile

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

IoT Gateway PTC Inc. All Rights Reserved.

IoT Gateway PTC Inc. All Rights Reserved. 2017 PTC Inc. All Rights Reserved. 2 Table of Contents IoT Gateway 1 Table of Contents 2 IoT Gateway 6 Overview 6 Architectural Summary 6 External Dependencies 8 General Operation 9 Configure the Gateway

More information

Cisco Configuration Engine 3.5

Cisco Configuration Engine 3.5 Q&A Cisco Configuration Engine 3.5 Q. What is Cisco Configuration Engine? A. Cisco Configuration Engine is a highly scalable network management software application designed to facilitate rapid configuration

More information

Telstra Pre-Paid 4G My Pocket Wi-Fi Ultimate

Telstra Pre-Paid 4G My Pocket Wi-Fi Ultimate Telstra Pre-Paid 4G My Pocket Wi-Fi Ultimate User Manual August 2015 202-11387-02 350 East Plumeria Drive San Jose, CA 95134 USA Support Contact your Internet service provider for technical support. Compliance

More information

Troubleshooting AB Tutor Control Connection problems

Troubleshooting AB Tutor Control Connection problems Troubleshooting AB Tutor Control Connection problems Contents Troubleshooting AB Tutor Control Connection problems... 1 Overview... 2 Common Problems... 2 Failed to find a computer during a Scan ( Find

More information

Workspace ONE UEM Notification Service 2. VMware Workspace ONE UEM 1811

Workspace ONE UEM  Notification Service 2. VMware Workspace ONE UEM 1811 Workspace ONE UEM Email Notification Service 2 VMware Workspace ONE UEM 1811 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

AIMMS. The Network License Server AIMMS AIMMS 4

AIMMS. The Network License Server AIMMS AIMMS 4 AIMMS The Network License Server AIMMS AIMMS 4 January 11, 2018 Contents Contents ii 1 The Aimms Network License Server 1 1.1 Software requirements........................ 1 1.2 Installing and deploying

More information

Troubleshoot. Locate chip.log File. Procedure

Troubleshoot. Locate chip.log File. Procedure Locate chip.log File, page 1 Locate chip.dmp File, page 2 Reset Admin Password for Administration, page 2 Reset Root Password for Server, page 2 Audio and Video Issues, page 4 Call Links Redirect to Cisco

More information

Release Notes Tripolis Dialogue

Release Notes Tripolis Dialogue Release Notes Tripolis Dialogue Version 3.23 September 2016 1 TABLE OF CONTENTS Improvements and features 3 REST API API 3.0 3 TImezone support for campaigns 4 Campaign node details in preview 5 Changes

More information

Installing the DITA CMS Eclipse Client

Installing the DITA CMS Eclipse Client Installing the DITA CMS Eclipse Client WWW.IIASOFT.COM / DITACMS v. 3.4 / Copyright 2014 IIASOFT Technologies. All rights reserved. Last revised: December 10, 2014 Table of contents 3 Table of contents

More information

CRYPTOCard BlackBerry Token Implementation Guide

CRYPTOCard BlackBerry Token Implementation Guide CRYPTOCard BlackBerry Token Implementation Guide Copyright Copyright 2007 CRYPTOCard Corp. All Rights Reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval

More information

ThingWorx Manufacturing Apps Setup and Configuration Guide 8.1.0

ThingWorx Manufacturing Apps Setup and Configuration Guide 8.1.0 ThingWorx Manufacturing Apps Setup and Configuration Guide 8.1.0 Copyright 2017 PTC Inc. and/or Its Subsidiary Companies. All Rights Reserved. User and training guides and related documentation from PTC

More information

Table of Contents 1 AQL SMS Gateway How to Guide...1

Table of Contents 1 AQL SMS Gateway How to Guide...1 Table of Contents 1 AQL SMS Gateway How to Guide...1 2 AQL...2 3 Overview...3 4 Trial Account with 50 free SMS messages...4 5 Prerequisites...5 6 Configuring the AQL transport...6 6.1 Configuring one or

More information

GPS Tracker AT06 manual Ver

GPS Tracker AT06 manual Ver GPS Tracker AT06 manual Ver 1.0 20130924 Released 1 / 15 Content 1. Product Over View... 3 2. Features and Specification... 3 2.1 Features... 3 2.2 Specification... 4 2.3 GSM/GPS/Power Led identification...

More information

Kinex for Manufacturing Installation and Configuration Guide 1.1

Kinex for Manufacturing Installation and Configuration Guide 1.1 Kinex for Manufacturing Installation and Configuration Guide 1.1 Copyright 2017 PTC Inc. and/or Its Subsidiary Companies. All Rights Reserved. User and training guides and related documentation from PTC

More information

AP-ENBD User Manual V0.2

AP-ENBD User Manual V0.2 AP-ENBD User Manual V0.2 2015/12 Catolog Catolog... 2 1 Introduction... 1 1.1 Communication Structure... 1 1.2 Internal Principle... 2 2 Installation... 2 2.1 Connect to the Same Router (or Switch )...

More information

OneClick. Installation Guide. Document 5142

OneClick. Installation Guide. Document 5142 OneClick Installation Guide Document 5142 Notice This documentation (the "Documentation") and related computer software program (the "Software") (hereinafter collectively referred to as the "Product")

More information

VMware Notification Service v2.0 Installation and Configuration Guide Configure ENSv2 for cloud and on-premises deployments

VMware  Notification Service v2.0 Installation and Configuration Guide Configure ENSv2 for cloud and on-premises deployments VMware Email Notification Service v2.0 Installation and Configuration Guide Configure ENSv2 for cloud and on-premises deployments Workspace ONE UEM v9.4 Have documentation feedback? Submit a Documentation

More information

This Quick Start Guide covers basic installation and configuration of your new OM2200. For in-depth guidance, consult the OM2200 User Manual.

This Quick Start Guide covers basic installation and configuration of your new OM2200. For in-depth guidance, consult the OM2200 User Manual. 1. REGISTER This Quick Start Guide covers basic installation and configuration of your new OM2200. For in-depth guidance, consult the OM2200 User Manual. Register your product: https://opengear.com/product-registration

More information