HOST EUROPE CLOUD STORAGE REST API DEVELOPER REFERENCE
|
|
|
- Stanley Shields
- 9 years ago
- Views:
Transcription
1 HOST EUROPE CLOUD STORAGE REST API DEVELOPER REFERENCE
2 REST API REFERENCE REST OVERVIEW Host Europe REST Storage Service uses HTTP protocol as defned by RFC REST operations consist in sending HTTP request to Host Europe REST Storage Service, which will return HTTP responses. REST HTTP Request contain a request method, a URI, headers and a query string and body. The responses contain status codes, headers, and may contain a response body. REST requests include headers which contain the following information: Content-Length Message Length (without headers), as specifed by RFC This header of type string is required for PUT and operations that load XML, such as logging and ACLs. Content-Type Content Type of the resource (e.g. text/plain). Date Date and Time of the request (default format is Mon, 06 Apr :00:00 GMT which conforms to RFC 2616 Section ). Host The Host should display the standard Storage Service. If the host contains anything else than the standard BRS2 Storage Server, this information will be used as a bucket for the request, as explained in Virtual Hosting of Buckets. This header is required for HTTP1.1. Contains either: Service Hostname Virtual Host (bucket.cs.hosteurope.de) Bucket. Authorization Contains the information required for authentication. Please refer to Authenticating REST Requests for more information on authorization formats. x-amz parts Divided into 2 types: x-amz- : contain system metadata. x-amz-meta-: contain user defned metadata V1 sb 2
3 SERVICE OPERATIONEN GET Service The GET operation on a service returns a list of all the buckets owned by the authenticated sender of the request. You must authenticate with a valid Access Key ID. Anonymous requests cannot list buckets. GET / HTTP/1.1 Host: cs.hosteurope.de Date: Mon, 10 Aug :55:19 GMT Content-length: 317 <?xml version="1.0" encoding="utf-8"?> <ListAllMyBucketsResult xmlns=" <Owner> <ID>14B5C45B8E359BC1601B7C682D83EB50648AE420</ID> <DisplayName>Test </DisplayName> </Owner> <Buckets> <Bucket> <Name>polo</Name> <CreationDate> T16:31:04.000Z</CreationDate> </Bucket> </Buckets> </ListAllMyBucketsResult> In this sample syntax, the Owner feld lists information about the bucket owner. The Buckets feld lists buckets and their metadata V1 sb 3
4 BUCKET OPERATIONS PUT Bucket Using PUT operation on a bucket has a diferent efect than the PUT operation on objects. If the bucket does not exist, the PUT operation will create the Bucket. Each user may create up to 100 buckets. PUT / HTTP/1.1 Host: polo2.cs.hosteurope.de Content-Length: 0 Date: Mon, 10 Aug :59:05 GMT GET Bucket Using GET operation on a bucket has a diferent efect than the GET operation on objects. The GET operation on a bucket lists the content of the whole Bucket. GET Bucket Parameters It is possible to pass on several arguments to the GET Bucket request, using URL scheme like? prefx=prefx;marker=marker;etc. prefx This argument of type string limits the response to keys that begin with the specifed prefx. You may use prefxes to separate a bucket into diferent sets of keys. marker This argument of type string indicates the listing start point of the bucket. The list will include only the keys that occur after the specifed marker. For pagination purposes, it is possible to get the next page of results using the last key of the current page as a marker for instance. max-keys This Integer argument determines the maximum number of results the body response should contain. delimiter This string argument causes keys that contain the same string between the prefx and the frst occurrence of the delimiter to be rolled up into a single result element in the CommonPrefxes collection V1 sb 4
5 GET / HTTP/1.1 Date: Mon, 10 Aug :55:53 GMT Content-length: 853 <?xml version="1.0" encoding="utf-8"?> <ListBucketResult xmlns=" <Name>polo</Name> <Prefix></Prefix> <Marker></Marker> <MaxKeys>1000</MaxKeys> <IsTruncated>false</IsTruncated> <Contents> <Key>chunk</Key> <LastModified> T09:11:58.000Z</LastModified> <ETag>"f436d2e0ed02b7b73bd10c6693e95ac3"</ETag> <Size>18274</Size> <Owner> <ID>14B5C45B8E359BC1601B7C682D83EB50648AE420</ID> <DisplayName>Test</DisplayName> </Owner> <StorageClass>STANDARD</StorageClass> </Contents> <Contents> <Key>ls</Key> <LastModified> T16:28:04.000Z</LastModified> <ETag>"f58860f27dd c "</ETag> <Size>92376</Size> <Owner> <ID>14B5C45B8E359BC1601B7C682D83EB50648AE420</ID> <DisplayName>Test</DisplayName> </Owner> <StorageClass>STANDARD</StorageClass> </Contents> </ListBucketResult> In the example response above, we can see: The <name> tag contains the bucket name. The two <Contents> tags contain 2 object descriptions, each defned by the <Key> tag. The <Owner> tag contain information about the owner of the object V1 sb 5
6 DELETE Bucket Using DELETE operation on a bucket has a diferent efect than the DELETE operation on objects. The DELETE operation on a bucket deletes it if the bucket is empty. DELETE / HTTP/1.1 Host: polo2.cs.hosteurope.dedomain.com HTTP/ No Content Date: Mon, 10 Aug :59:43 GMT OBJECT OPERATIONS PUT Object The PUT request operation adds an object to a bucket. The response returned indicates if the object has been stored successfully. The user must have WRITE access to the bucket to add an object. PUT Object Parameters Content-Type Set a standard MIME type for the content format. Default is binary/octet-stream. Content-Length Size of the object in bytes. Content-MD5 The base64 encoded 128-bit MD5 digest of the message (without the headers). x-amz-acl The canned ACP to apply to the object. Options include private, public-read, public-read-write, and authenticated-read. x-amz-meta Any header starting with the meta prefx is considered meta-data. For further information, please refer to the RFC V1 sb 6
7 PUT /newchunk HTTP/1.1 Content-Length: length Content-MD5: md5_digest Content-Type: type Expires: Date: Mon, 10 Aug :57:07 GMT Etag: "956398ac99977fa25bceb979777ebab6" Content-Length: 0 COPY Object The COPY request operation copies an object from a bucket to another bucket. The response returned indicates if the object has been copied successfully. The user must have READ access to the Source Object, WRITE access to the destination bucket to copy an object. COPY Object Parameters x-amz-copy-source This argument contains the name of the source bucket and key of the source object, separated by a slash /. This string must be URL-encoded, and the source bucket name must be valid. x-amz-metadata-directive This argument takes two possible values: COPY: specifes that the metadata from the source object should be copied with the metadata provided in the request. REPLACE: specifes that the metadata from the source object should be replaced with the metadata provided in the request. x-amz-copy-source-if-match This argument will make the request copy the object if its entity tag (Etag) matches the specifed value. x-amz-copy-source-if-none-match This argument will make the request copy the object if its entity tag (Etag) is other than the specifed value. x-amz-copy-source-if-unmodifed-since This argument will make the request copy the object if it has not been modifed since the specifed time. The value for this argument must be a valid HTTP date. See RFC for more information V1 sb 7
8 x-amz-copy-source-if-modifed-since This argument will make the request copy the object if it has been modifed since the specifed time. The value for this argument must be a valid HTTP date. See RFC for more information. COPY /newchunk HTTP/1.1 x-amz-copy-source: /polo/chunk Content-Length: length Content-Type: type Expires: Date: Mon, 10 Aug :02:21 GMT Etag: "f436d2e0ed02b7b73bd10c6693e95ac3" Content-Length: 189 <?xml version="1.0" encoding="utf-8"?> <CopyObjectResult> <LastModified> T16:02:22.000Z</LastModified> <Etag>"f436d2e0ed02b7b73bd10c6693e95ac3"</ETag> </CopyObjectResult> GET Object The GET request operation fetches objects from Host Europe REST Storage Service. GET Object Parameters If-Modifed-Since This argument will make the request return the object only if it has been modifed since the specifed time. The value for this argument must be a valid HTTP date. See RFC for more information. If-Unmodifed-Since This argument will make the request return the object only if it has not been modifed since the specifed time. The value for this argument must be a valid HTTP date. See RFC for more information. If-Match This argument will make the request return the object only if its entity tag (Etag) is identical to the specifed value. If-None-Match This argument will make the request return the object only if its entity tag (Etag) is diferent from the specifed value V1 sb 8
9 GET /Chunk HTTP/1.1 Date: Mon, 10 Aug :00:57 GMT Last-modified: Thu, 06 Aug :11:58 GMT Etag: "f436d2e0ed02b7b73bd10c6693e95ac3" Content-length: Data goes here... HEAD Object The HEAD request operation returns metadata information on an object. The user must have READ / WRITE access to the buckets to add an object. HEAD Object Parameters Etag This option returns the Etag of the Object. HEAD /Chunk HTTP/1.1 Date: Mon, 10 Aug :04:02 GMT Content-length: V1 sb 9
10 DELETE Object The DELETE action removes the given object from Host Europe REST Storage Service. The user must have WRITE access to the bucket to delete an object. Warning - It is not possible to restore a deleted object. DELETE /Chunk HTTP/1.1 You can use standard request headers for this action. HTTP/ No Content Date: Mon, 10 Aug :57:43 GMT V1 sb 10
OpenStack Object Storage Developer Guide
docs.openstack.org OpenStack Object Storage (2013-02-22) Copyright 2010-2013 OpenStack, LLC All rights reserved. This document is intended for software developers interested in developing applications
reference: HTTP: The Definitive Guide by David Gourley and Brian Totty (O Reilly, 2002)
1 cse879-03 2010-03-29 17:23 Kyung-Goo Doh Chapter 3. Web Application Technologies reference: HTTP: The Definitive Guide by David Gourley and Brian Totty (O Reilly, 2002) 1. The HTTP Protocol. HTTP = HyperText
Nuance Mobile Developer Program. HTTP Services for Nuance Mobile Developer Program Clients
Nuance Mobile Developer Program HTTP Services for Nuance Mobile Developer Program Clients Notice Nuance Mobile Developer Program HTTP Services for Nuance Mobile Developer Program Clients Copyright 2011
HTTP Protocol. Bartosz Walter <[email protected]>
HTTP Protocol Bartosz Walter Agenda Basics Methods Headers Response Codes Cookies Authentication Advanced Features of HTTP 1.1 Internationalization HTTP Basics defined in
Release: August 2011. Gluster Filesystem Unified File and Object Storage Beta 2
Release: August 2011 Gluster Filesystem Unified File and Object Storage Beta 2 Copyright Copyright 2011 Gluster, Inc. This is a preliminary document and may be changed substantially prior to final commercial
The Application Layer. CS158a Chris Pollett May 9, 2007.
The Application Layer CS158a Chris Pollett May 9, 2007. Outline DNS E-mail More on HTTP The Domain Name System (DNS) To refer to a process on the internet we need to give an IP address and a port. These
DARIAH Storage API A Basic Storage Service API on Bit Preservation Level
DARIAH Storage API A Basic Storage Service API on Bit Preservation Level DARIAH-DE Aufbau von Forschungsinfrastrukturen für die e-humanities Authors: Stefan E. Funk, Peter Gietz, Martin Haase (DAASI International)
Qualys API Limits. July 10, 2014. Overview. API Control Settings. Implementation
Qualys API Limits July 10, 2014 Overview The Qualys API enforces limits on the API calls a customer can make based on their subscription settings, starting with Qualys version 6.5. The limits apply to
Project #2. CSE 123b Communications Software. HTTP Messages. HTTP Basics. HTTP Request. HTTP Request. Spring 2002. Four parts
CSE 123b Communications Software Spring 2002 Lecture 11: HTTP Stefan Savage Project #2 On the Web page in the next 2 hours Due in two weeks Project reliable transport protocol on top of routing protocol
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
What is Distributed Annotation System?
Contents ISiLS Lecture 12 short introduction to data integration F.J. Verbeek Genome browsers Solutions for integration CORBA SOAP DAS Ontology mapping 2 nd lecture BioASP roadshow 1 2 Human Genome Browsers
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
WP4: Cloud Hosting Chapter Object Storage Generic Enabler
WP4: Cloud Hosting Chapter Object Storage Generic Enabler Webinar John Kennedy, Thijs Metsch@ Intel Outline 1 Overview of the Cloud Hosting Work Package 2 Functionality Trust and Security Operations FI-WARE
Remote Access API 2.0
VYATTA A BROCADE COMPANY Vyatta System Remote Access API 2.0 REFERENCE GUIDE Vyatta A Brocade Company 130 Holger Way San Jose, CA 95134 www.brocade.com 408 333 8400 COPYRIGHT Copyright 2005 2015 Vyatta,
By Bardia, Patit, and Rozheh
HTTP By Bardia, Patit, and Rozheh HTTP - Introduction - Hyper Text Transfer Protocol -uses the TCP/IP technology -has had the most impact on the World Wide Web (WWW) - specs in RFC 2616 (RFC2616) HTTP
Network Technologies
Network Technologies Glenn Strong Department of Computer Science School of Computer Science and Statistics Trinity College, Dublin January 28, 2014 What Happens When Browser Contacts Server I Top view:
HireDesk API V1.0 Developer s Guide
HireDesk API V1.0 Developer s Guide Revision 1.4 Talent Technology Corporation Page 1 Audience This document is intended for anyone who wants to understand, and use the Hiredesk API. If you just want to
HTTP REST API for OpenStack Object Storage Metadata Search (OSMS)
HTTP REST API for OpenStack Object Storage Metadata Search (OSMS) Revision History Version Date Author Changes 0.1 19-Mar-2013 Lincoln Thomas Initial draft 0.2 23-Jul-2013 Lincoln Thomas Cumulative changes
Designing RESTful Web Applications
Ben Ramsey php works About Me: Ben Ramsey Proud father of 7-month-old Sean Organizer of Atlanta PHP user group Founder of PHP Groups Founding principal of PHP Security Consortium Original member of PHPCommunity.org
Internet Technologies Internet Protocols and Services
QAFQAZ UNIVERSITY Computer Engineering Department Internet Technologies Internet Protocols and Services Dr. Abzetdin ADAMOV Chair of Computer Engineering Department [email protected] http://ce.qu.edu.az/~aadamov
Sentinel EMS v7.1 Web Services Guide
Sentinel EMS v7.1 Web Services Guide ii Sentinel EMS Web Services Guide Document Revision History Part Number 007-011157-001, Revision E. Software versions 7.1 and later. Revision Action/Change Date A
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
Cloud Servers Developer Guide
Cloud Servers Developer Guide API v0.9 This document is intended for software developers interested in developing applications using the Cloud Servers Application Programming Interface (API). Table of
MXSAVE XMLRPC Web Service Guide. Last Revision: 6/14/2012
MXSAVE XMLRPC Web Service Guide Last Revision: 6/14/2012 Table of Contents Introduction! 4 Web Service Minimum Requirements! 4 Developer Support! 5 Submitting Transactions! 6 Clients! 7 Adding Clients!
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
HTTP. Internet Engineering. Fall 2015. Bahador Bakhshi CE & IT Department, Amirkabir University of Technology
HTTP Internet Engineering Fall 2015 Bahador Bakhshi CE & IT Department, Amirkabir University of Technology Questions Q1) How do web server and client browser talk to each other? Q1.1) What is the common
Layer 7 Load Balancing and Content Customization
C H A P T E R 4 Layer 7 Load Balancing and Content Customization This chapter will discuss the methods and protocols involved in accomplishing a Layer 7 load-balancing solution. The reasons for and benefits
The Web: some jargon. User agent for Web is called a browser: Web page: Most Web pages consist of: Server for Web is called Web server:
The Web: some jargon Web page: consists of objects addressed by a URL Most Web pages consist of: base HTML page, and several referenced objects. URL has two components: host name and path name: User agent
Outline Definition of Webserver HTTP Static is no fun Software SSL. Webserver. in a nutshell. Sebastian Hollizeck. June, the 4 th 2013
Definition of in a nutshell June, the 4 th 2013 Definition of Definition of Just another definition So what is it now? Example CGI php comparison log-file Definition of a formal definition Aisaprogramthat,usingthe
The Hyper-Text Transfer Protocol (HTTP)
The Hyper-Text Transfer Protocol (HTTP) Antonio Carzaniga Faculty of Informatics University of Lugano October 4, 2011 2005 2007 Antonio Carzaniga 1 HTTP message formats Outline HTTP methods Status codes
Cache Configuration Reference
Sitecore CMS 6.2 Cache Configuration Reference Rev: 2009-11-20 Sitecore CMS 6.2 Cache Configuration Reference Tips and Techniques for Administrators and Developers Table of Contents Chapter 1 Introduction...
MONETA.Assistant API Reference
MONETA.Assistant API Reference Contents 2 Contents Abstract...3 Chapter 1: MONETA.Assistant Overview...4 Payment Processing Flow...4 Chapter 2: Quick Start... 6 Sandbox Overview... 6 Registering Demo Accounts...
Commerce Services Documentation
Commerce Services Documentation This document contains a general feature overview of the Commerce Services resource implementation and lists the currently implemented resources. Each resource conforms
HTTP - METHODS. Same as GET, but transfers the status line and header section only.
http://www.tutorialspoint.com/http/http_methods.htm HTTP - METHODS Copyright tutorialspoint.com The set of common methods for HTTP/1.1 is defined below and this set can be expanded based on requirements.
World Wide Web. Before WWW
World Wide Web [email protected] Before WWW Major search tools: Gopher and Archie Archie Search FTP archives indexes Filename based queries Gopher Friendly interface Menu driven queries João Neves 2
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.
CGI An Example. CGI Model (Pieces)
CGI An Example go to http://127.0.0.1/cgi-bin/hello.pl This causes the execution of the perl script hello.pl Note: Although our examples use Perl, CGI scripts can be written in any language Perl, C, C++,
Web. Services. Web Technologies. Today. Web. Technologies. Internet WWW. Protocols TCP/IP HTTP. Apache. Next Time. Lecture #3 2008 3 Apache.
JSP, and JSP, and JSP, and 1 2 Lecture #3 2008 3 JSP, and JSP, and Markup & presentation (HTML, XHTML, CSS etc) Data storage & access (JDBC, XML etc) Network & application protocols (, etc) Programming
Chapter 27 Hypertext Transfer Protocol
Chapter 27 Hypertext Transfer Protocol Columbus, OH 43210 [email protected] http://www.cis.ohio-state.edu/~jain/ 27-1 Overview Hypertext language and protocol HTTP messages Browser architecture CGI
Hypertext for Hyper Techs
Hypertext for Hyper Techs An Introduction to HTTP for SecPros Bio Josh Little, GSEC ~14 years in IT. Support, Server/Storage Admin, Webmaster, Web App Dev, Networking, VoIP, Projects, Security. Currently
Message Containers and API Framework
Message Containers and API Framework Notices Copyright 2009-2010 Motion Picture Laboratories, Inc. This work is licensed under the Creative Commons Attribution-No Derivative Works 3.0 United States License.
Perceptive Integration Server
Perceptive Integration Server Getting Started Guide ImageNow Version: 6.7. x Written by: Product Documentation, R&D Date: October 2013 2013 Perceptive Software. All rights reserved CaptureNow, ImageNow,
WWW. World Wide Web Aka The Internet. dr. C. P. J. Koymans. Informatics Institute Universiteit van Amsterdam. November 30, 2007
WWW World Wide Web Aka The Internet dr. C. P. J. Koymans Informatics Institute Universiteit van Amsterdam November 30, 2007 dr. C. P. J. Koymans (UvA) WWW November 30, 2007 1 / 36 WWW history (1) 1968
This Specification is provided for future development work within onem2m only. The Partners accept no liability for any use of this Specification.
This Specification is provided for future development work within onem2m only. The Partners accept no liability for any use of this Specification. The present document has not been subject to any approval
ivvy Events Software API www.ivvy.com
ivvy Events Software API www.ivvy.com Version 0.3 1 Contents Contents Document Control Revision History Introduction Obtaining Keys Creating the request Method/URI Header Request Headers Standard Headers
JASPERREPORTS SERVER WEB SERVICES GUIDE
JASPERREPORTS SERVER WEB SERVICES GUIDE RELEASE 5.0 http://www.jaspersoft.com JasperReports Server Web Services Guide Copyright 2012 Jaspersoft Corporation. All rights reserved. Printed in the U.S.A. Jaspersoft,
CONTRACT MODEL IPONZ DESIGN SERVICE VERSION 2. Author: Foster Moore Date: 20 September 2011 Document Version: 1.7
CONTRACT MODEL IPONZ DESIGN SERVICE VERSION 2 Author: Foster Moore Date: 20 September 2011 Document Version: 1.7 Level 6, Durham House, 22 Durham Street West PO Box 106857, Auckland City Post Shop, Auckland
Email, SNMP, Securing the Web: SSL
Email, SNMP, Securing the Web: SSL 4 January 2015 Lecture 12 4 Jan 2015 SE 428: Advanced Computer Networks 1 Topics for Today Email (SMTP, POP) Network Management (SNMP) ASN.1 Secure Sockets Layer 4 Jan
Secure XML API Integration Guide - Periodic and Triggered add in
Secure XML API Integration Guide - Periodic and Triggered add in Document Control This is a control document DESCRIPTION Secure XML API Integration Guide - Periodic and Triggered add in CREATION DATE 15/05/2009
Application layer Web 2.0
Information Network I Application layer Web 2.0 Youki Kadobayashi NAIST They re revolving around the web, after all Name any Internet-related buzz: Cloud computing Smartphone Social media... You ll end
CONTENT of this CHAPTER
CONTENT of this CHAPTER v DNS v HTTP and WWW v EMAIL v SNMP 3.2.1 WWW and HTTP: Basic Concepts With a browser you can request for remote resource (e.g. an HTML file) Web server replies to queries (e.g.
Developer Guide: REST API Applications. SAP Mobile Platform 2.3
Developer Guide: REST API Applications SAP Mobile Platform 2.3 DOCUMENT ID: DC01926-01-0230-01 LAST REVISED: February 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This publication pertains
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
Secure XML API Integration Guide. (with FraudGuard add in)
Secure XML API Integration Guide (with FraudGuard add in) Document Control This is a control document DESCRIPTION Secure XML API Integration Guide (with FraudGuard add in) CREATION DATE 02/04/2007 CREATED
STORAGE S3 API. Storage S3 API. Programmer s Guide. Revision 1.0 (20/04/2012) Lunacloud Tel: 0845 0730827 21 Southampton Row Email: info@lunacloud.
STORAGE S API Storage S API Programmer s Guide Revision 1.0 (20/04/2012) Lunacloud Tel: 0845 070827 21 Southampton Row Email: [email protected] WC1B 5HA London www.lunacloud.com Table of Contents CHAPTER
Introduction to ServerIron ADX Application Switching and Load Balancing. Module 6: Content Switching (CSW) Revision 0310
Introduction to ServerIron ADX Application Switching and Load Balancing Module 6: Content Switching (CSW) Revision 0310 Objectives Upon completion of this module the student will be able to: Define layer
InternetVista Web scenario documentation
InternetVista Web scenario documentation Version 1.2 1 Contents 1. Change History... 3 2. Introduction to Web Scenario... 4 3. XML scenario description... 5 3.1. General scenario structure... 5 3.2. Steps
Protocolo HTTP. Web and HTTP. HTTP overview. HTTP overview
Web and HTTP Protocolo HTTP Web page consists of objects Object can be HTML file, JPEG image, Java applet, audio file, Web page consists of base HTML-file which includes several referenced objects Each
Design Notes for an Efficient Password-Authenticated Key Exchange Implementation Using Human-Memorable Passwords
Design Notes for an Efficient Password-Authenticated Key Exchange Implementation Using Human-Memorable Passwords Author: Paul Seymer CMSC498a Contents 1 Background... 2 1.1 HTTP 1.0/1.1... 2 1.2 Password
Riverbed Cascade Shark Common REST API v1.0
Riverbed Cascade Shark Common REST API v1.0 Copyright Riverbed Technology Inc. 2015 Created Feb 1, 2015 at 04:02 PM Contents Contents Overview Data Encoding Resources information: ping information: list
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
COMMERCIAL-IN-CONFIDENCE
CardEaseMPI a technical manual describing the use of CardEaseMPI 3-D Secure Merchant Plug-In. Authors: Nigel Jewell Issue 2.9. November 2014. COMMERCIAL-IN-CONFIDENCE Copyright CreditCall Limited 2007-2014
Qlik REST Connector Installation and User Guide
Qlik REST Connector Installation and User Guide Qlik REST Connector Version 1.0 Newton, Massachusetts, November 2015 Authored by QlikTech International AB Copyright QlikTech International AB 2015, All
GetLibraryUserOrderList
GetLibraryUserOrderList Webservice name: GetLibraryUserOrderList Adress: https://www.elib.se/webservices/getlibraryuserorderlist.asmx WSDL: https://www.elib.se/webservices/getlibraryuserorderlist.asmx?wsdl
Traitware Authentication Service Integration Document
Traitware Authentication Service Integration Document February 2015 V1.1 Secure and simplify your digital life. Integrating Traitware Authentication This document covers the steps to integrate Traitware
Symantec Protection Engine for Cloud Services Software Developer's Guide
Symantec Protection Engine for Cloud Services Software Developer's Guide Symantec Protection Engine for Cloud Services Software Developer's Guide The software described in this book is furnished under
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
Symantec Scan Engine Software Developer's Guide
Symantec Scan Engine Software Developer's Guide Symantec Scan Engine Software Developer's Guide The software described in this book is furnished under a license agreement and may be used only in accordance
VMware vcenter Log Insight Developer's Guide
VMware vcenter Log Insight Developer's Guide vcenter Log Insight 2.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new
1 Introduction: Network Applications
1 Introduction: Network Applications Some Network Apps E-mail Web Instant messaging Remote login P2P file sharing Multi-user network games Streaming stored video clips Internet telephone Real-time video
Messaging API. API Specification Document Messaging API. Functionality: Send SMS Messages.
Functionality: Send SMS Messages. This gateway can be accessed via the HTTP or HTTPs Protocol by submitting values to the API server and can be used to send simple text messages to single or multiple mobile
Introduction...3 Terms in this Document...3 Conditions for Secure Operation...3 Requirements...3 Key Generation Requirements...
Hush Encryption Engine White Paper Introduction...3 Terms in this Document...3 Conditions for Secure Operation...3 Requirements...3 Key Generation Requirements...4 Passphrase Requirements...4 Data Requirements...4
000-284. Easy CramBible Lab DEMO ONLY VERSION 000-284. Test284,IBM WbS.DataPower SOA Appliances, Firmware V3.6.0
Easy CramBible Lab 000-284 Test284,IBM WbS.DataPower SOA Appliances, Firmware V3.6.0 ** Single-user License ** This copy can be only used by yourself for educational purposes Web: http://www.crambible.com/
The HTTP Plug-in. Table of contents
Table of contents 1 What's it for?... 2 2 Controlling the HTTPPlugin... 2 2.1 Levels of Control... 2 2.2 Importing the HTTPPluginControl...3 2.3 Setting HTTPClient Authorization Module... 3 2.4 Setting
THE CHALLENGE OF ADMINISTERING WEBSITES OR APPLICATIONS THAT REQUIRE 24/7 ACCESSIBILITY
THE CHALLENGE OF ADMINISTERING WEBSITES OR APPLICATIONS THAT REQUIRE 24/7 ACCESSIBILITY As the constantly growing demands of businesses and organizations operating in a global economy cause an increased
HTTP 1.1 Web Server and Client
HTTP 1.1 Web Server and Client Finding Feature Information HTTP 1.1 Web Server and Client Last Updated: August 17, 2011 The HTTP 1.1 Web Server and Client feature provides a consistent interface for users
Asset Management and Tagging API v1. User Guide Version 2.3
Asset Management and Tagging API v1 User Guide Version 2.3 February 18, 2014 Copyright 2013-2014 by Qualys, Inc. All Rights Reserved. Qualys, the Qualys logo and QualysGuard are registered trademarks of
Deep-Secure Mail Guard Feature Guide
Deep-Secure Mail Guard Feature Guide The Deep-Secure Mail Guard provides a rich selection of message security functionality and content policy options to Simple Message Transfer Protocol (SMTP) and/or
CS640: Introduction to Computer Networks. Applications FTP: The File Transfer Protocol
CS640: Introduction to Computer Networks Aditya Akella Lecture 4 - Application Protocols, Performance Applications FTP: The File Transfer Protocol user at host FTP FTP user client interface local file
The Web History (I) The Web History (II)
Goals of Today s Lecture EE 122: The World Wide Web Ion Stoica TAs: Junda Liu, DK Moon, David Zats http://inst.eecs.berkeley.edu/~ee122/ (Materials with thanks to Vern Paxson, Jennifer Rexford, and colleagues
UpCloud API Documentation. API version 1.1.1 Updated Aug 13, 2013
UpCloud API Documentation API version 1.1.1 Updated Aug 13, 2013 INTRODUCTION 4 Version history... 4 ARCHITECTURE OVERVIEW 5 API overview... 5 API versioning... 5 Authentication... 5 Resource identifiers...
My IC Customizer: Descriptors of Skins and Webapps for third party User Guide
User Guide 8AL 90892 USAA ed01 09/2013 Table of Content 1. About this Document... 3 1.1 Who Should Read This document... 3 1.2 What This Document Tells You... 3 1.3 Terminology and Definitions... 3 2.
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
No. Time Source Destination Protocol Info 1190 131.859385 128.238.245.34 128.119.245.12 HTTP GET /ethereal-labs/http-ethereal-file1.html HTTP/1.
Ethereal Lab: HTTP 1. The Basic HTTP GET/response interaction 1190 131.859385 128.238.245.34 128.119.245.12 HTTP GET /ethereal-labs/http-ethereal-file1.html HTTP/1.1 GET /ethereal-labs/http-ethereal-file1.html
An Oracle White Paper June 2014. RESTful Web Services for the Oracle Database Cloud - Multitenant Edition
An Oracle White Paper June 2014 RESTful Web Services for the Oracle Database Cloud - Multitenant Edition 1 Table of Contents Introduction to RESTful Web Services... 3 Architecture of Oracle Database Cloud
NAB TRANSACT. XML API Integration Guide
NAB TRANSACT XML API Integration Guide 1 Contents 1. Introduction 3 1.1 About this Guide 3 1.2 Card Types Accepted 3 1.3 Prerequisites 3 1.3.1 Merchant Services 3 1.3.2 NAB Transact Service 3 1.4 Website
IETF 84 SCIM System for Cross-domain Identity Management. Kelly Grizzle [email protected]
IETF 84 SCIM System for Cross-domain Identity Management Kelly Grizzle [email protected] Agenda Overview What problem does SCIM solve? What is SCIM? History Lesson Deeper Dive Schema Protocol
CTIS 256 Web Technologies II. Week # 1 Serkan GENÇ
CTIS 256 Web Technologies II Week # 1 Serkan GENÇ Introduction Aim: to be able to develop web-based applications using PHP (programming language) and mysql(dbms). Internet is a huge network structure connecting
KMx Enterprise: Integration Overview for Member Account Synchronization and Single Signon
KMx Enterprise: Integration Overview for Member Account Synchronization and Single Signon KMx Enterprise includes two api s for integrating user accounts with an external directory of employee or other
EUR-Lex 2012 Data Extraction using Web Services
DOCUMENT HISTORY DOCUMENT HISTORY Version Release Date Description 0.01 24/01/2013 Initial draft 0.02 01/02/2013 Review 1.00 07/08/2013 Version 1.00 -v1.00.doc Page 2 of 17 TABLE OF CONTENTS 1 Introduction...
SOAP WSDL & HTTP MIME REST Web Services Companion Guide HIPAA Operating Rules (HOpR) CORE Phase II
SOAP WSDL & HTTP MIME REST Web Services Companion Guide HIPAA Operating Rules (HOpR) CORE Phase II Companion Guide for web service options supporting the connectivity for and retrieval of ERA (835) transactions.
Job Reference Guide. SLAMD Distributed Load Generation Engine. Version 1.8.2
Job Reference Guide SLAMD Distributed Load Generation Engine Version 1.8.2 June 2004 Contents 1. Introduction...3 2. The Utility Jobs...4 3. The LDAP Search Jobs...11 4. The LDAP Authentication Jobs...22
Resco CRM Server Guide. How to integrate Resco CRM with other back-end systems using web services
Resco CRM Server Guide How to integrate Resco CRM with other back-end systems using web services Integrating Resco CRM with other back-end systems using web services (Data, Metadata) This document consists
