United States Postal Service Web Tool Kit User s Guide

Size: px
Start display at page:

Download "United States Postal Service Web Tool Kit User s Guide"

Transcription

1 United States Postal Service Web Tool Kit User s Guide A Technical Guide to HTTP Connection DLL (Revised 2/22/00)

2 To HTTP Connection DLL Customers This release of the Web Tool Kit User s Guide for HTTP Connection DLL provides documentation and sample code created specifically for the USPS API implementation. It provides e-tailers with a thread-safe sockets interface to submit XML reuests and receive XML responses from the API server in a Windows NT environment. USPS Customer Commitment The United States Postal Service fully understands the importance of your need to provide information and service anytime day or night to your Internet and e-commerce customers. For that reason, the USPS is committed to providing 7 x 24 service from our API servers, 365 days a year. Technical Support. If you reuire technical support, contact the USPS Internet Customer Care Center (ICCC). This office is manned from 7:00AM to 11:00PM EST. icustomercare@usps.com Telephone: (7:00AM to 11:00PM EST) Thank you for helping the U.S. Postal Service provide new Internet services to our shipping customers. Internet Shipping Solutions Team U.S. Postal Service 475 L Enfant Plaza, SW Washington, DC Copyright 2000 by the United States Postal Service. All rights reserved. USPS Web Tool Kit User s Guide for HTTP Connection DLL i

3 Important Notice Regarding User ID and Password The user ID and password that you have received is only for the use of you or your company in accordance with the Terms and Conditions of Use to which you agreed during the registration process. This user ID and password is not to be shared with others outside your organization, nor is it to be packaged, distributed, or sold to any other person or entity. Please refer to the Terms and Conditions of Use Agreement for additional restrictions on the use of your user ID and password, as well as this document and the APIs contained herein. Warning: If the U.S. Postal Service discovers use of the same user ID and password from more than one web site, all users will be subject to immediate loss of access to the USPS server and termination of the licenses granted under the Terms and Conditions of Use. Attention Software Developers and Distributors The HTP Connection DLL documentation and sample code contained herein may not be reused and/or distributed to any other entity. Refer to your Licensing Agreement for the terms and conditions of use of this software. For more information regarding the USPS Web Tool Kit password and user ID policy, or for uestions regarding the distribution of documentation, send to Trademarks Microsoft, Visual Basic, Windows NT, 95, 98, and 2000 are registered trademarks of Microsoft Corporation. USPS Web Tool Kit User s Guide for HTTP Connection DLL ii

4 Table of Contents Introduction...4 Getting Started...4 Sample Active Server Page (ASP) Application...5 Prereuisites... 5 Running the Application... 5 Sample ASP Visual Basic (VB) Script Code... 5 httpgetresponse Routine...7 Parameters... 7 Return Values... 8 Remarks... 8 USPS Web Tool Kit User s Guide for HTTP Connection DLL iii

5 Introduction To make the Internet connection from an NT system, you have the option of using software from the USPS called the HTTP Connection DLL. This software, created specifically for the USPS API implementation, provides e-tailers with a thread-safe sockets interface to submit XML reuests and receive XML responses from the USPS Shipping API server. This document describes the USPS HTTP Connection DLL interface, which implements the http calls using a routine called httpgetresponse. This document provides a sample application using Active Server Page, but you can implement the function in a variety of other ways, including a Visual Basic program, a C program, your own COM wrapper, or others. This software is intended only for Microsoft Windows NT environments. It is not intended for Microsoft Windows 95, 98, or 2000 environments. A ZIP file has been provided that contains the following: httpclient.dll (HTTP client dynamic link library) a sample web implementation of the Tracking API that includes the following files: tracking.htm track_xml.asp glob_logo.gif ship_hd8.gif ship_submit_butt.gif httpcom.dll (This file is a Visual Basic COM wrapper dll. A Runtime library for VB v.6 is reuired for this dll.) The httpclient.dll contains a single routine, httpgetresponse, which provides a simple one-call interface to send an http GET or POST reuest and receive the response. See the httpgetresponse Routine section on page 7. Getting Started To install these components: 1. create a new folder on your disk to store the contents 2. unzip the contents into the newly created folder 3. put httpclient.dll and httpcom.dll in the system folder (c:\winnt\system32\) 4. register httpcom.dll with the following command: regsvr32 c:\winnt\system32\httpcom.dll USPS Web Tool Kit User s Guide for HTTP Connection DLL 4

6 Sample Active Server Page (ASP) Application The sample application presented in this section implements only the Tracking API using an ASP. When implementing other APIs with this sample code, substitute appropriate code (shown in bold in the sample below). Prereuisites Development is to take place in a Microsoft Windows NT 4.0 environment. IIS is already installed. Your web site is up and running. Microsoft s XML parser is installed. You have already read the appropriate USPS Web Tool Kit User s Guide for the API(s) you are implementing. You already know how to build XML reuests and how to process XML responses. You will implement calls to GetResponse from an ASP page. Running the Application In order to run the sample application: 1. Copy the following files to your web site home directory: tracking.htm track_xml.asp glob_logo.gif ship_hd8.gif ship_submit_butt.gif 2. Modify track_xml.asp and enter your Shipping API-supplied username and password, as well as the appropriate proxy server and port information for your web site. 3. From a browser, enter webservername/tracking.htm. 4. You should see a Track or Confirm Delivery page displayed. Enter a tracking number and click on the Submit button. You should see tracking summary and detail information displayed for that package ID. Sample ASP Visual Basic (VB) Script Code This sample code shows how to use the USPS HTTP Connection DLL to make the Internet connection. The sample code calls a COM wrapper function GetResponse (supplied in httpcom.dll). GetResponse calls the http client function httpgetresponse (supplied in httpclient.dll). USPS Web Tool Kit User s Guide for HTTP Connection DLL 5

7 Refer to the appropriate USPS Web Tool Kit User s Guide for the API(s) you are implementing for instructions on how to construct XML reuests and unpack XML responses. The following sample code is a replacement for the sample code described in the sections titled Make the Internet Connection and Send the XML Reuest for each API in the user s guide. To implement additional APIs, add the following lines to your ASP VB script to provide the WinSock connection to the Internet. You can include the URL_Encode function from the demo source code. set httpconn = server.createobject("httpcom.chttpcom") srvr = "XXXXX" You must modify the Server name port = 80 path = "/XXXXX" You must modify the Path name uery = "" msg = "API=Track&XML=" & URL_Encode(xmldoc.xml) You must modify the API name to use other APIs contenttype = "application/x-www-form-urlencoded" proxyserver = "your proxy server here" You must modify proxy server or leave blank if no proxy proxyport = 8080 Modify the proxy port, if necessary. Leave blank if no proxy. dim resp resp="" on error resume next respcode = httpconn.getresponse(srvr, port, path, uery, msg, contenttype, proxyserver, proxyport, resp) if err.number <> 0 then Response.Write("Error:<br><table cols=2 border=1><tr><td>err.number</td><td>" & _ err.number & "</td></tr><td>err.source</td><td>" & _ err.source & "</td></tr><td>err.description</td><td>" & _ err.description & "</td></tr></table>") Response.Write("</body></html>") Response.Write("HTML Error:<br>" & resp) response.end set xmldoc= nothing set httpconn = nothing end if set xmldoc= nothing set httpconn = nothing USPS Web Tool Kit User s Guide for HTTP Connection DLL 6

8 httpgetresponse Routine The httpgetresponse routine provides a simple one-call interface to send an http GET or POST reuest and receive the response. It implements a conditionally compliant http V1.1 client. Because all data is represented in memory, this routine is only suitable for relatively small transfers. int APIENTRY httpgetresponse ( LPCSTR server, // server portion of URL int port, // http port on server; default: 80 LPCSTR path, // path portion of URL; default: / LPCSTR uery, // uery portion of URL; optional LPCSTR msg, // body for http reuest; optional LPCSTR contenttype, // Content-Type of msg; optional LPCSTR proxyserver, // name of http proxy server; optional int proxyport, // port to use on proxy server; default: 80 BSTR *pcontent // receives body of response ) Parameters server: The host name of the http server where the desired resource is located. port: (optional) TCP port to use for http connection to the server. If 0, the default http port 80 is used. path: (optional) Path specification for the resource on the server. If null or empty, the default path string / is used. uery: (optional) Query portion of the URL (part after the? ). If supplied, the uery string will be escaped (encoded) by httpgetresponse according to RFC 2396 (Uniform Resource Identifiers). Therefore, the string as passed to httpgetresponse must be unescaped. msg: (optional) The body of the http message, if any. If supplied, the POST method is used for the http reuest. If null or empty, the GET method is used. The caller is responsible for any encoding or escaping reuired. The caller should specify an appropriate contenttype if needed to insure the body can be understood and decoded by the server. contenttype: (optional) http Content-Type of the body. Used only if msg is supplied. If msg is supplied but contenttype is not, then a default Content-Type of text/plain is used. proxyserver: (optional) Host name of the http proxy server to use, if any. If proxyserver is not supplied, the http connection is made directly to server. proxyport: (optional) TCP port to use for http connection to the proxyserver. If 0, the default http port 80 is used. pcontent: Pointer to a BSTR to receive the response to the reuest. The BSTR is allocated by httpgetresponse using the system routine SysAllocStringByteLen(). The caller must free the space later by calling SysFreeString(). This should be done even if httpgetresponse returns an error--the pcontent string may still contain useful information from an http error response. USPS Web Tool Kit User s Guide for HTTP Connection DLL 7

9 Return Values 0: Success. pcontent contains the body of the response, if any. Nnn. An http error response was received. The return value is the three-digit (decimal) http Status Code. 901: Local Error. The http response could not be parsed. 902: Local Error. The http response contained an invalid length indication. (Content-Length header differed from actual length of response body.) nnnnn. A WinSock error occurred. The return value is the five-digit (decimal) WinSock error code. Remarks httpgetresponse does not handle automatic redirection (3xx http Status Codes). Nor does it handle Successful codes (2xx) other than 200 OK and 203 Non-Authoritative Information. In these cases, an error is returned. However, the pcontent string still contains the body of the response message, if any. This information may indicate how to find the desired information in another location. USPS Web Tool Kit User s Guide for HTTP Connection DLL 8

Hypertext Transport Protocol

Hypertext Transport Protocol Hypertext Transport Protocol HTTP Hypertext Transport Protocol Language of the Web protocol used for communication between web browsers and web servers TCP port 80 HTTP - URLs URL Uniform Resource Locator

More information

Software License Agreement

Software License Agreement Software License Agreement DOC to RTF Converter For Win32/Win64 Version 10 2008-2018 ALL RIGHTS RESERVED BY SUB SYSTEMS, INC. 1221 New Meister Lane, #2712 Pflugerville, TX 78660 512-733-2525 Software License

More information

RMNet function calls. Parameters: Usage: Micro Focus. RM/COBOL Development System - RMNET

RMNet function calls. Parameters: Usage: Micro Focus. RM/COBOL Development System - RMNET RMNet function calls All the calls except NetGetError, NetCleanup, and NetFree return a which, when nonzero, the string Free the errorpointer with NetFree. HttpPost This function initiates an HTTP POST

More information

AutomationDirect.com Order Import Feature

AutomationDirect.com Order Import Feature AutomationDirect.com Order Import Feature This document describes the requirements to upload a CSV or XML format order file from your system into our AutomationDirect.com E-commerce system to create an

More information

Developer Resources: PIN2

Developer Resources: PIN2 Administrative Technology Services Technology and Data Services Developer Resources: PIN2 Contents Introduction... 2 Registering an Application... 2 Information Required for Registration... 3 Information

More information

The HTTP protocol. Fulvio Corno, Dario Bonino. 08/10/09 http 1

The HTTP protocol. Fulvio Corno, Dario Bonino. 08/10/09 http 1 The HTTP protocol Fulvio Corno, Dario Bonino 08/10/09 http 1 What is HTTP? HTTP stands for Hypertext Transfer Protocol It is the network protocol used to delivery virtually all data over the WWW: Images

More information

Natr ecommerce Services

Natr ecommerce Services General Overview The Nature s Sunshine ecommerce Services is a Web Service/API or collection of RESTful service calls. These service calls enable Nature s Sunshine distributors to get data from, and request

More information

Information Network Systems The application layer. Stephan Sigg

Information Network Systems The application layer. Stephan Sigg Information Network Systems The application layer Stephan Sigg Tokyo, November 15, 2012 Introduction 04.10.2012 Introduction to the internet 11.10.2012 The link layer 18.10.2012 The network layer 25.10.2012

More information

WebSmart Delivery Indicator. Reference Guide

WebSmart Delivery Indicator. Reference Guide WebSmart Delivery Indicator Reference Guide Copyright Companies, names, and data used in examples herein are fictitious unless otherwise noted. No part of this document may be reproduced or transmitted

More information

Composer Help. Web Request Common Block

Composer Help. Web Request Common Block Composer Help Web Request Common Block 7/4/2018 Web Request Common Block Contents 1 Web Request Common Block 1.1 Name Property 1.2 Block Notes Property 1.3 Exceptions Property 1.4 Request Method Property

More information

The Evolved Office Assistant

The Evolved Office Assistant The Evolved Office Assistant USER GUIDE TM 995 Old Eagle School Road Suite 315 Wayne, PA 19087 USA 610.964.8000 www.evolveip.net Release 1.0 Document Version 1 Copyright Notice Copyright 2008 Evolve IP,

More information

Address Information. USPS Web Tools Application Programming Interface User s Guide. Document Version 4.1 (8/28/2016)

Address Information. USPS Web Tools Application Programming Interface User s Guide. Document Version 4.1 (8/28/2016) Address Information USPS Web Tools Application Programming Interface User s Guide Document Version 4.1 (8/28/2016) Table of Contents 1.0 Introduction To Web Tools... 2 Before you get started:... 2 Important

More information

Site Server Installation and Configuration Guide (Dose Index Registry)

Site Server Installation and Configuration Guide (Dose Index Registry) Site Server Installation and Configuration Guide (Dose Index Registry) TRIAD Version 4.5 American College of Radiology 1891 Preston White Drive, Reston, VA 20191 2017 American College of Radiology. All

More information

AM3517 experimenter Kit. QuickStart Guide O

AM3517 experimenter Kit. QuickStart Guide  O AM3517 :: :: O M QuickStart Guide www.logicpd.comz O QuickStart Guide We fast forward the evolution of new products. Table of Contents 1 Introduction 4 1.1 Scope of Document 4 1.2 Zoom AM3517 Contents

More information

QW5 - Remote Access Data Server

QW5 - Remote Access Data Server Note: Requires a current build of the QW 5 product to be installed on server. QWDataServer is a Windows Service application that runs on a server with a static IP address. Once configured, remote users

More information

CGI Subroutines User's Guide

CGI Subroutines User's Guide FUJITSU Software NetCOBOL V11.0 CGI Subroutines User's Guide Windows B1WD-3361-01ENZ0(00) August 2015 Preface Purpose of this manual This manual describes how to create, execute, and debug COBOL programs

More information

CNIT 129S: Securing Web Applications. Ch 10: Attacking Back-End Components

CNIT 129S: Securing Web Applications. Ch 10: Attacking Back-End Components CNIT 129S: Securing Web Applications Ch 10: Attacking Back-End Components Injecting OS Commands Web server platforms often have APIs To access the filesystem, interface with other processes, and for network

More information

Orgnazition of This Part

Orgnazition of This Part Orgnazition of This Part Table of Contents Tutorial: Organization of This Part...1 Lesson 1: Starting JReport Enterprise Server and Viewing Reports...3 Introduction...3 Installing JReport Enterprise Server...3

More information

Investintech.com Inc. Software Development Kit: PDF-to-Excel Function Library User s Guide

Investintech.com Inc. Software Development Kit: PDF-to-Excel Function Library User s Guide Investintech.com Inc. Software Development Kit: PDF-to-Excel Function Library User s Guide May 25, 2007 http://www.investintech.com Copyright 2007 Investintech.com, Inc. All rights reserved Adobe is registered

More information

Investintech.com Inc. Software Development Kit: PDFtoXML Function Library User s Guide

Investintech.com Inc. Software Development Kit: PDFtoXML Function Library User s Guide Investintech.com Inc. Software Development Kit: PDFtoXML Function Library User s Guide January 15, 2007 http://www.investintech.com Copyright 2008 Investintech.com, Inc. All rights reserved Adobe is registered

More information

Installation Guide. Signagelink TM Android Edition.

Installation Guide. Signagelink TM Android Edition. Signagelink TM Android Edition Installation Guide www.signagelink.com This document, 2012, SignageLink.Com., is designed for the sole use of our clients and no portion of it may be copied, published, or

More information

ForeScout CounterACT. Configuration Guide. Version 3.4

ForeScout CounterACT. Configuration Guide. Version 3.4 ForeScout CounterACT Open Integration Module: Data Exchange Version 3.4 Table of Contents About the Data Exchange Module... 4 About Support for Dual Stack Environments... 4 Requirements... 4 CounterACT

More information

SMS Outbound. HTTP interface - v1.1

SMS Outbound. HTTP interface - v1.1 SMS Outbound HTTP interface - v1.1 Table of contents 1. Version history... 5 2. Conventions... 5 3. Introduction... 6 4. Application Programming Interface (API)... 7 5. Gateway connection... 9 5.1 Main

More information

20.5. urllib Open arbitrary resources by URL

20.5. urllib Open arbitrary resources by URL 1 of 9 01/25/2012 11:19 AM 20.5. urllib Open arbitrary resources by URL Note: The urllib module has been split into parts and renamed in Python 3.0 to urllib.request, urllib.parse, and urllib.error. The

More information

Task 2: TCP Communication

Task 2: TCP Communication UNIVERSITY OF TARTU, INSTITUTE OF COMPUTER SCIENCE Task 2: TCP Communication Hadachi&Lind October 12, 2017 Must Read: The task 2 should be done individually! You can submit your solution for task using

More information

DIGIPASS Authentication for Microsoft ISA 2006 Single Sign-On for Sharepoint 2007

DIGIPASS Authentication for Microsoft ISA 2006 Single Sign-On for Sharepoint 2007 DIGIPASS Authentication for Microsoft ISA 2006 Single Sign-On for Sharepoint 2007 With IDENTIKEY Server / Axsguard IDENTIFIER Integration Guidelines Disclaimer Disclaimer of Warranties and Limitations

More information

KC Web API Programmer Reference

KC Web API Programmer Reference KC Web API Programmer Reference API Version 1.0 Knowledge Center version 4.2 November 2012 Copyright Cognition Corporation, 2012 All Rights Reserved This document, as well as the software described in

More information

VISIONTRACKER FREQUENTLY ASKED QUESTIONS FAQ

VISIONTRACKER FREQUENTLY ASKED QUESTIONS FAQ VISIONTRACKER FREQUENTLY ASKED QUESTIONS FAQ 1. FREQUENTLY ASKED QUESTIONS 1.1. TABLE OF CONTENTS 1. Frequently Asked Questions... 1 1.1. Table of Contents... 1 1.2. How to Open or Search for a Saved Application...

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

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

V7350 Unified Messaging Suite User Guide

V7350 Unified Messaging Suite User Guide V7350 Unified Messaging Suite User Guide VCX V7000 IP Telephony Solution System Release 5.0 Part Number 900-0195-01 AA Published August 2004 http://www.3com.com/ 3Com Corporation 350 Campus Drive Marlborough,

More information

Application Level Protocols

Application Level Protocols Application Level Protocols 2 Application Level Protocols Applications handle different kinds of content e.g.. e-mail, web pages, voice Different types of content require different kinds of protocols Application

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

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

SAS Event Stream Processing 4.2: Security

SAS Event Stream Processing 4.2: Security SAS Event Stream Processing 4.2: Security Encryption on Sockets Overview to Enabling Encryption You can enable encryption on TCP/IP connections within an event stream processing engine. Specifically, you

More information

Access auto, commercial, home, and life solutions from a single entry point.

Access auto, commercial, home, and life solutions from a single entry point. User Guide LexisNexis Insurance Solutions Batch/Online Order Processing Access auto, commercial, home, and life solutions from a single entry point. INS0224 -- 14 March 2018 Insurance Solutions Support

More information

Software License Agreement

Software License Agreement Software License Agreement DOC to Image Converter For Win32/64 Version 11 2008-2019 ALL RIGHTS RESERVED BY SUB SYSTEMS, INC. 1221 New Meister Lane, #2712 Pflugerville, TX 78660 512-733-2525 Software License

More information

E POSTBUSINESS API Login-API Reference. Version 1.1

E POSTBUSINESS API Login-API Reference. Version 1.1 E POSTBUSINESS API Login-API Reference Imprint Software and documentation are protected by copyright and may not be copied, reproduced, stored, translated, or otherwise reproduced without the written approval

More information

Error Transferring File Server Returned Http Response Code 407 For Url

Error Transferring File Server Returned Http Response Code 407 For Url Error Transferring File Server Returned Http Response Code 407 For Url HTTP 1.1 has a number of response codes which are sent from the server to inform Code 200 specifically means that a URL/URI points

More information

Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Before installing and using the product, please review the readme files,

More information

Cisco Expressway Authenticating Accounts Using LDAP

Cisco Expressway Authenticating Accounts Using LDAP Cisco Expressway Authenticating Accounts Using LDAP Deployment Guide Cisco Expressway X8.5 December 2014 Contents Introduction 3 Process summary 3 LDAP accessible authentication server configuration 4

More information

Internet Architecture. Web Programming - 2 (Ref: Chapter 2) IP Software. IP Addressing. TCP/IP Basics. Client Server Basics. URL and MIME Types HTTP

Internet Architecture. Web Programming - 2 (Ref: Chapter 2) IP Software. IP Addressing. TCP/IP Basics. Client Server Basics. URL and MIME Types HTTP Web Programming - 2 (Ref: Chapter 2) TCP/IP Basics Internet Architecture Client Server Basics URL and MIME Types HTTP Routers interconnect the network TCP/IP software provides illusion of a single network

More information

eni e-business Services

eni e-business Services eni e-business Services Online Registration and Allocation Auction Bidder Manual_ North/West t & East Europe Auction Winter-5 5 (for Subletting and Swap Products) (NW&E-E E Auction Winter-5 5 (for Subletting

More information

Elevate Web Builder Modules Manual

Elevate Web Builder Modules Manual Table of Contents Elevate Web Builder Modules Manual Table Of Contents Chapter 1 - Getting Started 1 1.1 Creating a Module 1 1.2 Handling Requests 3 1.3 Custom DataSet Modules 8 Chapter 2 - Component Reference

More information

Prophet 21 Middleware Installation Guide. version 12.16

Prophet 21 Middleware Installation Guide. version 12.16 version 12.16 Disclaimer This document is for informational purposes only and is subject to change without notice. This document and its contents, including the viewpoints, dates and functional content

More information

Release Notes for Cisco Smart Care Services Version 1.4.2

Release Notes for Cisco Smart Care Services Version 1.4.2 Release s for Cisco Smart Care Services Version 1.4.2 February 2010 Contents This document contains the following: Introduction New Features in this Release Version Supported Smart Care Appliance Migration

More information

Premium Pro Enterprise Local Installation Guide for Database Installation on a desktop PC (Cloudscape)

Premium Pro Enterprise Local Installation Guide for Database Installation on a desktop PC (Cloudscape) Premium Pro Enterprise Local Installation Guide for Database Installation on a desktop PC (Cloudscape) This guide is to be used if you intend on installing enterprise as a stand alone application on one

More information

Installation guide for Choic Multi User Edition

Installation guide for Choic Multi User Edition Installation guide for ChoiceMail Multi User Edition March, 2004 Version 2.1 Copyright DigiPortal Software Inc., 2002 2004 All rights reserved ChoiceMail Multi User Installation Guide 1. Go to the URL

More information

Investintech.com Inc. Software Development Kit: PDFtoImage Function Library User s Guide

Investintech.com Inc. Software Development Kit: PDFtoImage Function Library User s Guide Investintech.com Inc. Software Development Kit: PDFtoImage Function Library User s Guide Novemebr 6, 2007 http://www.investintech.com Copyright 2007 Investintech.com, Inc. All rights reserved Adobe is

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 7.51 HP SiteScope Integration Guide Document Release Date: August 2009 Software Release Date: August 2009 Legal Notices Warranty The only warranties

More information

Web Applications Installation. version

Web Applications Installation. version version 2017.1 Disclaimer This document is for informational purposes only and is subject to change without notice. This document and its contents, including the viewpoints, dates and functional content

More information

Threat Landscape 2017

Threat Landscape 2017 Pattern Recognition and Applications Lab WEB Security Giorgio Giacinto giacinto@diee.unica.it Computer Security 2018 Department of Electrical and Electronic Engineering University of Cagliari, Italy Threat

More information

FUJITSU Cloud Service S5. Introduction Guide. Ver. 1.3 FUJITSU AMERICA, INC.

FUJITSU Cloud Service S5. Introduction Guide. Ver. 1.3 FUJITSU AMERICA, INC. FUJITSU Cloud Service S5 Introduction Guide Ver. 1.3 FUJITSU AMERICA, INC. 1 FUJITSU Cloud Service S5 Introduction Guide Ver. 1.3 Date of publish: September, 2011 All Rights Reserved, Copyright FUJITSU

More information

Managing System Administration Settings

Managing System Administration Settings This chapter contains the following sections: Setting up the Outgoing Mail Server, page 2 Working with Email Templates, page 2 Configuring System Parameters (Optional), page 5 Updating the License, page

More information

Cisco TelePresence Authenticating Cisco VCS Accounts Using LDAP

Cisco TelePresence Authenticating Cisco VCS Accounts Using LDAP Cisco TelePresence Authenticating Cisco VCS Accounts Using LDAP Deployment Guide Cisco VCS X8.2 D14465.07 June 2014 Contents Introduction 3 Process summary 3 LDAP accessible authentication server configuration

More information

Crystal Enterprise. Overview. Contents. Web Server Overview - Internet Information System (IIS)

Crystal Enterprise. Overview. Contents. Web Server Overview - Internet Information System (IIS) Overview Contents This document provides an overview to web server technology particularly Microsoft s Internet Information Server (IIS) and its relationship with. Although this article has been written

More information

Six Step Implementation Guide. January 2007

Six Step Implementation Guide. January 2007 Web Integrated Solutions Six Step Implementation Guide January 2007 Confidential and Proprietary The information contained in this Six Step Implementation Guide is confidential and proprietary to FedEx

More information

Top Producer for BlackBerry Quick Setup

Top Producer for BlackBerry Quick Setup Top Producer for BlackBerry Quick Setup Top Producer Systems Phone Number: 1-800-830-8300 Email: support@topproducer.com Website: www.topproducer.com Trademarks Information in this document is subject

More information

FLX UC 1000/1500 Registering with Shoretel ShoreGear

FLX UC 1000/1500 Registering with Shoretel ShoreGear Technical Note FLX UC 1000/1500 Registering with Shoretel ShoreGear Date: January 15, 2016 This technical note gives a detailed description on how to register a Revolabs FLX UC 1000/1500 IP & USB conference

More information

ClickToCall SkypeTest Documentation

ClickToCall SkypeTest Documentation ClickToCall SkypeTest Documentation Release 0.0.1 Andrea Mucci August 04, 2015 Contents 1 Requirements 3 2 Installation 5 3 Database Installation 7 4 Usage 9 5 Contents 11 5.1 REST API................................................

More information

MapMarker for Windows Installation Guide

MapMarker for Windows Installation Guide MapMarker for Windows 10.0 Installation Guide Information in this document is subject to change without notice and does not represent a commitment on the part of the vendor or its representatives. No part

More information

IPConfigure Embedded LPR API

IPConfigure Embedded LPR API IPConfigure Embedded LPR API Version 1.3.6 February 23, 2016 1 Camera Configuration Parameters IPConfigure Embedded LPR uses several user-adjustable configuration parameters which are exposed by Axis Communication

More information

OMAP-L138 experimenter Kit. QuickStart Guide O

OMAP-L138 experimenter Kit. QuickStart Guide   O OMAP-L138 :: :: O M QuickStart Guide www.logicpd.comz O QuickStart Guide We fast forward the evolution of new products. Table of Contents 1 Introduction 4 1.1 Scope of Document 4 1.2 Zoom OMAP-L138 Contents

More information

VISIONTRACKER FREQUENTLY ASKED QUESTIONS FAQ

VISIONTRACKER FREQUENTLY ASKED QUESTIONS FAQ VISIONTRACKER FREQUENTLY ASKED QUESTIONS FAQ FREQUENTLY ASKED QUESTIONS 1.1. TABLE OF CONTENTS 1. Frequently Asked Questions... 1 1.1. Table of Contents... 1 1.2. How to View or Open a Saved Application...

More information

School Installation Guide ELLIS Academic 5.2.6

School Installation Guide ELLIS Academic 5.2.6 ELLIS Academic 5.2.6 This document was last updated on 2/16/11. or one or more of its direct or indirect affiliates. All rights reserved. ELLIS is a registered trademark, in the U.S. and/or other countries,

More information

Customer Release Notes for Version 3.1 Released June 2008

Customer Release Notes for Version 3.1 Released June 2008 Customer Release Notes for Version 3.1 Released June 2008 Contents Introduction Software Download MC9090-G RFID Software Upgrade Firmware Upgrade API Updates Open Issues Questions Disclaimer Introduction

More information

WA2018 Programming REST Web Services with JAX-RS WebLogic 12c / Eclipse. Student Labs. Web Age Solutions Inc.

WA2018 Programming REST Web Services with JAX-RS WebLogic 12c / Eclipse. Student Labs. Web Age Solutions Inc. WA2018 Programming REST Web Services with JAX-RS 1.1 - WebLogic 12c / Eclipse Student Labs Web Age Solutions Inc. Copyright 2012 Web Age Solutions Inc. 1 Table of Contents Lab 1 - Configure the Development

More information

2. Introduction to Internet Applications

2. Introduction to Internet Applications 2. Introduction to Internet Applications 1. Representation and Transfer 2. Web Protocols 3. Some Other Application Layer Protocols 4. Uniform Resource Identifiers (URIs) 5. Uniform Resource Locators (URLs)

More information

BCM 4.0 Personal Call Manager User Guide. BCM 4.0 Business Communications Manager

BCM 4.0 Personal Call Manager User Guide. BCM 4.0 Business Communications Manager BCM 4.0 Personal Call Manager User Guide BCM 4.0 Business Communications Manager Document Status: Beta Document Version: 02 Part Code: N0027256 Date: January 2006 Copyright Nortel Networks Limited 2006

More information

Informatica Cloud Spring REST API Connector Guide

Informatica Cloud Spring REST API Connector Guide Informatica Cloud Spring 2017 REST API Connector Guide Informatica Cloud REST API Connector Guide Spring 2017 December 2017 Copyright Informatica LLC 2016, 2018 This software and documentation are provided

More information

COMPUTER NETWORKS AND COMMUNICATION PROTOCOLS. Web Access: HTTP Mehmet KORKMAZ

COMPUTER NETWORKS AND COMMUNICATION PROTOCOLS. Web Access: HTTP Mehmet KORKMAZ COMPUTER NETWORKS AND COMMUNICATION PROTOCOLS Web Access: HTTP 16501018 Mehmet KORKMAZ World Wide Web What is WWW? WWW = World Wide Web = Web!= Internet Internet is a global system of interconnected computer

More information

EMC ApplicationXtender Web Access.NET eroom Integration 6.0

EMC ApplicationXtender Web Access.NET eroom Integration 6.0 EMC ApplicationXtender Web Access.NET eroom Integration 6.0 Administrator s Guide 300-008-282 REV A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright

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

WEB TECHNOLOGIES CHAPTER 1

WEB TECHNOLOGIES CHAPTER 1 WEB TECHNOLOGIES CHAPTER 1 WEB ESSENTIALS: CLIENTS, SERVERS, AND COMMUNICATION Modified by Ahmed Sallam Based on original slides by Jeffrey C. Jackson THE INTERNET Technical origin: ARPANET (late 1960

More information

EMC Ionix Network Configuration Manager Version 4.1.1

EMC Ionix Network Configuration Manager Version 4.1.1 EMC Ionix Network Configuration Manager Version 4.1.1 RSA Token Service Installation Guide 300-013-088 REVA01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com

More information

Lecture 7b: HTTP. Feb. 24, Internet and Intranet Protocols and Applications

Lecture 7b: HTTP. Feb. 24, Internet and Intranet Protocols and Applications Internet and Intranet Protocols and Applications Lecture 7b: HTTP Feb. 24, 2004 Arthur Goldberg Computer Science Department New York University artg@cs.nyu.edu WWW - HTTP/1.1 Web s application layer protocol

More information

Site Server Installation and Configuration Guide (Dose Index Registry)

Site Server Installation and Configuration Guide (Dose Index Registry) Site Server Installation and Configuration Guide (Dose Index Registry) TRIAD Version 4.5.1 American College of Radiology 1891 Preston White Drive, Reston, VA 20191 2018 American College of Radiology. All

More information

1 Installing the integration server

1 Installing the integration server 1 Installing the integration server This document contains information about how to install the Rational DOORS for HP Quality Center Interface integration server. Installing the integration server also

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

Oracle Workflow Server Installation Notes

Oracle Workflow Server Installation Notes Oracle Workflow Server Installation Notes (Release 2.6.1) Purpose These notes explain how to install or upgrade the Oracle Workflow server. Attention: Do not install the Oracle Workflow server in an Oracle

More information

KingStar Motion 2.1 SDK and Runtime Installation Guide

KingStar Motion 2.1 SDK and Runtime Installation Guide KingStar Motion 2.1 SDK and Runtime Installation Guide This guide describes system requirements and provides installation and setup instructions for the KingStar Motion SDK and Runtime. KS-DOC-X64-0003-R6

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

Software License Agreement

Software License Agreement Software License Agreement HTML to Image Converter For Win32/64 Version 10 2018 ALL RIGHTS RESERVED BY SUB SYSTEMS, INC. 1221 New Meister Lane, #2712 Pflugerville, TX 78660 512-733-2525 Software License

More information

NuXGate. Version 2.0. For WinNT/Win2000/Win XP/Win2003. Release Date 18 August User s Manual MobileXdge Inc

NuXGate. Version 2.0. For WinNT/Win2000/Win XP/Win2003. Release Date 18 August User s Manual MobileXdge Inc NuXGate Version 2.0 For WinNT/Win2000/Win XP/Win2003 Release Date 18 August 2009 User s Manual 2009 MobileXdge Inc P1 End User License Agreement (EULA) IMPORTANT-READ CAREFULLY: This MobileXdge End-User

More information

DIGIPASS Authentication for NETASQ

DIGIPASS Authentication for NETASQ DIGIPASS Authentication for NETASQ With IDENTIKEY Server 2010 Integration VASCO Data Security. Guideline All rights reserved. Page 1 of 19 Disclaimer Disclaimer of Warranties and Limitations of Liabilities

More information

Sage Construction Anywhere Connector

Sage Construction Anywhere Connector Sage Construction Anywhere Connector Release Notes Sage 300 Construction and Real Estate Integration Builds 2.0 and 2.1 10/29/2013 Notice This is a publication of Sage Software, Inc. 2013 Sage Software,

More information

Overview of Professional Quest Technologies

Overview of Professional Quest Technologies Overview of Professional Quest Technologies Professional Quest Web Architecture Professional Quest's utilizes a number of industry standard components in its web architecture. Server Web Pages For the

More information

ForeScout Open Integration Module: Data Exchange Plugin

ForeScout Open Integration Module: Data Exchange Plugin ForeScout Open Integration Module: Data Exchange Plugin Version 3.2.0 Table of Contents About the Data Exchange Plugin... 4 Requirements... 4 CounterACT Software Requirements... 4 Connectivity Requirements...

More information

Integrating with ClearPass HTTP APIs

Integrating with ClearPass HTTP APIs Integrating with ClearPass HTTP APIs HTTP based APIs The world of APIs is full concepts that are not immediately obvious to those of us without software development backgrounds and terms like REST, RPC,

More information

Computer Networks. Wenzhong Li. Nanjing University

Computer Networks. Wenzhong Li. Nanjing University Computer Networks Wenzhong Li Nanjing University 1 Chapter 8. Internet Applications Internet Applications Overview Domain Name Service (DNS) Electronic Mail File Transfer Protocol (FTP) WWW and HTTP Content

More information

OpenManage Integration for VMware vcenter Quick Install Guide for vsphere Client, Version 2.3

OpenManage Integration for VMware vcenter Quick Install Guide for vsphere Client, Version 2.3 OpenManage Integration for VMware vcenter Quick Install Guide for vsphere Client, Version 2.3 Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of

More information

Release Date September 30, Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60654, USA

Release Date September 30, Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60654, USA Adeptia Suite 5.0 Installation Guide Release Date September 30, 2009 Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60654, USA Copyright Copyright 2000-2009 Adeptia, Inc. All rights reserved.

More information

HandHeld Dolphin 7400 Client User Guide. Version 4.0. Revised

HandHeld Dolphin 7400 Client User Guide. Version 4.0. Revised HandHeld Dolphin 7400 Client User Guide Version 4.0 Revised 07-17-01 Copyright 2001 by Wavelink Corporation All rights reserved. Wavelink Corporation 11332 NE 122nd Way Suite 300 Kirkland, Washington 98034

More information

Installation Instructions

Installation Instructions Installation Instructions Oracle Health Sciences Argus Mart Data and Argus Signal Management for Use with Empirica Signal 8.1 Part number: E70267-01 Copyright 2002, 2016, Oracle and/or its affiliates.

More information

Introduction to Crestron Fusion Software API Enterprise Management Platform

Introduction to Crestron Fusion Software API Enterprise Management Platform Introduction to Crestron Fusion Software API Enterprise Management Platform Getting Started Crestron Electronics, Inc. Crestron product development software is licensed to Crestron dealers and Crestron

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

Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Before installing and using the product, please review the readme files,

More information

Investintech.com Inc. Software Development Kit: ImagetoPDF Function Library User s Guide

Investintech.com Inc. Software Development Kit: ImagetoPDF Function Library User s Guide Investintech.com Inc. Software Development Kit: ImagetoPDF Function Library User s Guide December 31, 2007 http://www.investintech.com Copyright 2007 Investintech.com, Inc. All rights reserved Adobe is

More information

LABEL ARCHIVE Administrator s Guide

LABEL ARCHIVE Administrator s Guide LABEL ARCHIVE Administrator s Guide DOC-LAS2015_25/05/2015 The information in this manual is not binding and may be modified without prior notice. Supply of the software described in this manual is subject

More information

ProxWriter. User s Manual. VT TECH Corp E. Industrial St., #1G Simi Valley, CA Phone: (805) Fax: (805) Web site:

ProxWriter. User s Manual. VT TECH Corp E. Industrial St., #1G Simi Valley, CA Phone: (805) Fax: (805) Web site: ProxWriter User s Manual VT TECH Corp. 1645 E. Industrial St., #1G Simi Valley, CA 93063 Phone: (805) 520-3159 Fax: (805) 520-9280 Web site: July 8, 2000 ProxWriter User s Manual 1.0 Page 1 of 1 Table

More information