Face Recognition. SDK Reference. Issue 02 Date HUAWEI TECHNOLOGIES CO., LTD.

Size: px
Start display at page:

Download "Face Recognition. SDK Reference. Issue 02 Date HUAWEI TECHNOLOGIES CO., LTD."

Transcription

1 Issue 02 Date HUAWEI TECHNOLOGIES CO., LTD.

2 Copyright Huawei Technologies Co., Ltd All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means without prior written consent of Huawei Technologies Co., Ltd. Trademarks and Permissions and other Huawei trademarks are trademarks of Huawei Technologies Co., Ltd. All other trademarks and trade names mentioned in this document are the property of their respective holders. Notice The purchased products, services and features are stipulated by the contract made between Huawei and the customer. All or part of the products, services and features described in this document may not be within the purchase scope or the usage scope. Unless otherwise specified in the contract, all statements, information, and recommendations in this document are provided "AS IS" without warranties, guarantees or representations of any kind, either express or implied. The information in this document is subject to change without notice. Every effort has been made in the preparation of this document to ensure accuracy of the contents, but all statements, information, and recommendations in this document do not constitute a warranty of any kind, express or implied. Issue 02 ( ) Copyright Huawei Technologies Co., Ltd. i

3 Contents Contents 1 Java SDK Quick Start SDK API Example Mappings Between Java SDK & APIs Python SDK Quick Start SDK API Example Mappings Between Python SDK & APIs Go SDK Quick Start SDK API Example Mappings Between Go SDK & APIs CSharp SDK Quick Start SDK API Example Mappings Between CSharp SDK & APIs A Change History Issue 02 ( ) Copyright Huawei Technologies Co., Ltd. ii

4 1 Java SDK 1 Java SDK 1.1 Quick Start Environment Preparation 1. Obtain the API-related documents. For details about Application Programming Interface (APIs), see the API Reference. Access the Products with Open APIs page on HUAWEI CLOUD to obtain API references of other cloud services. 2. Enable the service: Log in to the Management Console, select a sub-service, and click Enable Service on the right. You only need to enable the service once. 3. Obtain the AK/SK of your HUAWEI CLOUD account. If no AK/SK has been generated, log in to HUAWEI CLOUD, enter the My Credential page, and choose Access Keys > Add Access Key to obtain the access keys. 4. Install the JDK. The Java SDK can run on JDK1.8 or later. SDK Acquisition and Installation Take Eclipse as an example. After creating a Java project, perform the following steps to import the JAR file to the new project: 1. Download the SDK JAR file from the following URL: target/frs-sdk-1.0-jar-with-dependencies.jar 2. Copy the downloaded JAR file to the project folder. 3. Open the project in Eclipse, right-click the project, and choose Properties. 4. In the displayed dialog box, click Java Build Path. On the Libraries tab, click Add JARs to add the downloaded JAR file. 5. Click OK. Services involved in this document use the same JAR file. Issue 02 ( ) Copyright Huawei Technologies Co., Ltd. 1

5 1 Java SDK Using SDK Set parameters, initialize the SDK client, and invoke the SDK to access service APIs. //Set authentication parameters. String ak = "ak"; String sk = "sk"; String projectid = "projectid"; //Proxy information. If you need to use a proxy to access the service, add the proxy information here. ProxyHostInfo proxyhostinfo = new ProxyHostInfo("proxy ", 8080, "UserName", "Password" ); //Service info String url = " String region = "cn-north-1"; AuthInfo authinfo = new AuthInfo(url, region, ak, sk); try (FrsClient frsclient = new FrsClient(authInfo, projectid)) { //try (FrsClient frsclient = new FrsClient(authInfo, projectid, proxyhostinfo)) { //The proxy is required. //Before invocation, enable the service on the HUAWEI CLOUD management console. //Create a face set. String facesetname = "facesetname"; int facesetcapacity = 10000; //Customize attributes during face set creation. CreateExternalFields createexternalfields = new CreateExternalFields(); createexternalfields.addfield("testinteger", FieldType.INTEGER); CreateFaceSetResult createfacesetresult = frsclient.getfacesetservice().createfaceset(facesetname, facesetcapacity, createexternalfields); System.out.println(createFaceSetResult.toJSONString()); //Obtain the face set. GetAllFaceSetResult getallfacesetsresult = frsclient.getfacesetservice().getallfaceset(); System.out.println(getAllFaceSetResult.toJSONString()); //Add faces. String imageid = "image1"; File image = new File("data/face.jpg"); byte[] filedata = FileUtils.readFileToByteArray(image); String imagebase64 = Base64.encodeBase64String(fileData); AddExternalFields addexternalfields = new AddExternalFields(); addexternalfields.addfield("testinteger", 123); AddFaceResult addfaceresult = frsclient.getfaceservice().addfacebybase64(facesetname, imageid, imagebase64, addexternalfields); System.out.println(addFaceResult.toJSONString()); //Compare faces. String image1path = "data/face1.jpg"; String image2path = "data/face2.jpg"; CompareFaceResult comparefaceresult = frsclient.getcompareservice().comparefacebyfile(image1path, image2path); System.out.println(compareFaceResult.toJSONString()); //Detect faces. String obsurl = "/bucket/face.jpg"; String attr = "0,1,2,3,4,5"; DetectFaceResult detectfaceresult = frsclient.getdetectservice().detectfacebyobsurl(obsurl, attr); Issue 02 ( ) Copyright Huawei Technologies Co., Ltd. 2

6 1 Java SDK System.out.println(detectFaceResult.toJSONString()); } 1.2 SDK API Example 1. Construct a service client. String ak = "ak"; String sk = "sk"; String projectid = "projectid"; //Proxy information. If you need to use a proxy to access the service, add the proxy information here. ProxyHostInfo proxyhostinfo = new ProxyHostInfo("proxy", 8080, "UserName", "Password" ); //Service info String url = " String region = "cn-north-1"; AuthInfo authinfo = new AuthInfo(url, region, ak, sk); FrsClient frsclient = new FrsClient(authInfo, projectid); //FrsClient frsclient = new FrsClient(authInfo, projectid, proxyhostinfo);//if you need to use a proxy to access the service, add the proxy information to the third parameter. 2. Create a face set. CreateExternalFields createexternalfields = new CreateExternalFields(); createexternalfields.addfield("testinteger", FieldType.INTEGER); CreateFaceSetResult createfacesetresult = frsclient.getfacesetservice().createfaceset(facesetname, facesetcapacity, createexternalfields); 3. Add faces. String imageid = "image1"; File image = new File("data/face.jpg"); byte[] filedata = FileUtils.readFileToByteArray(image); String imagebase64 = Base64.encodeBase64String(fileData); AddExternalFields addexternalfields = new AddExternalFields(); addexternalfields.addfield("testinteger", 123); AddFaceResult addfaceresult = frsclient.getfaceservice().addfacebybase64(facesetname, imageid, imagebase64, addexternalfields); 4. Invoke the Face Detection service. String obsurl = "/bucket/face.jpg"; String attr = "0,1,2,3,4,5"; DetectFaceResult detectfaceresult = frsclient.getdetectservice().detectfacebyobsurl(obsurl, attr); 1.3 Mappings Between Java SDK & APIs CompareServic e comparefacebybas e64 comparefacebyfile comparefacebyobsurl POST /v1/{project_id}/face-compare DetectService detectfacebybase64 POST /v1/{project_id}/face-detect Issue 02 ( ) Copyright Huawei Technologies Co., Ltd. 3

7 1 Java SDK detectfacebyfile detectfacebyobsurl FaceService addfacebybase64 POST /v1/{project_id}/face-sets/ addfacebyfile {face_set_name}/faces addfacebyobsurl getfaces getface deletefacebyfaceid deletefacebyfieldid GET /v1/{project_id}/face-sets/ {face_set_name}/faces?offset=xxx&limit=xxx GET /v1/{project_id}/face-sets/ {face_set_name}/faces?face_id={face_id} {face_set_name}/faces? external_image_id=imageid {face_set_name}/faces?face_id=faceid {face_set_name}/faces?id=home FaceSetService createfaceset POST /v1/{project_id}/face-sets LiveDetectServ ice QualityService getallfacesets getfaceset deletefaceset livedetectbybase64 livedetectbyfile livedetectbyobsurl facequalitybybase6 4 facequalitybyfile blurclassifybybase 64 blurclassifybyfile deletefacebyexternalimageid facequalitybyobsurl blurclassifybyobsurl GET /v1/{project_id}/face-sets GET /v1/{project_id}/face-sets/{face_set_name} {face_set_name} POST /v1/{project_id}/live-detect POST /v1/{project_id}/face/quality/face-quality POST /v1/{project_id}/face/quality/blur-classify Issue 02 ( ) Copyright Huawei Technologies Co., Ltd. 4

8 1 Java SDK headposeestimate- ByBase64 SearchService POST /v1/{project_id}/face/quality/head-poseestimate headposeestimate- ByFile headposeestimate- ByObsUrl searchfacebybase6 4 searchfacebyfile searchfacebyobsur l searchfacebyfaceid POST /v1/{project_id}/face-sets/ {face_set_name}/search Issue 02 ( ) Copyright Huawei Technologies Co., Ltd. 5

9 2 Python SDK 2 Python SDK 2.1 Quick Start Environment Preparation 1. Obtain the API-related documents. For details about Application Programming Interface (APIs), see the API Reference. Access the Products with Open APIs page on HUAWEI CLOUD to obtain API references of other cloud services. 2. Enable the service: Log in to the Management Console, select a sub-service, and click Enable Service on the right. You only need to enable the service once. 3. Obtain the AK/SK of your HUAWEI CLOUD account. If no AK/SK has been generated, log in to HUAWEI CLOUD, enter the My Credential page, and choose Access Keys > Add Access Key to obtain the access keys. 4. Install the Python environment. The Python SDK can run on Python2.7 and Python3.6. SDK Acquisition and Installation Using SDK 1. Download the Python SDK from the following URL: 2. In the SDK directory, run the Python setup.py install command to install the Python SDK to the development environment, or directly import the.py file to the project. Set parameters, initialize the SDK client, and invoke the SDK to access service APIs. ak = "ak" sk = "sk" projectid = "projectid" endpoint = " proxy = {"http": " "https": " authinfo = AuthInfo(ak, sk, endpoint) Issue 02 ( ) Copyright Huawei Technologies Co., Ltd. 6

10 2 Python SDK frsclient = FrsClient(authInfo=authInfo, projectid=projectid) # frsclient = FrsClient(authInfo=authInfo, projectid=projectid, proxyhostinfo=proxy) # The proxy is required to access the service. //Compare faces. cs = frsclient.getcompareservice() res = cs.comparefacebyfile(image1path, image2path) print res.getevalresult() //Perform liveness detection. lds = frsclient.getlivedetectservice() videofile = "D:/EI/Code/frs/sdk/java/frs-okhttp/frs-sdk-demo/data/video.mp4" actions = "1" res = lds.livedetectbyfile(videofile, actions) print res.getevalresult() 2.2 SDK API Example 1. Construct a service client. ak = "ak" sk = "sk" projectid = "projectid" endpoint = " proxy = {"http": " "https": " authinfo = AuthInfo(ak, sk, endpoint) frsclient = FrsClient(authInfo=authInfo, projectid=projectid) # frsclient = FrsClient(authInfo=authInfo, projectid=projectid, proxyhostinfo=proxy) #If you need to use a proxy to access the service, add the proxy information to the third parameter. 2. Create a face set. fss = frsclient.getfacesetservice() externalfields = "{\"timestamp\":{\"type\" : \"long\"},\"id\":{\"type\": \"string\"},\"number\":{\"type\":\"integer\"}}" ret = fss.createfaceset("facesetname", 10000, externalfields) 3. Add faces. fs = frsclient.getfaceservice() externalfields = "{\"timestamp\": 12,\"id\": \"home\"}" res = fs.addfacebyobsurl("facesetname", "/obs/image.jpg", "externalimageid", externalfields) 4. Detect faces. ds = frs.getdetectservice() res = ds.detectfacebyfile("imagepath", "0,1,2,3") 2.3 Mappings Between Python SDK & APIs CompareServic e comparefacebybas e64 comparefacebyfile comparefacebyobsurl POST /v1/{project_id}/face-compare DetectService detectfacebybase64 POST /v1/{project_id}/face-detect detectfacebyfile Issue 02 ( ) Copyright Huawei Technologies Co., Ltd. 7

11 2 Python SDK detectfacebyobsurl FaceService addfacebybase64 POST /v1/{project_id}/face-sets/ addfacebyfile {face_set_name}/faces addfacebyobsurl getfaces getface deletefacebyfaceid deletefacebyfieldid GET /v1/{project_id}/face-sets/ {face_set_name}/faces?offset=xxx&limit=xxx GET /v1/{project_id}/face-sets/ {face_set_name}/faces?face_id={face_id} {face_set_name}/faces? external_image_id=imageid {face_set_name}/faces?face_id=faceid {face_set_name}/faces?id=home FaceSetService createfaceset POST /v1/{project_id}/face-sets LiveDetectServ ice getallfacesets getfaceset deletefaceset livedetectbybase64 livedetectbyfile livedetectbyobsurl facequalitybyfile blurclassifybybase 64 blurclassifybyfile deletefacebyexternalimageid facequalitybyobsurl blurclassifybyobsurl headposeestimate- ByBase64 POST /v1/{project_id}/face/quality/head-poseestimate headposeestimate- ByFile GET /v1/{project_id}/face-sets GET /v1/{project_id}/face-sets/{face_set_name} {face_set_name} POST /v1/{project_id}/live-detect POST /v1/{project_id}/face/quality/blur-classify Issue 02 ( ) Copyright Huawei Technologies Co., Ltd. 8

12 2 Python SDK headposeestimate- ByObsUrl SearchService searchfacebybase6 4 searchfacebyfile searchfacebyobsur l searchfacebyfaceid POST /v1/{project_id}/face-sets/ {face_set_name}/search Issue 02 ( ) Copyright Huawei Technologies Co., Ltd. 9

13 3 Go SDK 3 Go SDK 3.1 Quick Start Environment Preparation 1. Obtain the API-related documents. For details about Application Programming Interface (APIs), see the API Reference. Access the Products with Open APIs page on HUAWEI CLOUD to obtain API references of other cloud services. 2. Enable the service: Log in to the Management Console, select a sub-service, and click Enable Service on the right. You only need to enable the service once. 3. Obtain the AK/SK of your HUAWEI CLOUD account. If no AK/SK has been generated, log in to HUAWEI CLOUD, enter the My Credential page, and choose Access Keys > Add Access Key to obtain the access keys. 4. Install the Go and set the Go language environment variables. SDK Acquisition and Installation Using SDK Download the Go SDK from the following URL: Set parameters, initialize the SDK client, and invoke the SDK to access service APIs. authinfo := param.authinfo{endpoint: " Ak: "ak", Sk: "sk"} frsclient := service.newfrsclient(&authinfo, "projectid") //proxyinfo := param.proxyhostinfo{proxy: " //frsclient := service.newfrsclientwithproxy(&authinfo, "projectid", &proxyinfo)//if you need to use a proxy to access the service, add the proxy information to the third parameter. //Compare faces. compareresult, err := Issue 02 ( ) Copyright Huawei Technologies Co., Ltd. 10

14 3 Go SDK frsclient.getcompareservice().comparefacebyfile("image1path", "image2path") if nil!= err { fmt.println(err.error()) } else { fmt.println(compareresult) } //Detect faces. detectresult, err2 := frsclient.getdetectservice().detectfacebyobsurlwithattr("obsurl", "0,1,2") if nil!= err2 { fmt.println(err2.error()) } else { fmt.println(detectresult) } 3.2 SDK API Example 1. Construct a service client. authinfo := param.authinfo{endpoint: " Ak: "ak", Sk: "sk"} frsclient := service.newfrsclient(&authinfo, "projectid") //proxyinfo := param.proxyhostinfo{proxy: " //frsclient := service.newfrsclientwithproxy(&authinfo, "projectid", &proxyinfo)//if you need to use a proxy to access the service, add the proxy information to the third parameter. 2. Create a face set. externalfields := param.newcreateexternalfields() externalfields.addfield("testinteger", param.integer) result, err := frsclient.getfacesetservice().createfacesetwithextfields("facesetname", 10000, externalfields) if nil!= err { fmt.println(err.error()) } else { fmt.println(result) } 3. Add faces. externalfields := param.newaddexternalfields() externalfields.addfield("testinteger", 123) result, err := frsclient.getfaceservice().addfacebyfilefull("facesetname", "externalimageid", "imagepath", externalfields) if nil!= err { fmt.println(err.error()) } else { fmt.println(result) } 4. Detect faces. detectresult, err := frsclient.getdetectservice().detectfacebyobsurlwithattr("/obs/image.jpg", "0,1,2") if nil!= err { fmt.println(err.error()) } else { fmt.println(detectresult) } Issue 02 ( ) Copyright Huawei Technologies Co., Ltd. 11

15 3 Go SDK 3.3 Mappings Between Go SDK & APIs CompareServic e DetectService CompareFaceByBas e64 CompareFaceByFile DetectFaceByBase6 4 DetectFaceByFile DetectFaceByObsUr l POST /v1/{project_id}/face-compare POST /v1/{project_id}/face-detect FaceService AddFaceByBase64 POST /v1/{project_id}/face-sets/ AddFaceByFile {face_set_name}/faces AddFaceByObsUrl GetFaces GetFace DeleteFaceByFaceId CompareFaceByObsUrl DeleteFaceByExternalImageId DeleteFaceByFieldId GET /v1/{project_id}/face-sets/ {face_set_name}/faces?offset=xxx&limit=xxx GET /v1/{project_id}/face-sets/ {face_set_name}/faces?face_id={face_id} {face_set_name}/faces? external_image_id=imageid {face_set_name}/faces?face_id=faceid {face_set_name}/faces?id=home FaceSetService CreateFaceSet POST /v1/{project_id}/face-sets LiveDetectServ ice GetAllFaceSets GetFaceSet DeleteFaceSet LiveDetectByBase6 4 LiveDetectByFile GET /v1/{project_id}/face-sets GET /v1/{project_id}/face-sets/{face_set_name} {face_set_name} POST /v1/{project_id}/live-detect Issue 02 ( ) Copyright Huawei Technologies Co., Ltd. 12

16 3 Go SDK LiveDetectByObsUr l QualityService SearchService FaceQualityByBase 64 FaceQualityByFile BlurClassifyByBase 64 BlurClassifyByFile FaceQualityByObsUrl BlurClassifyByObsUrl HeadPoseEstimate- ByBase64 POST /v1/{project_id}/face/quality/head-poseestimate HeadPoseEstimate- ByFile HeadPoseEstimate- ByObsUrl SearchFaceByBase6 4 SearchFaceByFile SearchFaceByObsU rl SearchFaceByFaceI d POST /v1/{project_id}/face/quality/face-quality POST /v1/{project_id}/face/quality/blur-classify POST /v1/{project_id}/face-sets/ {face_set_name}/search Issue 02 ( ) Copyright Huawei Technologies Co., Ltd. 13

17 4 CSharp SDK 4 CSharp SDK 4.1 Quick Start Environment Preparation 1. Obtain the API-related documents. For details about Application Programming Interface (APIs), see the API Reference. Access the Products with Open APIs page on HUAWEI CLOUD to obtain API references of other cloud services. 2. Enable the service: Log in to the Management Console, select a sub-service, and click Enable Service on the right. You only need to enable the service once. 3. Obtain the AK/SK of your HUAWEI CLOUD account. If no AK/SK has been generated, log in to HUAWEI CLOUD, enter the My Credential page, and choose Access Keys > Add Access Key to obtain the access keys. 4. Install the.net development environment. SDK Acquisition and Installation Using SDK Download the CSharp SDK source code from the following website: Set parameters, initialize the SDK client, and invoke the SDK to access service APIs. AuthInfo authinfo = new AuthInfo(" "ak", "sk"); FrsClient frsclient = new FrsClient(authInfo, "project id"); //ProxyHostInfo proxy := new ProxyHostInfo("host", 8080); //FrsClient frsclient = new FrsClient (authinfo, "projectid", proxy); //If you need to use a proxy to access the service, add the proxy information to the third parameter. //Compare faces. CompareFaceResult comparefaceresult = Issue 02 ( ) Copyright Huawei Technologies Co., Ltd. 14

18 4 CSharp SDK frsclient.getcompareservice().comparefacebyurl("/obs/1.jpg", "/obs/1.jpg"); Console.WriteLine(compareFaceResult.GetJsonString()); comparefaceresult = frsclient.getcompareservice().comparefacebyfile("/resource/ 1.jpeg", "/resource/1.jpeg"); Console.WriteLine(compareFaceResult.GetJsonString()); //Detect faces. DetectFaceResult detectfaceresult = frsclient.getdetectservice().detectfacebyurl("/obs/1.jpg", "0,1,2"); Console.WriteLine(detectFaceResult.GetJsonString()); DetectFaceResult detectfaceresult2 = frsclient.getdetectservice().detectfacebyfile("/resource/1.jpeg", "1,2"); Console.WriteLine(detectFaceResult2.GetJsonString()); 4.2 SDK API Example 1. Construct a service client. AuthInfo authinfo = new AuthInfo(" "ak", "sk"); FrsClient frsclient = new FrsClient(authInfo, "project id"); //ProxyHostInfo proxy := new ProxyHostInfo("host", 8080); //FrsClient frsclient = new FrsClient (authinfo, "projectid", proxy);//if you need to use a proxy to access the service, add the proxy information to the third parameter. 2. Create a face set. CreateExternalFields createexternalfields = new CreateExternalFields(); createexternalfields.addfield("testint", FieldType.INTEGER); createexternalfields.addfield("teststr", FieldType.STRING); CreateFaceSetResult createfacesetresult = frsclient.getfacesetservice().createfaceset("face_set_name_test", 10000, createexternalfields); Console.WriteLine(createFaceSetResult.GetJsonString()); 3. Add faces. AddExternalFields addexternalfields = new AddExternalFields(); addexternalfields.addfield("testint", 1); addexternalfields.addfield("teststr", "str"); AddFaceResult addfaceresult = frsclient.getfaceservice().addfacebyfile("face_set_name_test", "/resource/ 3.png", addexternalfields); Console.WriteLine(addFaceResult.GetJsonString()); 4. Detect faces. DetectFaceResult detectfaceresult = frsclient.getdetectservice().detectfacebyurl("/obs/1.jpg", "0,1,2"); Console.WriteLine(detectFaceResult.GetJsonString()); DetectFaceResult detectfaceresult2 = frsclient.getdetectservice().detectfacebyfile("/resource/1.jpeg", "1,2"); Console.WriteLine(detectFaceResult2.GetJsonString()); 4.3 Mappings Between CSharp SDK & APIs CompareServic e CompareFaceByBase64 CompareFaceByFile CompareFaceByUrl POST /v1/{project_id}/face-compare DetectService DetectFaceByBase64 POST /v1/{project_id}/face-detect DetectFaceByFile Issue 02 ( ) Copyright Huawei Technologies Co., Ltd. 15

19 4 CSharp SDK DetectFaceByUrl FaceService AddFaceByBase64 POST /v1/{project_id}/face-sets/ AddFaceByFile {face_set_name}/faces AddFaceByUrl GetFaces GetFace DeleteFaceByFaceId DeleteFaceByExternalImageId DeleteFaceByFieldId GET /v1/{project_id}/face-sets/ {face_set_name}/faces? offset=xxx&limit=xxx GET /v1/{project_id}/face-sets/ {face_set_name}/faces?face_id={face_id} {face_set_name}/faces? external_image_id=imageid {face_set_name}/faces?face_id=faceid {face_set_name}/faces?id=home FaceSetService CreateFaceSet POST /v1/{project_id}/face-sets LiveDetectServ ice GetAllFaceSets GetFaceSet DeleteFaceSet LiveDetectByBase64 LiveDetectByFile LiveDetectByUrl GET /v1/{project_id}/face-sets GET /v1/{project_id}/face-sets/ {face_set_name} {face_set_name} POST /v1/{project_id}/live-detect QualityService FaceQualityByBase64 POST /v1/{project_id}/face/quality/facequality FaceQualityByFile FaceQualityByUrl BlurClassifyByBase64 BlurClassifyByFile BlurClassifyByUrl POST /v1/{project_id}/face/quality/blurclassify HeadPoseEstimateBy- Base64 POST /v1/{project_id}/face/quality/headpose-estimate HeadPoseEstimateByFile Issue 02 ( ) Copyright Huawei Technologies Co., Ltd. 16

20 4 CSharp SDK HeadPoseEstimateByUrl SearchService SearchFaceByBase64 POST /v1/{project_id}/face-sets/ SearchFaceByFile {face_set_name}/search SearchFaceByObsUrl SearchFaceByFaceId Issue 02 ( ) Copyright Huawei Technologies Co., Ltd. 17

21 A Change History A Change History Date Description This issue is the second official release, in which CSharp SDK is added This is the first official release. Issue 02 ( ) Copyright Huawei Technologies Co., Ltd. 18

Image Recognition. SDK Reference. Issue 09 Date HUAWEI TECHNOLOGIES CO., LTD.

Image Recognition. SDK Reference. Issue 09 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 09 Date 2019-01-31 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2019. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

Data Ingestion Service. SDK Development Guide. Issue 03 Date HUAWEI TECHNOLOGIES CO., LTD.

Data Ingestion Service. SDK Development Guide. Issue 03 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 03 Date 2018-06-12 HUAWEI TECHNOLOGIES CO., LTD. 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means without prior written consent of

More information

Third-Party Client (s3fs) User Guide

Third-Party Client (s3fs) User Guide Issue 02 Date 2017-09-28 HUAWEI TECHNOLOGIES CO., LTD. 2017. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means without prior written consent of

More information

Optical Character Recognition. SDK Reference. Issue 04 Date

Optical Character Recognition. SDK Reference. Issue 04 Date Issue 04 Date 2018-09-12 Contents Contents 1 SDK Environment Setup...1 1.1 Applying for a Service...1 1.2 Obtaining the SDK... 1 1.3 Preparing a Java Development Environment... 1 1.4 Installing Eclipse

More information

Third-Party Client (s3fs) User Guide

Third-Party Client (s3fs) User Guide Issue 02 Date 2017-09-28 HUAWEI TECHNOLOGIES CO., LTD. 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means without prior written consent of

More information

Object Storage Service. Product Introduction. Issue 04 Date HUAWEI TECHNOLOGIES CO., LTD.

Object Storage Service. Product Introduction. Issue 04 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 04 Date 2017-12-20 HUAWEI TECHNOLOGIES CO., LTD. 2017. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means without prior written consent of

More information

Object Storage Service. Client Guide (OBS Browser) Issue 02 Date HUAWEI TECHNOLOGIES CO., LTD.

Object Storage Service. Client Guide (OBS Browser) Issue 02 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 02 Date 2018-01-17 HUAWEI TECHNOLOGIES CO., LTD. 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means without prior written consent of

More information

FunctionGraph. Best Practices. Issue 05 Date HUAWEI TECHNOLOGIES CO., LTD.

FunctionGraph. Best Practices. Issue 05 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 05 Date 2018-09-12 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

SmartAX MT883 ADSL CPE Quick Start

SmartAX MT883 ADSL CPE Quick Start #### #### #### SmartAX MT883 CPE Quick Start 1 Connecting the Cables 1 2 4 3 1 Telephone jack on the wall 2 Splitter 3 Telephone 4 Computer 1 #### #### #### To connect the cables, do as follows: Step 1

More information

Live Streaming Accelerator. Quick Start. Issue 03 Date HUAWEI TECHNOLOGIES CO., LTD.

Live Streaming Accelerator. Quick Start. Issue 03 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 03 Date 2018-08-30 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

AD SSO Technical White Paper

AD SSO Technical White Paper Issue V1.0 Date 2017-02-28 Huawei Technologies Co., Ltd. 2017. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means without prior written consent of

More information

Object Storage Service. Client Guide (OBS Browser) Issue 10 Date HUAWEI TECHNOLOGIES CO., LTD.

Object Storage Service. Client Guide (OBS Browser) Issue 10 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 10 Date 2018-07-15 HUAWEI TECHNOLOGIES CO., LTD. 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means without prior written consent of

More information

OBS. Management Console Operation Guide. Issue 02 Date HUAWEI TECHNOLOGIES CO., LTD.

OBS. Management Console Operation Guide. Issue 02 Date HUAWEI TECHNOLOGIES CO., LTD. Management Console Operation Guide Issue 02 Date 2015-10-30 HUAWEI TECHNOLOGIES CO., LTD. 2015. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means

More information

Database Security Service. FAQs. Issue 19 Date HUAWEI TECHNOLOGIES CO., LTD.

Database Security Service. FAQs. Issue 19 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 19 Date 2019-04-08 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2019. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

esdk Storage Plugins 1.0.RC4 Compilation Guide 01(vRO) Issue 01 Date HUAWEI TECHNOLOGIES CO., LTD.

esdk Storage Plugins 1.0.RC4 Compilation Guide 01(vRO) Issue 01 Date HUAWEI TECHNOLOGIES CO., LTD. 1.0.RC4 Issue 01 Date 2017-04-06 HUAWEI TECHNOLOGIES CO., LTD. 2017. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means without prior written consent

More information

Vulnerability Scan Service. User Guide. Issue 20 Date HUAWEI TECHNOLOGIES CO., LTD.

Vulnerability Scan Service. User Guide. Issue 20 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 20 Date 2018-08-30 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

HUAWEI CLOUD (International) FAQs. Issue 01 Date HUAWEI TECHNOLOGIES CO., LTD.

HUAWEI CLOUD (International) FAQs. Issue 01 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 01 Date 2019-01-24 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2019. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

Anti-DDoS. FAQs. Issue 11 Date HUAWEI TECHNOLOGIES CO., LTD.

Anti-DDoS. FAQs. Issue 11 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 11 Date 2018-05-28 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2019. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

Anti-DDoS. User Guide (Paris) Issue 01 Date HUAWEI TECHNOLOGIES CO., LTD.

Anti-DDoS. User Guide (Paris) Issue 01 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 01 Date 2018-08-15 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

Elastic Load Balance. User Guide. Issue 01 Date HUAWEI TECHNOLOGIES CO., LTD.

Elastic Load Balance. User Guide. Issue 01 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 01 Date 2018-04-30 HUAWEI TECHNOLOGIES CO., LTD. 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means without prior written consent of

More information

Advanced Anti-DDoS. User Guide. Issue 17 Date HUAWEI TECHNOLOGIES CO., LTD.

Advanced Anti-DDoS. User Guide. Issue 17 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 17 Date 2018-08-13 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2019. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

Better Translation Technology. XTM Connect Change Control for GIT (backend version)

Better Translation Technology. XTM Connect Change Control for GIT (backend version) Better Translation Technology XTM Connect Change Control for GIT (backend version) Documentation for XTM Connect Change Control for GIT. Published by XTM International Ltd. Copyright XTM International

More information

Oracle Cloud. Using Oracle Eloqua Adapter Release E

Oracle Cloud. Using Oracle Eloqua Adapter Release E Oracle Cloud Using Oracle Eloqua Adapter Release 12.1.3 E65434-01 August 2015 Oracle Cloud Using Oracle Eloqua Adapter, Release 12.1.3 E65434-01 Copyright 2015, Oracle and/or its affiliates. All rights

More information

Healthcare Database Connector

Healthcare Database Connector Healthcare Database Connector Installation and Setup Guide Version: 1.0.x Written by: Product Knowledge, R&D Date: September 2016 2015 Lexmark International Technology, S.A. All rights reserved. Lexmark

More information

My Account. User Guide. Issue 01 Date HUAWEI TECHNOLOGIES CO., LTD.

My Account. User Guide. Issue 01 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 01 Date 2018-09-28 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

Publishing and Subscribing to Cloud Applications with Data Integration Hub

Publishing and Subscribing to Cloud Applications with Data Integration Hub Publishing and Subscribing to Cloud Applications with Data Integration Hub 1993-2015 Informatica LLC. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying,

More information

espace SoftConsole V200R001C02 Product Description HUAWEI TECHNOLOGIES CO., LTD. Issue 01 Date

espace SoftConsole V200R001C02 Product Description HUAWEI TECHNOLOGIES CO., LTD. Issue 01 Date espace SoftConsole V200R001C02 Issue 01 Date 2012-07-10 HUAWEI TECHNOLOGIES CO., LTD. 2012. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means without

More information

CDN. Product Description. Issue 03 Date HUAWEI TECHNOLOGIES CO., LTD.

CDN. Product Description. Issue 03 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 03 Date 2018-08-30 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

Running the ESPM Twitter Integration sample app on SAP Cloud Platform

Running the ESPM Twitter Integration sample app on SAP Cloud Platform Running the ESPM Twitter Integration sample app on SAP Cloud Platform By Daniel Gomes da Silva Learn how to download, build, deploy, configure and run the ESPM Twitter Integration JAVA sample app on SAP

More information

Object Storage Service. Developer Guide. Issue 05 Date HUAWEI TECHNOLOGIES CO., LTD.

Object Storage Service. Developer Guide. Issue 05 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 05 Date 2018-12-14 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

Content Matrix. Evaluation Guide. February 12,

Content Matrix. Evaluation Guide. February 12, Content Matrix Evaluation Guide February 12, 2018 www.metalogix.com info@metalogix.com 202.609.9100 Copyright International GmbH, 2002-2018 All rights reserved. No part or section of the contents of this

More information

One Identity Active Roles 7.2. Azure AD and Office 365 Management Administrator Guide

One Identity Active Roles 7.2. Azure AD and Office 365 Management Administrator Guide One Identity Active Roles 7.2 Azure AD and Office 365 Management Administrator Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright.

More information

Integration Guide. LoginTC

Integration Guide. LoginTC Integration Guide LoginTC Revised: 21 November 2016 About This Guide Guide Type Documented Integration WatchGuard or a Technology Partner has provided documentation demonstrating integration. Guide Details

More information

Virtual Private Cloud. User Guide. Issue 21 Date HUAWEI TECHNOLOGIES CO., LTD.

Virtual Private Cloud. User Guide. Issue 21 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 21 Date 2018-09-30 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

METADATA FRAMEWORK 6.3. and High Availability

METADATA FRAMEWORK 6.3. and High Availability METADATA FRAMEWORK 6.3 and High Availability Publishing Information Software version 6.3.160 Document version 4 Publication date May 22, 2017 Copyright (c) 2005-2017 Varonis Systems Inc. All rights reserved.

More information

HUAWEI Secospace USG Series User Management and Control White Paper

HUAWEI Secospace USG Series User Management and Control White Paper Doc. code HUAWEI Secospace USG Series User Management and Control White Paper Issue 1.0 Date 2014-03-27 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2012. All rights reserved.

More information

Database Security Service. Service Overview. Issue 16 Date HUAWEI TECHNOLOGIES CO., LTD.

Database Security Service. Service Overview. Issue 16 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 16 Date 2019-03-08 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2019. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Using Oracle Eloqua Cloud Adapter Release 12.2.1.1.0 E73562-01 June 2016 Oracle Fusion Middleware Using Oracle Eloqua Cloud Adapter, Release 12.2.1.1.0 E73562-01 Copyright 2015,

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Using Oracle Eloqua Cloud Adapter Release 12.2.1.3.0 E83336-02 July 2017 Documentation for Oracle Service-Oriented Architecture (SOA) developers that describes how to use the Oracle

More information

Live Data Connection to SAP Universes

Live Data Connection to SAP Universes Live Data Connection to SAP Universes You can create a Live Data Connection to SAP Universe using the SAP BusinessObjects Enterprise (BOE) Live Data Connector component deployed on your application server.

More information

Oracle Cloud. Oracle Cloud Adapters Postinstallation Configuration Guide E

Oracle Cloud. Oracle Cloud Adapters Postinstallation Configuration Guide E Oracle Cloud Oracle Cloud Adapters Postinstallation Configuration Guide 12.1.3 E65437-05 October 2016 Oracle Cloud Oracle Cloud Adapters Postinstallation Configuration Guide, 12.1.3 E65437-05 Copyright

More information

Veritas NetBackup and Oracle Cloud Infrastructure Object Storage ORACLE HOW TO GUIDE FEBRUARY 2018

Veritas NetBackup and Oracle Cloud Infrastructure Object Storage ORACLE HOW TO GUIDE FEBRUARY 2018 Veritas NetBackup and Oracle Cloud Infrastructure Object Storage ORACLE HOW TO GUIDE FEBRUARY 2018 0. Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

Informatica Cloud Platform Building Connectors with the Toolkit Student Lab: Prerequisite Installations. Version Connectors Toolkit Training

Informatica Cloud Platform Building Connectors with the Toolkit Student Lab: Prerequisite Installations. Version Connectors Toolkit Training Informatica Cloud Platform Building Connectors with the Toolkit Student Lab: Prerequisite Installations Version Connectors Toolkit Training 2015-01 Informatica Cloud Platform Building Connectors with the

More information

SCCM Plug-in User Guide. Version 3.0

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

More information

Table of Contents. Abstract

Table of Contents. Abstract JDBC User Guide 2013 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording or otherwise) without prior consent

More information

BLUEPRINT TEAM REPOSITORY. For Requirements Center & Requirements Center Test Definition

BLUEPRINT TEAM REPOSITORY. For Requirements Center & Requirements Center Test Definition BLUEPRINT TEAM REPOSITORY Installation Guide for Windows For Requirements Center & Requirements Center Test Definition Table Of Contents Contents Table of Contents Getting Started... 3 About the Blueprint

More information

ForeScout Extended Module for Qualys VM

ForeScout Extended Module for Qualys VM ForeScout Extended Module for Qualys VM Version 1.2.1 Table of Contents About the Qualys VM Integration... 3 Additional Qualys VM Documentation... 3 About This Module... 3 Components... 4 Considerations...

More information

Oracle Service Registry - Oracle Enterprise Gateway Integration Guide

Oracle Service Registry - Oracle Enterprise Gateway Integration Guide An Oracle White Paper June 2011 Oracle Service Registry - Oracle Enterprise Gateway Integration Guide 1 / 19 Disclaimer The following is intended to outline our general product direction. It is intended

More information

Oracle Information Rights Management Oracle IRM Windows Authentication Extension Guide 10gR3 August 2008

Oracle Information Rights Management Oracle IRM Windows Authentication Extension Guide 10gR3 August 2008 10gR3 August 2008 ,, 10gR3 Copyright 2007, 2008, Oracle. All rights reserved. Primary Author: Martin Abrahams Contributing Author: Martin Wykes The Programs (which include both the software and documentation)

More information

CA IdentityMinder. Glossary

CA IdentityMinder. Glossary CA IdentityMinder Glossary 12.6.3 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your informational

More information

ActiveSpaces Transactions. Quick Start Guide. Software Release Published May 25, 2015

ActiveSpaces Transactions. Quick Start Guide. Software Release Published May 25, 2015 ActiveSpaces Transactions Quick Start Guide Software Release 2.5.0 Published May 25, 2015 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED

More information

Configuring SAML-based Single Sign-on for Informatica Web Applications

Configuring SAML-based Single Sign-on for Informatica Web Applications Configuring SAML-based Single Sign-on for Informatica Web Applications Copyright Informatica LLC 2017. Informatica LLC. Informatica, the Informatica logo, Informatica Big Data Management, and Informatica

More information

ForeScout Extended Module for ServiceNow

ForeScout Extended Module for ServiceNow ForeScout Extended Module for ServiceNow Version 1.1.0 Table of Contents About this Integration... 4 Use Cases... 4 Asset Identification... 4 Asset Inventory True-up... 5 Additional ServiceNow Documentation...

More information

XIA Configuration Server

XIA Configuration Server XIA Configuration Server XIA Configuration Server v6 Cloud Services Quick Start Guide Tuesday, 20 May 2014 1 P a g e X I A C o n f i g u r a t i o n C l o u d S e r v i c e s Contents Overview... 3 Creating

More information

SAP HANA. HA and DR Guide. Issue 03 Date HUAWEI TECHNOLOGIES CO., LTD.

SAP HANA. HA and DR Guide. Issue 03 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 03 Date 2018-05-23 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2019. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

SPNEGO SINGLE SIGN-ON USING SECURE LOGIN SERVER X.509 CLIENT CERTIFICATES

SPNEGO SINGLE SIGN-ON USING SECURE LOGIN SERVER X.509 CLIENT CERTIFICATES SPNEGO SINGLE SIGN-ON USING SECURE LOGIN SERVER X.509 CLIENT CERTIFICATES TABLE OF CONTENTS SCENARIO... 2 IMPLEMENTATION STEPS... 2 PREREQUISITES... 3 1. CONFIGURE ADMINISTRATOR FOR THE SECURE LOGIN ADMINISTRATION

More information

PowerExchange for Facebook: How to Configure Open Authentication using the OAuth Utility

PowerExchange for Facebook: How to Configure Open Authentication using the OAuth Utility PowerExchange for Facebook: How to Configure Open Authentication using the OAuth Utility 2013 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means

More information

Getting Started with the Bullhorn SOAP API and Java

Getting Started with the Bullhorn SOAP API and Java Getting Started with the Bullhorn SOAP API and Java Introduction This article is targeted at developers who want to do custom development using the Bullhorn SOAP API and Java. You will create a sample

More information

ForeScout CounterACT. Track Changes to Network Endpoints. How-to Guide. Version 8.0

ForeScout CounterACT. Track Changes to Network Endpoints. How-to Guide. Version 8.0 ForeScout CounterACT Track Changes to Network Endpoints How-to Guide Version 8.0 Table of Contents About Managing Changes to Network Endpoints... 3 Prerequisites... 3 Create and Apply a Change Policy...

More information

Five9 Adapter for Oracle

Five9 Adapter for Oracle Cloud Contact Center Software Five9 Adapter for Oracle Administrator s Guide July 2017 This guide describes how to configure the integration between Five9 and the Oracle Service Cloud, previously know

More information

Domain Name Service. FAQs. Issue 07 Date HUAWEI TECHNOLOGIES CO., LTD.

Domain Name Service. FAQs. Issue 07 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 07 Date 2019-03-05 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2019. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

1. Go to the URL Click on JDK download option

1. Go to the URL   Click on JDK download option Download and installation of java 1. Go to the URL http://www.oracle.com/technetwork/java/javase/downloads/index.html Click on JDK download option 2. Select the java as per your system type (32 bit/ 64

More information

Cloud Stream Service. User Guide. Issue 18 Date HUAWEI TECHNOLOGIES CO., LTD.

Cloud Stream Service. User Guide. Issue 18 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 18 Date 2018-11-30 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

Domain Name Service. Product Description. Issue 03 Date HUAWEI TECHNOLOGIES CO., LTD.

Domain Name Service. Product Description. Issue 03 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 03 Date 2018-08-15 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

Cisco 802.1x Wireless using PEAP Quick Reference Guide

Cisco 802.1x Wireless using PEAP Quick Reference Guide Cisco 802.1x Wireless using PEAP Quick Reference Guide Copyright Copyright 2006, CRYPTOCard Inc. All Rights Reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in

More information

Informatica Cloud Spring Data Integration Hub Connector Guide

Informatica Cloud Spring Data Integration Hub Connector Guide Informatica Cloud Spring 2017 Data Integration Hub Connector Guide Informatica Cloud Data Integration Hub Connector Guide Spring 2017 December 2017 Copyright Informatica LLC 1993, 2017 This software and

More information

SBCC Web File System - Xythos

SBCC Web File System - Xythos Table of Contents Table of Contents...1 Purpose...1 Login Procedure...1 Creating and Sharing a Web Folder for MAT153...2 Dreamweaver Remote Info...4 I Forgot My Pipeline Credentials...6 Purpose This purpose

More information

CA Mobile Device Management Configure Access Control for Using Exchange PowerShell cmdlets

CA Mobile Device Management Configure Access Control for  Using Exchange PowerShell cmdlets CA Mobile Device Management Configure Access Control for Email Using Exchange PowerShell cmdlets This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter

More information

Contents Overview... 5 Downloading Primavera Gateway... 5 Primavera Gateway On-Premises Installation Prerequisites... 6

Contents Overview... 5 Downloading Primavera Gateway... 5 Primavera Gateway On-Premises Installation Prerequisites... 6 Gateway Installation and Configuration Guide for On-Premises Version 17 September 2017 Contents Overview... 5 Downloading Primavera Gateway... 5 Primavera Gateway On-Premises Installation Prerequisites...

More information

FUJITSU Cloud Service S5 Setup and Configuration of the FTP Service under Windows 2008/2012 Server

FUJITSU Cloud Service S5 Setup and Configuration of the FTP Service under Windows 2008/2012 Server FUJITSU Cloud Service S5 Setup and Configuration of the FTP Service under Windows 2008/2012 Server This guide details steps required to install and configure a basic FTP server on a Windows 2008/2012 VM

More information

Oracle Hospitality Simphony Post-Installation or Upgrade Guide. Release 18.2

Oracle Hospitality Simphony Post-Installation or Upgrade Guide. Release 18.2 Oracle Hospitality Simphony Post-Installation or Upgrade Guide Release 18.2 F12086-01 December 2018 Oracle Hospitality Simphony Post-Installation or Upgrade Guide, Release 18.2 F12086-01 Copyright Oracle

More information

Installation Guide Integrating Worksoft Certify with IBM Rational Quality Manager

Installation Guide Integrating Worksoft Certify with IBM Rational Quality Manager Installation Guide Integrating Worksoft Certify with IBM Rational Quality Manager Worksoft, Inc. 15851 Dallas Parkway, Suite 855 Addison, TX 75001 www.worksoft.com 866-836-1773 Integrating Worksoft Certify

More information

Contents Overview... 5 Upgrading Primavera Gateway... 7 Using Gateway Configuration Utilities... 9

Contents Overview... 5 Upgrading Primavera Gateway... 7 Using Gateway Configuration Utilities... 9 Gateway Upgrade Guide for On-Premises Version 17 August 2017 Contents Overview... 5 Downloading Primavera Gateway... 5 Upgrading Primavera Gateway... 7 Prerequisites... 7 Upgrading Existing Gateway Database...

More information

Amazon Web Services Monitoring Integration User Guide

Amazon Web Services Monitoring Integration User Guide Amazon Web Services Monitoring Integration User Guide Functional Area: Amazon Web Services Monitoring Integration Geneos Release: v4.9 Document Version: v1.0.0 Date Published: 29 October 2018 Copyright

More information

HPE Enterprise Integration Module for SAP Solution Manager 7.1

HPE Enterprise Integration Module for SAP Solution Manager 7.1 HPE Enterprise Integration Module for SAP Solution Manager 7.1 Software Version: 12.55 User Guide Document Release Date: August 2017 Software Release Date: August 2017 HPE Enterprise Integration Module

More information

[Outlook Configuration Guide]

[Outlook Configuration Guide] Prepared By: Sandeep Das Approved By: Effective From: October, 03, 2011 REVISION HISTORY S. N. Release Date Description Author Highlights 1 3 rd October 2011 First Release Sandeep Das First Release Copyright

More information

ForeScout Extended Module for ServiceNow

ForeScout Extended Module for ServiceNow ForeScout Extended Module for ServiceNow Version 1.2 Table of Contents About ServiceNow Integration... 4 Use Cases... 4 Asset Identification... 4 Asset Inventory True-up... 5 Additional ServiceNow Documentation...

More information

ForeScout Amazon Web Services (AWS) Plugin

ForeScout Amazon Web Services (AWS) Plugin ForeScout Amazon Web Services (AWS) Plugin Version 1.1.1 and above Table of Contents Amazon Web Services Plugin Overview... 4 Use Cases... 5 Providing Consolidated Visibility... 5 Dynamic Segmentation

More information

Operation Guide for Security NEs Management

Operation Guide for Security NEs Management imanager U2000 Unified Network Management System V100R002C01 Operation Guide for Security NEs Management Issue 03 Date 2010-11-19 HUAWEI TECHNOLOGIES CO., LTD. 2010. All rights reserved. No part of this

More information

XDS Connector. Installation and Setup Guide. Version: 1.0.x

XDS Connector. Installation and Setup Guide. Version: 1.0.x XDS Connector Installation and Setup Guide Version: 1.0.x Written by: Product Knowledge, R&D Date: November 2016 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International Inc.,

More information

ForeScout Extended Module for VMware AirWatch MDM

ForeScout Extended Module for VMware AirWatch MDM ForeScout Extended Module for VMware AirWatch MDM Version 1.7.2 Table of Contents About the AirWatch MDM Integration... 4 Additional AirWatch Documentation... 4 About this Module... 4 How it Works... 5

More information

INSTALLATION GUIDE Spring 2017

INSTALLATION GUIDE Spring 2017 INSTALLATION GUIDE Spring 2017 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license of the Instant Technologies Software Evaluation Agreement and

More information

Crestron Fusion Cloud On-Premises Software Enterprise Management Platform. Installation Guide Crestron Electronics, Inc.

Crestron Fusion Cloud On-Premises Software Enterprise Management Platform. Installation Guide Crestron Electronics, Inc. Crestron Fusion Cloud On-Premises Software Enterprise Management Platform Installation Guide Crestron Electronics, Inc. Crestron product development software is licensed to Crestron dealers and Crestron

More information

Configuring Embedded LDAP Authentication

Configuring Embedded LDAP Authentication HP Restricted Configuring Embedded LDAP Authentication configure Configuring Embedded LDAP Authentication For HP product models: LaserJet 4345mfp, LaserJet 9040mfp, LaserJet 9050mfp, LaserJet 9500mfp,

More information

Developing Solutions for Google Cloud Platform (CPD200) Course Agenda

Developing Solutions for Google Cloud Platform (CPD200) Course Agenda Developing Solutions for Google Cloud Platform (CPD200) Course Agenda Module 1: Developing Solutions for Google Cloud Platform Identify the advantages of Google Cloud Platform for solution development

More information

Active Directory Validation - User Guide

Active Directory Validation - User Guide 2017-02-10 Orckestra, Europe Nygårdsvej 16 DK-2100 Copenhagen Phone +45 3915 7600 www.orckestra.com Contents 1 INTRODUCTION... 3 1.1 Who Should Read This Guide? 3 1.2 Getting Started 4 2 CREATING A CMS

More information

Administrator s Guide for the Polycom Video Control Application (VCA)

Administrator s Guide for the Polycom Video Control Application (VCA) Administrator s Guide for the Polycom Video Control Application (VCA) Version 1.0 July 2007 Edition 3725-26448-002/A Trademark Information Polycom and the Polycom logo design are registered trademarks

More information

Configuring Microsoft Windows Shared

Configuring Microsoft Windows Shared Application Notes Mar. 2018 Configuring Microsoft Windows Shared Folder Permissions in QES 2018 QNAP Systems, Inc. All Rights Reserved. 1 Notices This user manual provides detailed instructions of using

More information

Integration Guide. SafeNet Authentication Manager. Using SAM as an Identity Provider for PingFederate

Integration Guide. SafeNet Authentication Manager. Using SAM as an Identity Provider for PingFederate SafeNet Authentication Manager Integration Guide Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013 SafeNet, Inc. All rights reserved. 1 Document Information

More information

Tutorial 1: Simple Parameterized Mapping

Tutorial 1: Simple Parameterized Mapping Tutorial 1: Simple Parameterized Mapping 1993-2015 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording or otherwise)

More information

Integration Guide. SafeNet Authentication Manager. Using SAM as an Identity Provider for SonicWALL Secure Remote Access

Integration Guide. SafeNet Authentication Manager. Using SAM as an Identity Provider for SonicWALL Secure Remote Access SafeNet Authentication Manager Integration Guide Using SAM as an Identity Provider for SonicWALL Secure Remote Access Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright

More information

ForeScout CounterACT. Controller Plugin. Configuration Guide. Version 1.0

ForeScout CounterACT. Controller Plugin. Configuration Guide. Version 1.0 ForeScout CounterACT Network Module: Centralized Network Controller Plugin Version 1.0 Table of Contents About the Centralized Network Controller Integration... 4 About This Plugin... 4 How It Works...

More information

IBM WebSphere. IBM WebSphere Adapter for PeopleSoft Enterprise Quick Start Scenarios

IBM WebSphere. IBM WebSphere Adapter for PeopleSoft Enterprise Quick Start Scenarios IBM WebSphere Adapter for PeopleSoft Enterprise 7.5.0.0 Quick Start Scenarios Note: Before using this information and the product it supports, read the information in the Notices section, at the end of

More information

Configuring Outlook Calendar Synchronisation

Configuring Outlook Calendar Synchronisation Configuring Outlook Calendar Synchronisation last updated for the Autumn 2013 (3.52) release Technical Guide Revision History Version Published on Autumn 2013 (3.52) - 1.0 27/11/2013 Doc Ref Configuring

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Creating Domains Using the Configuration Wizard 11g Release 1 (10.3.4) E14140-04 January 2011 This document describes how to use the Configuration Wizard to create, update, and

More information

Integration Guide. SafeNet Authentication Manager. Using SAM as an Identity Provider for Okta

Integration Guide. SafeNet Authentication Manager. Using SAM as an Identity Provider for Okta SafeNet Authentication Manager Integration Guide Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013 SafeNet, Inc. All rights reserved. 1 Document Information

More information

Contents About This Guide... 5 Installing P6 Professional API... 7 Authentication Modes... 9 Legal Notices... 14

Contents About This Guide... 5 Installing P6 Professional API... 7 Authentication Modes... 9 Legal Notices... 14 P6 Professional Integration API Configuration Guide for On-Premises Version 17 July 2017 Contents About This Guide... 5 Installing P6 Professional API... 7 What is the P6 Professional API?... 7 System

More information

Installation Guide. Mobile Print for Business version 1.0. July 2014 Issue 1.0

Installation Guide. Mobile Print for Business version 1.0. July 2014 Issue 1.0 Installation Guide Mobile Print for Business version 1.0 July 2014 Issue 1.0 Fuji Xerox Australia 101 Waterloo Road North Ryde NSW 2113 For technical queries please contact the Fuji Xerox Australia Customer

More information

Series 40 6th Edition SDK, Feature Pack 1 Installation Guide

Series 40 6th Edition SDK, Feature Pack 1 Installation Guide F O R U M N O K I A Series 40 6th Edition SDK, Feature Pack 1 Installation Guide Version Final; December 2nd, 2010 Contents 1 Legal Notice...3 2 Series 40 6th Edition SDK, Feature Pack 1...4 3 About Series

More information

SAP Business One. User Guide. Issue 04 Date HUAWEI TECHNOLOGIES CO., LTD.

SAP Business One. User Guide. Issue 04 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 04 Date 2018-12-31 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2019. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information