API documentation - 1 -
|
|
|
- Branden Hicks
- 10 years ago
- Views:
Transcription
1 API documentation - 1 -
2 Table of Contents 1. Introduction 1.1. What is an API 2. API Functions 2.1. Purge list of files Description Implementation 2.2. Purge of whole cache (all files on all edge servers) Description Implementation 2.3. Prefetch file to edge servers local cache Description Implementation 2.4. Create CDN resource Description Implementation 2.5. Delete CDN resource Description Implementation 2.6. Edit CDN resource Description Implementation 2.7. Fetch statistics data Description Implementation 2.8. Get CDN details Description Implementation - 2 -
3 1. Introduction 1.1. What is an API API is application programming interface and it allows to communicate with CDN77 service through JSON (JavaScript Object Notation). CDN77 API allows you to do various commands and tasks, like creating new CDN resource, editation of CDN resource, purging edge servers local cache and other tasks needed when using CDN77 from external script or server Supported API functions Supported CDN77 s API functions are: Purge of whole edge servers local cache Purge list of file(s) Prefetch content to edge servers local cache CDN resource editation creation details removal Traffic statistics - 3 -
4 2. API Functions 2.1. Purge list of files Description Purge API request is used in case, the invalidation of some files in edge servers local cache is needed. (for instance: when refresh of files in the CDN to new version is needed). It takes from 2 to 10 minutes, until the request for file removal is processed Implementation Following HTTP POST parameters is accepted on the following gateway: POST parameter name Parameter description Example of usage id login ID of CDN resource, on which the content will be purged Login to CDN77 client section 1234 [email protected] passwd API password 8vL4BpXbRqgPTKA0hV36dWjMTNfIk ZK8 json Contains paths of files to be purged Single file: {"purge_paths":"path/to/your/file.jpg"} More files: {"purge_paths":"/path/to/file1.png\n/path/ to/file2.png\n/path/to/otherfile.png"} All parameters are required. Additional notes: - 4 -
5 id of CDN resource can be found in the CDN list: API password can be found in the API section, which can be found in the client section: Limitations of purge API method allowed requests per second: 1 allowed requests per day: 1000 Example of usage (via Linux s curl utility): Purging of single file: curl --data "id=id of cdn&[email protected]&passwd=your api password&json={'purge_paths':'/path/to/file.jpg'}" client.cdn77.com/api/purge Purging of more files at once: curl --data "id=id of cdn&[email protected]&passwd=your api password&json={'purge_paths':'/path/to/file.jpg\n/path/to/ file2.jpg\n/path/to/file3.jpg''}" It returns status : ok JSON response in success and any other response or status is failure. Example of successful purge API response: {"status":"ok","description":"purge request successful"} string(19) "{'purge_paths':'/'}" - 5 -
6 2.2. Purge of whole cache (all files on all edge servers) Description Purge of whole cache API request is used in case, the invalidation of all files in edge servers local cache is needed. (for instance: when refresh of all files in the CDN to new version is needed). It takes from 2 to 10 minutes, until the request for file removal is processed Implementation Following HTTP POST parameters is accepted on the following gateway: POST parameter name Parameter description Example of usage id login ID of CDN resource, on which the content will be purged Login to CDN77 client section 1234 [email protected] passwd API password 8vL4BpXbRqgPTKA0hV36dWjMTNfIkZK8 All parameters are required
7 Additional notes: id of CDN resource can be found in the CDN list: API password can be found in the API section, which can be found in the client section: Limitations of purge all API method allowed requests per second: 1 allowed requests per day: 1000 Example of usage (via Linux s curl utility): curl --data "id=id of cdn&[email protected]&passwd=your api password" It returns status : ok JSON response in success and any other response or status is failure. Example of successful purge all API response: {"status":"ok","description":"purge request successful"} - 7 -
8 2.3. Prefetch file to edge servers local cache Description Prefetch of desired file or files to edge servers local cache is used in case, the predownload of all desired files from origin to edge servers cache is needed. (for instance: when new files are uploaded and it is needed to upload them to edge servers local cache before presenting them to public). There is one advantage of doing this: The CDN cache can be pre-filled, so it will be present there, when presented to public. This practically means, that even the first request from visitor to this new file, will be served from edge servers local cache and so it will be faster, than in case the file is not in the edge servers local cache yet and has to be downloaded from origin at first. It takes from 2 to 10 minutes, until the request for file removal is processed. The whole time of upload to edge servers depends on the connectivity (bandwidth) between the origin and edge server (and on the load on the line of course; in example: it will be faster if there is 1 Gbps network on the origin and on the edge server than in case of 100 Mbps on origin or edge server) Implementation Following HTTP POST parameters is accepted on the following gateway: POST parameter name Parameter description Example of usage - 8 -
9 id login ID of CDN resource, on which the content will be purged Login to CDN77 client section 1234 passwd API password 8vL4BpXbRqgPTKA0hV36dWjMTNfIkZK8 json Contains paths of files to be purged Single file: {"prefetch_paths":"path/to/your/file.jpg"} More files: {"prefetch_paths":"/path/to/file1.png\n/path/to/file2.png\n/path/to/ otherfile.png"} All parameters are required. Additional notes: id of CDN resource can be found in the CDN list: API password can be found in the API section, which can be found in the client section: Limitations of prefetch API method allowed requests per second: 1 allowed requests per day: 1000 Example of usage (via Linux s curl utility): Prefetching of single file: curl --data "id=id of cdn&[email protected]&passwd=your api password&json={'prefetch_paths':'/path/to/file.jpg'}" client.cdn77.com/api/prefetch Prefetching of more files at once: - 9 -
10 curl --data "id=id of api password&json={'prefetch_paths':'/path/to/file.jpg\n/path/to/ file2.jpg\n/path/to/file3.jpg''}" It returns status : ok JSON response in success and any other response or status is failure. Example of successful prefetch API response: {"status":"ok","description":"prefetch request successful"} 2.4. Create CDN resource Description New CDN resource can be created via API just like from the client section. Origin domain, cname and SSL support can be chosen in the creation Implementation Following HTTP POST parameters is accepted on the following gateway: POST parameter name Parameter description Example of usage origin_url cname Origin domain, from which the content will be pulled CNAME for your CDN resource (without protocol specification) cdn.yourwebsite.com (without protocol specification)
11 ssl Type of CDN resource values: 0 = SSL disabled (custom CNAME could be used) 1 = SSL enabled (CNAME must end with r.worldssl.net ) method login Amount of data returned in response Login to CDN77 client section values: verbose = more data will be returned in response without value (not present/not set or null) = simple response without CDN resource ID etc. [email protected] passwd API password 8vL4BpXbRqgPTKA0hV36dWjMTNfIkZK8 All parameters are required, except for method parameter, which is optional. Additional notes: id of CDN resource can be found in the CDN list: API password can be found in the API section, which can be found in the client section: Limitations of prefetch API method allowed requests per second: 1 allowed requests per day: 100 Example of usage (via Linux s curl utility): Creating CDN resource without SSL support: curl --data "[email protected]&passwd=your api password&origin_url= It returns status : ok JSON response in success and any other response or status is failure
12 Example of successful create CDN API response: {"status":"ok","description":"cdn cdn.yourwebsite.com created"} Creating CDN resource without SSL support with method present and with value verbose : curl --data "[email protected]&passwd=your api password&origin_url= It returns status : ok JSON response in success and any other response or status ( status : error ) is failure. Example of successful create CDN API response: {"status":"ok","description":"cdn cdn.yourwebsite.com created","id":1234,"cdnurl":" r.cdn77.net","cname":"cdn.yourwebsite.com"} 2.5. Delete CDN resource Description Any CDN resource can be deleted via API (via its ID) just like from the client section Implementation Following HTTP POST parameters is accepted on the following gateway: POST parameter name Parameter description Example of usage
13 id login ID of CDN resource, on which the Login to CDN77 client section 1234 passwd API password 8vL4BpXbRqgPTKA0hV36dWjMTNfIkZK8 All parameters are required. Additional notes: id of CDN resource can be found in the CDN list: API password can be found in the API section, which can be found in the client section: Limitations of prefetch API method allowed requests per second: 1 allowed requests per day: 100 Example of usage (via Linux s curl utility): Deleting CDN resource with ID 1234: curl --data "id=1234&[email protected]&passwd=your api password" It returns status : ok JSON response in success and any other response or status is failure. Example of successful delete CDN API response: {"status":"ok","description":"cdn id 1234 was deleted"}
14 2.6. Edit CDN resource Description Any CDN resource can be edited via API (via its ID). Not all settings from client section are available via API Implementation Following HTTP POST parameters is accepted on the following gateway: POST parameter name Parameter description Example of usage id login ID of CDN resource, on which the Login to CDN77 client section 1234 passwd API password 8vL4BpXbRqgPTKA0hV36dWjMTNfIkZK8 origin_url cname Origin URL from which the content will be pulled (source of files for CDN) CNAME for your CDN resource cdn.yourdomain.com cache_expiry Cache Expiry value (cache TTL) (see additional notes below this table, to see all allowed values)
15 url_signing_on Switch token authentication setting values: 1 = url signing enabled 0 = url signing disabled url_signing_key Set token authentication key (password) rkybztaapfhsv5nd (it must be 16 characters long) All parameters are optional, except for id, login and password, which are required. Additional notes: id of CDN resource can be found in the CDN list: API password can be found in the API section, which can be found in the client section: Limitations of prefetch API method allowed requests per second: 1 allowed requests per day: 1000 allowed cache_expiry values: 10, 30, 60, 240, 720, 1440, 2880, 4320, 5760, 7200, 8640, 10080, 11520, 12960, 14400, 15840, cache_expiry values are in minutes cache_expiry value can be overridden by setting custom Expires and Cache-Control headers on the origin url_signing_key must be equal 16 characters Example of usage (via Linux s curl utility): Editing CDN resource with ID 1234: curl --data "[email protected]&passwd=your api password&id=1234&origin_url= _key=abcdefghij123456"
16 It returns status : ok JSON response in success and any other response or status is failure. Example of successful edit CDN API response: {"status":"ok","description":"cdn id 1234 updated;origin_url updated to updated to cdn.yourwebsite.com;cache_expiry updated to 14400;url_signing_key updated to abcdefghij123456;url_signing_on updated to 1"} 2.7. Fetch statistics data Description purposes. Traffic statistics data can be fetched via API for any further processing or archiving Implementation Following HTTP POST parameters is accepted on the following gateway: POST parameter name Parameter description Example of usage id login ID of CDN resource, on which the Login to CDN77 client section 1234 [email protected] passwd API password 8vL4BpXbRqgPTKA0hV36dWjMTNfIkZK8-16 -
17 All parameters are required. Additional notes: id of CDN resource can be found in the CDN list: if id parameter set to all then traffic statistics for all CDN resources will be returned API password can be found in the API section, which can be found in the client section: Limitations of prefetch API method allowed requests per second: 1 allowed requests per day: 1000 Example of usage (via Linux s curl utility): Getting traffic statistics for CDN resource with ID 1234: curl --data "id=1234&[email protected]&passwd=your api password" It returns status : ok JSON response in success and any other response or status is failure. Example of successful CDN traffic statistics API response: {"24h":" MB","48h":" MB","30d":"14.67 GB","02m":"0 Bytes","01m":"35.56 GB","00m":"14.67 GB"}
18 Getting traffic statistics for all CDN resources: curl --data api password" It returns status : ok JSON response in success and any other response or status is failure. Example of successful CDN traffic statistics API response: {"24h":" MB","48h":" MB","30d":"36.61 GB","02m":" KB","01m":" GB","00m":"29.05 GB"} 2.8. Get CDN details Description Get details (of settings) of CDN resource Implementation Following HTTP POST parameters is accepted on the following gateway: POST parameter name Parameter description Example of usage id login ID of CDN resource, on which the Login to CDN77 client section 1234 [email protected] passwd API password 8vL4BpXbRqgPTKA0hV36dWjMTNfIkZK8-18 -
19 All parameters are required, except for id parameter
20 Additional notes: id of CDN resource can be found in the CDN list: if id parameter is missing, details for all CDN resources will be shown (this could take a while) API password can be found in the API section, which can be found in the client section: Limitations of prefetch API method allowed requests per second: 1 allowed requests per day: 1000 Getting details of settings for CDN resource with ID 1234: curl --data "id=1234&[email protected]&passwd=your api password" It returns status : ok JSON response in success and any other response or status is failure. Example of successful CDN traffic statistics API response: {"status":"ok","description":[{"id":1234,"origin_url":" et","cache_expiry":2880,"url_signing_on":false,"url_signing_key":""}]} Getting details of settings for all CDN resources: curl --data "[email protected]&passwd=your api password"
21 It returns status : ok JSON response in success and any other response or status is failure. Example of successful CDN traffic statistics API response: {"status":"ok","description":[{"id":4004,"origin_url":" "cdn_url":" r.cdn77.net","cache_expiry":14400,"url_signing_on":true,"url_signing_key":"abcd5mn6ipzpjmxd"}, {"id":3308,"origin_url":" "cache_expiry":2160,"url_signing_on":false,"url_signing_key":""}]}
CloudOYE CDN USER MANUAL
CloudOYE CDN USER MANUAL Password - Based Access Logon to http://mycloud.cloudoye.com. Enter your Username & Password In case, you have forgotten your password, click Forgot your password to request a
Fairsail REST API: Guide for Developers
Fairsail REST API: Guide for Developers Version 1.02 FS-API-REST-PG-201509--R001.02 Fairsail 2015. All rights reserved. This document contains information proprietary to Fairsail and may not be reproduced,
GravityLab Multimedia Inc. Windows Media Authentication Administration Guide
GravityLab Multimedia Inc. Windows Media Authentication Administration Guide Token Auth Menu GravityLab Multimedia supports two types of authentication to accommodate customers with content that requires
Cloud Elements! Marketing Hub Provisioning and Usage Guide!
Cloud Elements Marketing Hub Provisioning and Usage Guide API Version 2.0 Page 1 Introduction The Cloud Elements Marketing Hub is the first API that unifies marketing automation across the industry s leading
Table of Contents. Open-Xchange Authentication & Session Handling. 1.Introduction...3
Open-Xchange Authentication & Session Handling Table of Contents 1.Introduction...3 2.System overview/implementation...4 2.1.Overview... 4 2.1.1.Access to IMAP back end services...4 2.1.2.Basic Implementation
Axway API Gateway. Version 7.4.1
O A U T H U S E R G U I D E Axway API Gateway Version 7.4.1 3 February 2016 Copyright 2016 Axway All rights reserved. This documentation describes the following Axway software: Axway API Gateway 7.4.1
API V2.0. Documentation 7/28/2014
API V2.0 Documentation 7/28/2014 Table of Contents TABLE OF CONTENTS 2 REVISION HISTORY 6 OVERVIEW 7 Making A Request 7 The Sandbox 7 Rate Limiting 7 Supported Data Formats 8 Authentication 8 Common Header
Copyright Pivotal Software Inc, 2013-2015 1 of 10
Table of Contents Table of Contents Getting Started with Pivotal Single Sign-On Adding Users to a Single Sign-On Service Plan Administering Pivotal Single Sign-On Choosing an Application Type 1 2 5 7 10
Bitcoin Payment Gateway API
Bitcoin Payment Gateway API v0.3 BitPay, Inc. https://bitpay.com 2011-2012 BITPAY, Inc. All Rights Reserved. 1 Table of Contents Introduction Activating API Access Invoice States Creating an Invoice Required
EdgeCast Networks Inc. Token-Based Authentication Administration Guide
EdgeCast Networks Inc. Token-Based Authentication Administration Guide Disclaimer Care was taken in the creation of this guide. However, EdgeCast Networks Inc. cannot accept any responsibility for errors
Oracle Fusion Middleware Oracle API Gateway OAuth User Guide 11g Release 2 (11.1.2.4.0)
Oracle Fusion Middleware Oracle API Gateway OAuth User Guide 11g Release 2 (11.1.2.4.0) July 2015 Oracle API Gateway OAuth User Guide, 11g Release 2 (11.1.2.4.0) Copyright 1999, 2015, Oracle and/or its
Secure Web Appliance. SSL Intercept
Secure Web Appliance SSL Intercept Table of Contents 1. Introduction... 1 1.1. About CYAN Secure Web Appliance... 1 1.2. About SSL Intercept... 1 1.3. About this Manual... 1 1.3.1. Document Conventions...
GDC Data Transfer Tool User s Guide. NCI Genomic Data Commons (GDC)
GDC Data Transfer Tool User s Guide NCI Genomic Data Commons (GDC) Contents 1 Getting Started 3 Getting Started.......................................................... 3 The GDC Data Transfer Tool: An
EdgeCast Networks Inc. Flash Media Streaming Administration Guide
EdgeCast Networks Inc. Flash Media Streaming Administration Guide Disclaimer Care was taken in the creation of this guide. However, EdgeCast Networks Inc. cannot accept any responsibility for errors or
OAuth 2.0 Developers Guide. Ping Identity, Inc. 1001 17th Street, Suite 100, Denver, CO 80202 303.468.2900
OAuth 2.0 Developers Guide Ping Identity, Inc. 1001 17th Street, Suite 100, Denver, CO 80202 303.468.2900 Table of Contents Contents TABLE OF CONTENTS... 2 ABOUT THIS DOCUMENT... 3 GETTING STARTED... 4
ZODIANET API (ZAPI2)
ZODIANET API (ZAPI2) ZODIANET API ZAPI 2 Description of information exchange between the Zodianet platform and third-parties Document : specification Source: ZODIANET Mail: [email protected] Revision:
Installation & Configuration Guide User Provisioning Service 2.0
Installation & Configuration Guide User Provisioning Service 2.0 NAVEX Global User Provisioning Service 2.0 Installation Guide Copyright 2015 NAVEX Global, Inc. NAVEX Global is a trademark/service mark
Certified Secure Web Application Security Test Checklist
www.certifiedsecure.com [email protected] Tel.: +31 (0)70 310 13 40 Loire 128-A 2491 AJ The Hague The Netherlands Certified Secure Checklist About Certified Secure exists to encourage and fulfill
Title page. Alcatel-Lucent 5620 SERVICE AWARE MANAGER 13.0 R7
Title page Alcatel-Lucent 5620 SERVICE AWARE MANAGER 13.0 R7 APPLICATION API DEVELOPER GUIDE 3HE-10590-AAAA-TQZZA Issue 1 December 2015 Legal notice Legal notice Alcatel, Lucent, Alcatel-Lucent and the
Web Application Firewall
Web Application Firewall Getting Started Guide August 3, 2015 Copyright 2014-2015 by Qualys, Inc. All Rights Reserved. Qualys and the Qualys logo are registered trademarks of Qualys, Inc. All other trademarks
Description of Microsoft Internet Information Services (IIS) 5.0 and
Page 1 of 10 Article ID: 318380 - Last Review: July 7, 2008 - Revision: 8.1 Description of Microsoft Internet Information Services (IIS) 5.0 and 6.0 status codes This article was previously published under
Sharepoint server SSO
Configuring g on-premise Sharepoint server SSO Chapter 99 You can now provide single sign-on to your on-premise Sharepoint server applications. This section includes the following topics: "An overview
Single Sign On Guide. Table of Contents
Single Sign On Guide Table of Contents I. Overview II. Benefits III. How SSO Works IV. Set-up Requirements and Recommendations V. Set-up Instructions a. Required Parameters b. Optional Parameters c. Error
CONTENT DELIVERY WHITE PAPER 2014. www.keycdn.com. proinity GmbH 1
CONTENT DELIVERY WHITE PAPER 2014 www.keycdn.com proinity GmbH 1 KeyCDN White Paper 2014 CONTENT 01. INTRODUCTION 03 02. FEATURES 04 03. BENEFITS 06 04. NETWORK 08 05. PRICING 09 06. ABOUT US 11 2 proinity
vcommander will use SSL and session-based authentication to secure REST web services.
vcommander REST API Draft Proposal v1.1 1. Client Authentication vcommander will use SSL and session-based authentication to secure REST web services. 1. All REST API calls must take place over HTTPS 2.
REQUIREMENTS AND INSTALLATION OF THE NEFSIS DEDICATED SERVER
NEFSIS TRAINING SERIES Nefsis Dedicated Server version 5.1.0.XXX Requirements and Implementation Guide (Rev 4-10209) REQUIREMENTS AND INSTALLATION OF THE NEFSIS DEDICATED SERVER Nefsis Training Series
Accessing the FTP Server - User Manual
CENTRAL BANK OF CYPRUS Accessing the FTP Server - User Manual IT Department, CENTRAL BANK OF CYPRUS TABLE OF CONTENTS 1 EXECUTIVE SUMMARY... 1 1.1 AUDIENCE... 1 1.2 SCOPE... 1 2 CHANGES FROM THE OLD FTP
NTT Web Hosting Service [User Manual]
User Version 0.11 August 22, 2014 NTT Web Hosting Service [User Manual] Presented By: OAM Linux A NTT Communications (Thailand) CO., LTD. Table of Contents NTT Web Hosting Service [User Manual] 1 General...
Contents. Before You Install... 3. Server Installation... 5. Configuring Print Audit Secure... 10
Installation Guide Contents Before You Install... 3 Server Installation... 5 Configuring Print Audit Secure... 10 Configuring Print Audit Secure to use with Print Audit 6... 15 Licensing Print Audit Secure...
API Documentation. Introduction. General request structure. Authentication. Account and Site Identifiers. Name Description Optional
API Documentation Introduction Incapsula provides customers and partners with the ability to manage accounts and sites via an API. The API has the following characteristics: Requests are HTTP POST Parameters
Lecture 11 Web Application Security (part 1)
Lecture 11 Web Application Security (part 1) Computer and Network Security 4th of January 2016 Computer Science and Engineering Department CSE Dep, ACS, UPB Lecture 11, Web Application Security (part 1)
Release Notes. CTERA Portal 3.2.43. May 2013. CTERA Portal 3.2.43 Release Notes 1
Release Notes CTERA Portal 3.2.43 May 2013 CTERA Portal 3.2.43 Release Notes 1 1 Release Contents Copyright 2009-2013 CTERA Networks Ltd. All rights reserved. No part of this document may be reproduced
Internet Technologies. World Wide Web (WWW) Proxy Server Network Address Translator (NAT)
Internet Technologies World Wide Web (WWW) Proxy Server Network Address Translator (NAT) What is WWW? System of interlinked Hypertext documents Text, Images, Videos, and other multimedia documents navigate
2 Downloading Access Manager 3.1 SP4 IR1
Novell Access Manager 3.1 SP4 IR1 Readme May 2012 Novell This Readme describes the Novell Access Manager 3.1 SP4 IR1 release. Section 1, Documentation, on page 1 Section 2, Downloading Access Manager 3.1
vcloud Air Platform Programmer's Guide
vcloud Air Platform Programmer's Guide vcloud Air OnDemand 5.7 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition.
Mashery OAuth 2.0 Implementation Guide
Mashery OAuth 2.0 Implementation Guide June 2012 Revised: 7/18/12 www.mashery.com Mashery, Inc. 717 Market Street, Suite 300 San Francisco, CA 94103 Contents C hapter 1. About this Guide...5 Introduction...
Contents. 2 Alfresco API Version 1.0
The Alfresco API Contents The Alfresco API... 3 How does an application do work on behalf of a user?... 4 Registering your application... 4 Authorization... 4 Refreshing an access token...7 Alfresco CMIS
Experian Secure Transport Service
Experian Secure Transport Service Secure Transport Overview In an effort to provide higher levels of data protection and standardize our file transfer processes, Experian will be utilizing the Secure Transport
DOSarrest Security Services (DSS) Version 4.0
DOSarrest Security Services (DSS) Version 4.0 DOSarrest DSS User Guide The DSS is the main customer portal where customers can view and manipulate traffic statistics from a wide variety of variables that
Setup Citrix Access Gateway Enterprise Edition (NetScaler) for use of multiple authentication methods.
Nordic Edge One Time Password (OTP Server) has a comprehensive RADIUS support, including support for multiple authentication methods. This means that the end user can choose authentication method: SMS,
IBM Campaign and IBM Silverpop Engage Version 1 Release 2 August 31, 2015. Integration Guide IBM
IBM Campaign and IBM Silverpop Engage Version 1 Release 2 August 31, 2015 Integration Guide IBM Note Before using this information and the product it supports, read the information in Notices on page 93.
Exchange 2013 mailbox setup guide
Fasthosts Customer Support Exchange 2013 mailbox setup guide This article covers the setup of Exchange 2013 mailboxes in Microsoft Outlook 2013, 2010 and Outlook 2011 for Mac. Contents Exchange 2013 Mailbox
Collax Web Security. Howto. This howto describes the setup of a Web proxy server as Web content filter.
Collax Web Security Howto This howto describes the setup of a Web proxy server as Web content filter. Requirements Collax Business Server Collax Security Gateway Collax Platform Server including Collax
Installation and Setup Guide
Installation and Setup Guide Contents 1. Introduction... 1 2. Before You Install... 3 3. Server Installation... 6 4. Configuring Print Audit Secure... 11 5. Licensing... 16 6. Printer Manager... 17 7.
Cofred Automated Payments Interface (API) Guide
Cofred Automated Payments Interface (API) Guide For use by Cofred Merchants. This guide describes how to connect to the Automated Payments Interface (API) www.cofred.com Version 1.0 Copyright 2015. Cofred.
Online Data Services. Security Guidelines. Online Data Services by Esri UK. Security Best Practice
Online Data Services Security Guidelines Online Data Services by Esri UK Security Best Practice 28 November 2014 Contents Contents... 1 1. Introduction... 2 2. Data Service Accounts, Security and Fair
Getting Started with the icontact API
Getting Started with the icontact API Contents - Introduction -... 2 - URIs, URLs, Resources, and Supported Actions -... 3 Contacts Category... 3 Messages Category... 4 Track Category... 4 GET... 5 POST...
leaseweb cdn CDN Product Sheet - LeaseWeb - EN 1.06
leaseweb cdn CDN Product Sheet - LeaseWeb - EN 1.06 content delivery network Designed to accelerate your business Our next-generation CDN is perfect for any businesses that require massive bandwidth to
1 Attack Top Attackers Report, Top Targets Report, Top Protocol Used by Attack Report, Top Attacks Report, Top Internal Attackers Report, Top External Attackers Report, Top Internal Targets Report, Top
Cyber Security Workshop Ethical Web Hacking
Cyber Security Workshop Ethical Web Hacking May 2015 Setting up WebGoat and Burp Suite Hacking Challenges in WebGoat Concepts in Web Technologies and Ethical Hacking 1 P a g e Downloading WebGoat and Burp
API of DNS hosting. For DNS-master and Secondary services Table of contents
API of DNS hosting. For DNS-master and Secondary services Table of contents API of DNS hosting. For DNS-master and Secondary services... 1 1. Introduction... 3 2. Setting access area of application for
Chapter 6 Virtual Private Networking Using SSL Connections
Chapter 6 Virtual Private Networking Using SSL Connections The FVS336G ProSafe Dual WAN Gigabit Firewall with SSL & IPsec VPN provides a hardwarebased SSL VPN solution designed specifically to provide
Developer Guide: REST API Applications. SAP Mobile Platform 2.3 SP03
Developer Guide: REST API Applications SAP Mobile Platform 2.3 SP03 DOCUMENT ID: DC01926-01-0233-01 LAST REVISED: September 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This publication pertains
ICE Futures Europe. AFTS Technical Guide for Large Position Reporting V1.0
ICE Futures Europe AFTS Technical Guide for Large Position Reporting V1.0 ICE FUTURES EUROPE Page 1 of 7 Contents 1. Introduction... 3 2. Online access to Clearing Systems... 4 3. Uploading Data... 5 4.
Lepide Active Directory Self Service. Configuration Guide. Follow the simple steps given in this document to start working with
Lepide Active Directory Self Service Configuration Guide 2014 Follow the simple steps given in this document to start working with Lepide Active Directory Self Service Table of Contents 1. Introduction...3
Managing Qualys Scanners
Q1 Labs Help Build 7.0 Maintenance Release 3 [email protected] Managing Qualys Scanners Managing Qualys Scanners A QualysGuard vulnerability scanner runs on a remote web server. QRadar must access
Eucalyptus 3.4.2 User Console Guide
Eucalyptus 3.4.2 User Console Guide 2014-02-23 Eucalyptus Systems Eucalyptus Contents 2 Contents User Console Overview...4 Install the Eucalyptus User Console...5 Install on Centos / RHEL 6.3...5 Configure
Configuring. Moodle. Chapter 82
Chapter 82 Configuring Moodle The following is an overview of the steps required to configure the Moodle Web application for single sign-on (SSO) via SAML. Moodle offers SP-initiated SAML SSO only. 1 Prepare
9. Database Management Utility
Overview 9.1 Overview 9. Database Management Utility The Compass2.0 database contains information about configuration details for the intrusion control panel. It is essential that a backup of the information
1999-2006 enom, Inc. API response codes
API response codes Introduction When you run a query against the enom API, the response includes a numeric code and a corresponding text message. This allows us to standardize our responses and make them
Architecture and Data Flow Overview. BlackBerry Enterprise Service 10 721-08877-123 Version: 10.2. Quick Reference
Architecture and Data Flow Overview BlackBerry Enterprise Service 10 721-08877-123 Version: Quick Reference Published: 2013-11-28 SWD-20131128130321045 Contents Key components of BlackBerry Enterprise
Customize Mobile Apps with MicroStrategy SDK: Custom Security, Plugins, and Extensions
Customize Mobile Apps with MicroStrategy SDK: Custom Security, Plugins, and Extensions MicroStrategy Mobile SDK 1 Agenda MicroStrategy Mobile SDK Overview Requirements & Setup Custom App Delegate Custom
App Orchestration 2.5
Configuring NetScaler 10.5 Load Balancing with StoreFront 2.5.2 and NetScaler Gateway for Prepared by: James Richards Last Updated: August 20, 2014 Contents Introduction... 3 Configure the NetScaler load
Chapter 15: Advanced Networks
Chapter 15: Advanced Networks IT Essentials: PC Hardware and Software v4.0 1 Determine a Network Topology A site survey is a physical inspection of the building that will help determine a basic logical
DOSarrest Security Services (DSS) Version 4.0
DOSarrest Security Services (DSS) Version 4.0 DOSarrest DSS User Guide The DSS is the main customer portal where customers can view and manipulate traffic statistics from a wide variety of variables that
Connected Data. Connected Data requirements for SSO
Chapter 40 Configuring Connected Data The following is an overview of the steps required to configure the Connected Data Web application for single sign-on (SSO) via SAML. Connected Data offers both IdP-initiated
Cloud Elements ecommerce Hub Provisioning Guide API Version 2.0 BETA
Cloud Elements ecommerce Hub Provisioning Guide API Version 2.0 BETA Page 1 Introduction The ecommerce Hub provides a uniform API to allow applications to use various endpoints such as Shopify. The following
NEFSIS DEDICATED SERVER
NEFSIS TRAINING SERIES Nefsis Dedicated Server version 5.2.0.XXX (DRAFT Document) Requirements and Implementation Guide (Rev5-113009) REQUIREMENTS AND INSTALLATION OF THE NEFSIS DEDICATED SERVER Nefsis
EMC ViPR Controller. ViPR Controller REST API Virtual Data Center Configuration Guide. Version 2.3.0.0 302-002-070 01
EMC ViPR Controller Version 2.3.0.0 ViPR Controller REST API Virtual Data Center Configuration Guide 302-002-070 01 Copyright 2013-2015 EMC Corporation. All rights reserved. Published in USA. Published
Configuration Guide. BES12 Cloud
Configuration Guide BES12 Cloud Published: 2016-04-08 SWD-20160408113328879 Contents About this guide... 6 Getting started... 7 Configuring BES12 for the first time...7 Administrator permissions you need
SFTP Server User Login Instructions. Open Internet explorer and enter the following url: https://sftp.sae.org
SFTP Server User Login Instructions Open Internet explorer and enter the following url: https://sftp.sae.org You will be prompted for a user id and password as such. Please enter your account id and password.
Criteria for web application security check. Version 2015.1
Criteria for web application security check Version 2015.1 i Content Introduction... iii ISC- P- 001 ISC- P- 001.1 ISC- P- 001.2 ISC- P- 001.3 ISC- P- 001.4 ISC- P- 001.5 ISC- P- 001.6 ISC- P- 001.7 ISC-
www.novell.com/documentation Policy Guide Access Manager 3.1 SP5 January 2013
www.novell.com/documentation Policy Guide Access Manager 3.1 SP5 January 2013 Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents or use of this documentation,
Customization & Enhancement Guide. Table of Contents. Index Page. Using This Document
Customization & Enhancement Guide Table of Contents Using This Document This document provides information about using, installing and configuring FTP Attachments applications provided by Enzigma. It also
STABLE & SECURE BANK lab writeup. Page 1 of 21
STABLE & SECURE BANK lab writeup 1 of 21 Penetrating an imaginary bank through real present-date security vulnerabilities PENTESTIT, a Russian Information Security company has launched its new, eighth
Proctor Caching User Guide
Proctor Caching User Guide Copyright 2014, Pearson Education, Inc. Published March 5, 2014 Proctor Caching User Guide 1 Proctor Caching User Guide Revision History What is Proctor Caching? Hardware and
ULTEO OPEN VIRTUAL DESKTOP OVD WEB APPLICATION GATEWAY
ULTEO OPEN VIRTUAL DESKTOP V4.0.2 OVD WEB APPLICATION GATEWAY Contents 1 Introduction 2 2 Overview 3 3 Installation 4 3.1 Red Hat Enterprise Linux 6........................... 4 3.2 SUSE Linux Enterprise
Adobe Marketing Cloud First-Party Cookies
Adobe Marketing Cloud First-Party Cookies Contents About First-Party Cookies...3 Adobe Managed Certificate Program...4 Create CNAME Records...5 Ping the hostname...5 Update implementation code...6 Legacy
Sharp Remote Device Manager (SRDM) Server Software Setup Guide
Sharp Remote Device Manager (SRDM) Server Software Setup Guide This Guide explains how to install the software which is required in order to use Sharp Remote Device Manager (SRDM). SRDM is a web-based
Reverse Proxy Guide. Version 2.0 April 2016
Version 2.0 April 2016 Reverse Proxy Guide Copyright 2016 iwebgate. All Rights Reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval system, or translated
How To Use Kiteworks On A Microsoft Webmail Account On A Pc Or Macbook Or Ipad (For A Webmail Password) On A Webcomposer (For An Ipad) On An Ipa Or Ipa (For
GETTING STARTED WITH KITEWORKS DEVELOPER GUIDE Version 1.0 Version 1.0 Copyright 2014 Accellion, Inc. All rights reserved. These products, documents, and materials are protected by copyright law and distributed
DreamFactory on Microsoft SQL Azure
DreamFactory on Microsoft SQL Azure Account Setup and Installation Guide For general information about the Azure platform, go to http://www.microsoft.com/windowsazure/. For general information about the
Product Manual. MDM On Premise Installation Version 8.1. Last Updated: 06/07/15
Product Manual MDM On Premise Installation Version 8.1 Last Updated: 06/07/15 Parallels IP Holdings GmbH Vordergasse 59 8200 Schaffhausen Switzerland Tel: + 41 52 632 0411 Fax: + 41 52 672 2010 www.parallels.com
CA Unified Infrastructure Management Server
CA Unified Infrastructure Management Server CA UIM Server Configuration Guide 8.0 Document Revision History Version Date Changes 8.0 September 2014 Rebranded for UIM 8.0. 7.6 June 2014 No revisions for
SAML single sign-on configuration overview
Chapter 46 Configurin uring Drupal Configure the Drupal Web-SAML application profile in Cloud Manager to set up single sign-on via SAML with a Drupal-based web application. Configuration also specifies
Data Collection and Analysis: Get End-to-End Security with Cisco Connected Analytics for Network Deployment
White Paper Data Collection and Analysis: Get End-to-End Security with Cisco Connected Analytics for Network Deployment Cisco Connected Analytics for Network Deployment (CAND) is Cisco hosted, subscription-based
Linux VPS with cpanel. Getting Started Guide
Linux VPS with cpanel Getting Started Guide First Edition October 2010 Table of Contents Introduction...1 cpanel Documentation...1 Accessing your Server...2 cpanel Users...2 WHM Interface...3 cpanel Interface...3
FAQs, Hints and Tips
FAQs, Hints and Tips FAQs Appendix B n What s Covered in This Document This document contains a list of frequently asked questions (FAQs), as well as helpful hints and tips, regarding configuring, installing,
LCH.Clearnet Version 1.0 Date : 26 June 2007 1/10
Service Technical overview LCH.Clearnet Version 1.0 Date : 26 June 2007 1/10 Contents 1 Introduction... 3 2 Users Architecture Overview... 4 2.2 Current CCW Architecture... 4 2.3 Future Options... 4 2.3.1
Lecture 8a: WWW Proxy Servers and Cookies
Internet and Intranet Protocols and Applications Lecture 8a: WWW Proxy Servers and Cookies March 12, 2003 Arthur Goldberg Computer Science Department New York University [email protected] Terminology Origin
Preparing for GO!Enterprise MDM On-Demand Service
Preparing for GO!Enterprise MDM On-Demand Service This guide provides information on...... An overview of GO!Enterprise MDM... Preparing your environment for GO!Enterprise MDM On-Demand... Firewall rules
Getting Started with AWS. Static Website Hosting
Getting Started with AWS Static Website Hosting Getting Started with AWS: Static Website Hosting Copyright 2014 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. The following are trademarks
Flight Workflow User's Guide. Release 12.0.0
Flight Workflow User's Guide Release 12.0.0 Copyright 2015 Signiant Inc. All rights reserved. Contents CHAPTER 1 Flight Introduction 4 FlightUploadReference 4 FlightDownloadReference 4 Cloud Storage Configuration
USER GUIDE. Lightweight Directory Access Protocol (LDAP) Schoolwires Centricity
USER GUIDE Lightweight Directory Access Protocol () Schoolwires Centricity TABLE OF CONTENTS Introduction... 1 Audience and Objectives... 1 Overview... 1 Servers Supported by Centricity... 1 Benefits of
Accelerating Wordpress for Pagerank and Profit
Slide No. 1 Accelerating Wordpress for Pagerank and Profit Practical tips and tricks to increase the speed of your site, improve conversions and climb the search rankings By: Allan Jude November 2011 Vice
What s New in Propalms VPN 3.5?
What s New in Propalms VPN 3.5? Contents Improved Management Console Interface... 2 Inline Help on Management Console... 2 Graphical Dashboard on Management Console... 2 Multiple Authentication Server
ez Agent Administrator s Guide
ez Agent Administrator s Guide Copyright This document is protected by the United States copyright laws, and is proprietary to Zscaler Inc. Copying, reproducing, integrating, translating, modifying, enhancing,
Force.com REST API Developer's Guide
Force.com REST API Developer's Guide Version 35.0, Winter 16 @salesforcedocs Last updated: December 10, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark
Secure Messaging Server Console... 2
Secure Messaging Server Console... 2 Upgrading your PEN Server Console:... 2 Server Console Installation Guide... 2 Prerequisites:... 2 General preparation:... 2 Installing the Server Console... 2 Activating
Login with Amazon. Getting Started Guide for Websites. Version 1.0
Login with Amazon Getting Started Guide for Websites Version 1.0 Login with Amazon: Getting Started Guide for Websites Copyright 2016 Amazon Services, LLC or its affiliates. All rights reserved. Amazon
