Objective: Review how to use access the Bulkvs.com Origination and 911 SOAP API using SOAP UI

Size: px
Start display at page:

Download "Objective: Review how to use access the Bulkvs.com Origination and 911 SOAP API using SOAP UI"

Transcription

1 Objective: Review how to use access the Bulkvs.com Origination and 911 SOAP API using SOAP UI Perquisites: 1. Have access to your bulkvs.com API ID 2. Have an MD5 equivalent of your bllkvs.com password 3. Download and install soapui Step 1: Log in and retrieve your API Key 1.Go to bulkcnam.com and sign up for a free account (if you do not have one already) 2.Once logged in click on Origination Portal 3.Your API Key is listed under My Account: (For example: API Key: ad4cdd89b7a7b7c73935f81746apd93) Step 2: Getting your MD5 equivalent password 1. There are several ways to get your MD5 equivalent. The easiest is to go to a website that generates MD5 strings. One such site is 2. open a web browser and go to 3. Enter your bulkvs.com password in the text box 4. press MD5. 5. In the below example my password is password123 and the MD5 equivalent is 482c811da5d5b4bc6d497ffa98491e38

2 Step3: Download SoapUI 1.Go to soapui.com to download a free copy of soapui.com 2.Once you are at the site click on the downloads -> download soapui 3.Then click on soapui 4.Click on the version you would like to download. As of this writing 4.5 is out 5. Click on the soapui-x32-4_5_0.exe (or sopaui-x65-4_5_0.exe if you have a 64 bit system) 6.Once downloaded install the application

3 Step4: Starting soapui and testing bulkvs.com s API 1.Start soapui on your pc 2.Once SoapUI starts click on file -> new soap Project 3. Enter the WSDL bulkvs.com link in the Initial WSDL/WADL section and click ok 4. At this point you will see all of the API options bulkvs.com offers (ex: queryaccount, DnOrder, e911provisionaddress etc )

4 Step5: Running a query using your account information. (query account status) 1.At this point you should have already started SoapUI and have entered the Bulkvs.com WSDL link for the project (Step4 above). You should have also retrieved your API Key(Step1 above) and have the MD5 equivalent of your bulkvs.com password (step 2 above) 2.Click on queryaccount to expand the drop down then double click on Request 1. On the right had side you should now have an XML output requesting your apikey and apisecret 3.If you have been following from step1 my apikey is ad4cdd89b7a7b7c73935f81746apd93 which I retrieved from logging in to bulkcnam.com and click on origination. My apisecret is my MD5 equivalent of my password when I log in to bulkcnam.com. In this case it is: 482c811da5d5b4bc6d497ffa98491e38 apikey: ad4cdd89b7a7b7c73935f81746apd93 apisecret: 482c811da5d5b4bc6d497ffa98491e38 4.Now that I have all the necessary information we could query my account info and click on the Green Run button on the top left

5 5.After I click on the run button the bulkvs.com API will respond back with an XML output. In this case you could see the username, balance, credit, lowbalancenotification etc Here are the steps to provision a number: 1) First run "e911validateaddress" to validate a US or Canadian address <soapenv:envelope xmlns:xsi=" xmlns:xsd=" xmlns:soapenv=" <soapenv:header/> <soapenv:body> <soapenv:e911validateaddress soapenv:encodingstyle=" <apikey xsi:type="xsd:string">your_apikey</apikey> <apisecret xsi:type="xsd:string">your_apisecret</apisecret> <address1 xsi:type="xsd:string">704 N. King St.</address1> <address2 xsi:type="xsd:string"></address2> <city xsi:type="xsd:string">wilmington</city> <state xsi:type="xsd:string">de</state> <zip xsi:type="xsd:string">19801</zip> </soapenv:e911validateaddress> </soapenv:body> </soapenv:envelope> Response will be an Address ID: "<addressid xsi:type="xsd:string"> </addressid>"

6 <SOAP-ENV:Envelope SOAP-ENV:encodingStyle=" xmlns:soap-env=" xmlns:xsd=" xmlns:xsi=" xmlns:soap-enc=" <SOAP-ENV:Body> <SOAP-ENV:e911validateAddressResponse> <result> <description xsi:type="xsd:string">ok</description> <entry0> <addressid xsi:type="xsd:string"> </addressid> <address1 xsi:type="xsd:string">704 N KING ST</address1> <address2 xsi:type="xsd:string"/> <city xsi:type="xsd:string">wilmington</city> <state xsi:type="xsd:string">de</state> <zip xsi:type="xsd:string">19801</zip> <time xsi:type="xsd:int"> </time> </entry0> </result> </SOAP-ENV:e911validateAddressResponse> </SOAP-ENV:Body> </SOAP-ENV:Envelope> 2) You would use the Address ID retrieved through Step 1, and call "e911provisionaddress" with the phone number (dn), Name (callername) and Address ID (addressid). <soapenv:envelope xmlns:xsi=" xmlns:xsd=" xmlns:soapenv=" <soapenv:header/> <soapenv:body> <soapenv:e911provisionaddress soapenv:encodingstyle=" <apikey xsi:type="xsd:string">your_apikey</apikey> <apisecret xsi:type="xsd:string">your_apisecret</apisecret> <dn xsi:type="xsd:string"> </dn> <callername xsi:type="xsd:string">bulk Solutions LLC</callername> <addressid xsi:type="xsd:string"> </addressid> </soapenv:e911provisionaddress> </soapenv:body> </soapenv:envelope> 3) Upon success you will receive an XML with description set to "OK" and the name and address provisioned. Upon failure, a failure result will be returned. <SOAP-ENV:Envelope SOAP-ENV:encodingStyle=" xmlns:soap-env=" xmlns:xsd=" xmlns:xsi="

7 xmlns:soap-enc=" <SOAP-ENV:Body> <SOAP-ENV:e911provisionAddressResponse> <result> <description xsi:type="xsd:string">ok</description> <entry> <dn xsi:type="xsd:string"> </dn> <callername xsi:type="xsd:string">bulk Solutions LLC</callername> <address1 xsi:type="xsd:string">704 N KING ST</address1> <address2 xsi:type="xsd:string"/> <city xsi:type="xsd:string">wilmington</city> <state xsi:type="xsd:string">de</state> <zip xsi:type="xsd:string">19801</zip> </entry> </result> </SOAP-ENV:e911provisionAddressResponse> </SOAP-ENV:Body> </SOAP-ENV:Envelope> To update an address for a number already on record with us, just repeat steps 1-3, and account will not get charged. Deletions occur through the API call "e911removerecord" and provide the phone number as "dn". Errors you will get back from us will indicate Failure and reason under "Description". Basically, unless you get an OK from us in "Description", then that means there's been a problem and API call should be corrected and reissued. ======================= PHP Example: <? function bulkvs_queryaccount($apikey, $apisecret){ require_once 'SOAP/Client.php'; $wsdl_url = " $WSDL = new SOAP_WSDL($wsdl_url); $client = $WSDL->getProxy(); $apisecrethashed = md5($apisecret); $result = $client->queryaccount($apikey, $apisecrethashed); print_r($result); return; } function bulkvs_query911record($apikey, $apisecret, $dn){ require_once 'SOAP/Client.php'; $wsdl_url = " $WSDL = new SOAP_WSDL($wsdl_url); $client = $WSDL->getProxy(); $apisecrethashed = md5($apisecret); $result = $client->e911queryrecord($apikey, $apisecrethashed, $dn); print_r($result); return; } $id = "<yourid>"; $secret = "<password>"; $dn = " "; $result1 = bulkvs_queryaccount($id, $secret);

8 $result2 = bulkvs_query911record($id, $secret, $dn);?> Should provide: stdclass Object ( [description] => OK [entry] => stdclass Object ( [username] => genusys [balance] => 9.55 [credit] => 0 [lowbalancenotification] => 5 [CNAMfee] => [TNfee] => 0.35 [TNsetupfee] => 0.64 [LIDBupdatefee] => 0.2 [e911enabled] => yes [e911fee] => 0.72 ) ) stdclass Object ( [description] => OK [entry] => stdclass Object ( [dn] => [callername] => John Smith [address1] => 777 Test Road [address2] => [city] => COPPELL [state] => TX [zip] => ) )

City/Zip Lookup Web Service Implementation Guide Version 1.00

City/Zip Lookup Web Service Implementation Guide Version 1.00 City/Zip Lookup Web Service Implementation Guide Version 1.00 Revised: 10/04/2016 SECTION 1 - NARRATIVE... 1 SECTION 2 - INPUT PARAMETERS... 2 SECTION 3 - OUTPUT PARAMETERS... 3 SECTION 4 - SOAP XML EXAMPLES...

More information

Lab 3: Simple Integration Use Case

Lab 3: Simple Integration Use Case Exercise 1 : Create the web service...2 Exercise 2 : Deploy the web service...4 Exercise 3 : Test the service...8 1/16 In this exercise, you will learn how to activate a Maximo inbound web service. This

More information

The contents of this publication the specifications of this application are subject to change without notice.

The contents of this publication the specifications of this application are subject to change without notice. V.1.0. Publication Notice The contents of this publication the specifications of this application are subject to change without notice. GFI Software reserves the right to make changes without notice to

More information

Documentation Cendris Web Services Version July 2015

Documentation Cendris Web Services Version July 2015 Documentation Cendris Web Services Version 21 24 July 2015 Document: Documentation Cendris Webservices.docx blz 1 van 38 Index 1 Introduction... 3 2 Webportal Cendris Web services... 4 3 Implementation

More information

Using BMC SRM OOB Web Services

Using BMC SRM OOB Web Services Using BMC SRM OOB Web Services The BMC Service Request Management application is shipped with a number of OOB Web Services that can be used to Create, Query and Modify requests (see Figure 1. at end of

More information

Introduction to the Cisco ANM Web Services API

Introduction to the Cisco ANM Web Services API 1 CHAPTER This chapter describes the Cisco ANM Web Services application programming interface (API), which provides a programmable interface for system developers to integrate with customized or third-party

More information

SMS Aggregation - API Documentation

SMS Aggregation - API Documentation SMS Aggregation - API Documentation Wireless Logic Version - 2.0 Issue Date - 20th February 2014 Wireless Logic Ltd Grosvenor House Horseshoe Crescent Beaconsfield, Buckinghamshire HP9 1LJ Tel: +44 (0)1494

More information

Getting started with OWASP WebGoat 4.0 and SOAPUI.

Getting started with OWASP WebGoat 4.0 and SOAPUI. Getting started with OWASP WebGoat 4.0 and SOAPUI. Hacking web services, an introduction. Version 1.0 by Philippe Bogaerts mailto:philippe.bogaerts@radarhack.com http://www.radarhack.com 1. Introduction

More information

NEMSIS V3 Performance Measure Service Technical Guide

NEMSIS V3 Performance Measure Service Technical Guide NEMSIS TAC Whitepaper NEMSIS V3 Performance Measure Service Technical Guide Date June 1, 2017 Authors Joshua Legler NEMSIS Consultant Subhadeep Nag NEMSIS Software Design Engineer N. Clay Mann NEMSIS P.I.

More information

OpenPro XML SOAP API information. OpenPro ERP software is a fully integrated business application that includes the following modules.

OpenPro XML SOAP API information. OpenPro ERP software is a fully integrated business application that includes the following modules. OpenPro XML SOAP API 10061 Talbert Ave Suite 200 Fountain Valley, CA 92708 Telephone 714-378-4600 Fax 714-964-1491 www.openpro.com infoop@openpro.com Last Updated October 2017 OpenPro XML SOAP API information.

More information

Business Register Web Services XML Services (v6 adapter)

Business Register Web Services XML Services (v6 adapter) Business Register Web Services XML Services (v6 adapter) Last modification: 13. September 2018 Business register web services XML services Introduction:... 3 1. Simple company data query (status query)...

More information

Alexa Site Thumbnail. Developer Guide

Alexa Site Thumbnail. Developer Guide : Published 2006-August-02 Copyright 2006 Amazon Services, Inc. or its Affiliates AMAZON and AMAZON.COM are registered trademarks of Amazon.com, Inc. or its Affiliates. All other trademarks are the property

More information

Notes. IS 651: Distributed Systems 1

Notes. IS 651: Distributed Systems 1 Notes Case study grading rubric: http://userpages.umbc.edu/~jianwu/is651/case-study-presentation- Rubric.pdf Each group will grade for other groups presentation No extra assignments besides the ones in

More information

FortiManager - XML API Reference VERSION 5.4.3

FortiManager - XML API Reference VERSION 5.4.3 FortiManager - XML API Reference VERSION 5.4.3 FORTINET DOCUMENT LIBRARY http://docs.fortinet.com FORTINET VIDEO GUIDE http://video.fortinet.com FORTINET BLOG https://blog.fortinet.com CUSTOMER SERVICE

More information

Real-Time Claim Adjudication and Estimation Connectivity Specifications

Real-Time Claim Adjudication and Estimation Connectivity Specifications Real-Time Claim Adjudication and Estimation Connectivity Specifications Mountain State Blue Cross Blue Shield June 18, 2009 Contents 1. Real-Time Overview 2. Connectivity Requirements 3. SOAP Request Message

More information

Oracle Communications Network Charging and Control. Web Services Description Language Reference Guide Release 6.0.1

Oracle Communications Network Charging and Control. Web Services Description Language Reference Guide Release 6.0.1 Oracle Communications Network Charging and Control Web Services Description Language Reference Guide Release 6.0.1 April 2017 Copyright Copyright 2017, Oracle and/or its affiliates. All rights reserved.

More information

All About Integration

All About Integration All About Integration XOG XML Open Gateway Lars Seibert, Engineering Services Architect July 2009 Terms of This Presentation This presentation was based on current information and resource allocations

More information

ISM Configuration Step by Step Guide SOAP Monitor. Overview. Version 1.0

ISM Configuration Step by Step Guide SOAP Monitor. Overview. Version 1.0 ISM Configuration Step by Step Guide SOAP Monitor Version 1.0 Date Version Author Change 11 Oct 2012 1.0 Michael Wager Draft Complete 2 Oct 2012 0.9 Michael Wager Added Resolve merged namespace conflicts

More information

Integration Architecture. A quick introduction to the basics of Wynne s Integration Architecture

Integration Architecture. A quick introduction to the basics of Wynne s Integration Architecture Integration Architecture A quick introduction to the basics of Wynne s Integration Architecture The Basics: What is XML? HTML HyperText Markup Language XML Extensible Markup Language The biggest difference

More information

SOAP Introduction Tutorial

SOAP Introduction Tutorial SOAP Introduction Tutorial Herry Hamidjaja herryh@acm.org 1 Agenda Introduction What is SOAP? Why SOAP? SOAP Protocol Anatomy of SOAP Protocol SOAP description in term of Postal Service Helloworld Example

More information

IUID Registry Application Programming Interface (API) Version Software User s Manual (SUM)

IUID Registry Application Programming Interface (API) Version Software User s Manual (SUM) IUID Registry Application Programming Interface (API) Version 5.11 Software User s Manual (SUM) Document Version 5.11 January 04, 2016 Prepared by: CACI 50 N Laura Street Jacksonville FL 32202 Prepared

More information

Securities Lending Reporting Web Service

Securities Lending Reporting Web Service Securities Lending Reporting Web Service External Interface Specification Broker Trades Message Specification November 2009 (November 2007) ASX Market Information 2009 ASX Limited ABN 98 008 624 691 Table

More information

DAVE. SOAP Web Services

DAVE. SOAP Web Services DAVE SOAP Web Services Introduction This document provides information about the Dave Web Services API and serves as a basic explanation for people with technicals skills who are making a connection to

More information

How To Add a Borrower Via Web Services API

How To Add a Borrower Via Web Services API How To Add a Borrower Via Web Services API Summary This document outlines the use of the Web Services API available in the version 5(v5) knowledge content and library management (KCLM) solution for adding,

More information

ISM Configuration Step by Step Guide SOAP Monitor. Overview. Version 1.1

ISM Configuration Step by Step Guide SOAP Monitor. Overview. Version 1.1 ISM Configuration Step by Step Guide SOAP Monitor Version 1.1 Date Version Author Change 19 Sept 2014 1.1 Timothy Koh Added Nested complex type example 11 Oct 2012 1.0 Michael Wager Draft Complete 2 Oct

More information

Network-centric Middleware for Service Oriented Architectures across Heterogeneous Embedded Systems

Network-centric Middleware for Service Oriented Architectures across Heterogeneous Embedded Systems Network-centric Middleware for Service Oriented Architectures across Andreas Wolff, Jens Schmutzler, Andreas.Wolff@uni-dortmund.de IEEE International EDOC conference, Workshop on Middleware for Web-Services,

More information

Oracle. Field Service Cloud Integrating with Outbound API 18A

Oracle. Field Service Cloud Integrating with Outbound API 18A Oracle Field Service Cloud 18A Part Number: E92187-01 Copyright 2018, Oracle and/or its affiliates. All rights reserved Authors: The Field Service Cloud Information Development Team This software and related

More information

Fundamentals - Web Services

Fundamentals - Web Services Release: MAS 64 Document Revision: 0201 NN44471-116 Release: MAS 64 Publication: NN44471-116 Document release date: 2 July 2010 2010 Avaya Inc All Rights Reserved Notice While reasonable efforts have been

More information

dciphering Computing Amazon Seller Central Soap/XML Services as of Jan/2009

dciphering Computing Amazon Seller Central Soap/XML Services as of Jan/2009 Introduction: If you have had opportunity to review the documentation for Amazon s Web Services API for Seller Central you may have been impressed with all the documentation available and thought it would

More information

Preliminary. Document Transforms Service Protocol Specification

Preliminary. Document Transforms Service Protocol Specification [MS-DOCTRANS]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

Usage of Evaluate IPAddress Action with wm Mediator

Usage of Evaluate IPAddress Action with wm Mediator Usage of Evaluate IPAddress Action with wm Mediator INTRODUCTION PRE-REQUISITE CONFIGURATIONS Create and configure a consumer application with IP Address Create a virtual alias in BusinessUI with Evaluate

More information

An introduction API testing with SoapUI

An introduction API testing with SoapUI An introduction API testing with SoapUI Vincent Vonk 12-06-2018 CGI Group Inc. Agenda for the next 50 minutes What is SoapUI? What are Web APIs? Why test on API level? What can SoapUI do? Types of Web

More information

RTC ITSM Integration Framework

RTC ITSM Integration Framework RTC ITSM Integration Framework Synchronize data between RTC and IT Service Management software Hollis Chui, IBM Integration Architect hollisc@ca.ibm.com October 30, 2015 Agenda Problem Statement What is

More information

XchangeCore Quick Start Guide to the Incident Management Service And Incident Work Products

XchangeCore Quick Start Guide to the Incident Management Service And Incident Work Products XchangeCore Quick Start Guide to the Incident Management Service And Incident Work Products The XchangeCore Community www.xchangecore.com Revision Number Date Description Revisions R05C00 6/16/2014 Initial

More information

Data Transport. Publisher's Note

Data Transport. Publisher's Note Data Transport Publisher's Note This document should be considered a draft until the message formats have been tested using the latest release of the Apache Foundation's SOAP code. When those tests are

More information

MtS-ISL-SUD-SDNS for ARM Transaction Reporting (Article 26 of MiFIR) Commodities Position Reporting (Article 58 of MiFID II)

MtS-ISL-SUD-SDNS for ARM Transaction Reporting (Article 26 of MiFIR) Commodities Position Reporting (Article 58 of MiFID II) MtS-ISL-SUD-SDNS for ARM Transaction Reporting (Article 26 of MiFIR) Commodities Position Reporting (Article 58 of MiFID II) This tutorial describes how to send Transaction or Commodities Reports in ISO

More information

Lookup Roles Application Programming Interface (API) Version Software User s Manual (SUM)

Lookup Roles Application Programming Interface (API) Version Software User s Manual (SUM) Lookup Roles Application Programming Interface (API) Version 5.11 Software User s Manual (SUM) Document Version 5.11 June 29, 2014 Prepared by: CACI 50 N Laura Street Jacksonville FL 32202 Prepared for:

More information

Broadband Connectivity Service (BBCS),Full Access Services (FA) and Cooperation Partner Services (COPA) General Functions Interface Specification

Broadband Connectivity Service (BBCS),Full Access Services (FA) and Cooperation Partner Services (COPA) General Functions Interface Specification Broadband Connectivity Service (BBCS),Full Access Services (FA) and Cooperation Partner Services (COPA) General Functions Interface Specification Issue date 29.09.2016 Replaces version 25 or previous Valid

More information

Distributed Internet Applications - DIA. Web Services XML-RPC and SOAP

Distributed Internet Applications - DIA. Web Services XML-RPC and SOAP Distributed Internet Applications - DIA Web Services XML-RPC and SOAP Introduction A few years ago, most application were: non-distributed, running in an almost homogeneous environment developed with a

More information

Exercise SBPM Session-4 : Web Services

Exercise SBPM Session-4 : Web Services Arbeitsgruppe Exercise SBPM Session-4 : Web Services Kia Teymourian Corporate Semantic Web (AG-CSW) Institute for Computer Science, Freie Universität Berlin kia@inf.fu-berlin.de Agenda Presentation of

More information

Web Services in Language Technology and Terminology Management

Web Services in Language Technology and Terminology Management Web Services in Language Technology and Terminology Management Uwe Quasthoff, Christian Wolff Leipzig University Computer Science Institute, NLP Dept. Augustusplatz 10/11 04109 Leipzig, Germany {quasthoff,

More information

Traffic Engineering Management Provisioning

Traffic Engineering Management Provisioning 1 CHAPTER This chapter describes the provisioning support for Traffic Engineering Management (TEM) provided in Cisco Prime Provisioning. The TEM API solution provides bulk provisioning, updating, and deletion

More information

Cisco CallManager 4.1(2) AXL Serviceability API Programming Guide

Cisco CallManager 4.1(2) AXL Serviceability API Programming Guide Cisco CallManager 4.1(2) AXL Serviceability API Programming Guide This document describes the implementation of AXL-Serviceability APIs that are based on version 3.3.0.1 or higher. Cisco CallManager Real-Time

More information

ccess Protocol Simp! Unde^

ccess Protocol Simp! Unde^ chap Simp! Unde^ ccess Protocol When implementing multi-tier software applications, you need to be able to make calls from programs running on Machine A to programs running on Machine B. For example, you

More information

Search. Google Search. Google SOAP Search CHAPTER 19.

Search. Google Search. Google SOAP Search CHAPTER 19. 1 CHAPTER 19 Search This chapter shows how to use the Google, Yahoo, and live.com search APIs, as well as configuring searchable websites for access as search plugin in Firefox 2.0 or IE 7 using OpenSearch.

More information

IndySoap Architectural Overview Presentation Resources

IndySoap Architectural Overview Presentation Resources Contents: IndySoap Architectural Overview Presentation Resources 1. Conceptual model for Application Application communication 2. SOAP definitions 3. XML namespaces 4. Sample WSDL 5. Sample SOAP exchange,

More information

What is Web Service. An example web service. What is a Web Service?

What is Web Service. An example web service. What is a Web Service? What is Web Service Tutorial I Web Services 1. What is a Web Service? 2. An example Web Service 3. OmniEditor: Wrapping a text editor into a WS 4. OmniGraphEditor: supporting a graphic editor References

More information

ECE450H1S Software Engineering II Tutorial I Web Services

ECE450H1S Software Engineering II Tutorial I Web Services Tutorial I Web Services 1. What is a Web Service? 2. An example Web Service 3. OmniEditor: Wrapping a text editor into a WS 4. OmniGraphEditor: supporting a graphic editor References Gustavo Alonso, Fabio

More information

CURT COMNET XML Portal

CURT COMNET XML Portal CURT COMNET XML Portal Overview Leveraging COM_Net2 s XML Portal provides CURT Customers with the ability to send and receive XML data using industry standard SOAP requests. The following transactions

More information

SOAP. Gustavo Alonso Computer Science Department Swiss Federal Institute of Technology (ETHZ)

SOAP. Gustavo Alonso Computer Science Department Swiss Federal Institute of Technology (ETHZ) SOAP Gustavo Alonso Computer Science Department Swiss Federal Institute of Technology (ETHZ) alonso@inf.ethz.ch http://www.iks.inf.ethz.ch/ Contents SOAP Background SOAP overview Structure of a SOAP Message

More information

How to import a WSDL Data Source and Prepare it for Use in Framework Manager

How to import a WSDL Data Source and Prepare it for Use in Framework Manager Tip or Technique How to import a WSDL Data Source and Prepare it for Use in Framework Manager Product(s): Composite Software 4.5.0 Area of Interest: Infrastructure Manager 2 Copyright Copyright 2008 Cognos

More information

HP Operations Orchestration

HP Operations Orchestration HP Operations Orchestration for the Windows and Linux operating systems Software Version: OO 10.x Web Services Wizard Guide Document Release Date: February 2014 Software Release Date: February 2014 Legal

More information

Scheduling API. Getting Started. Scheduling API Overview CHAPTER

Scheduling API. Getting Started. Scheduling API Overview CHAPTER CHAPTER 3 Revised June 29, 2011 The Cisco TelePresence Exchange System provides the Scheduling Application Programming Interface (API) to facilitate the development of scheduling portals and other software

More information

Public API (PAPI) Web Services Guide. SAP Manufacturing Execution 15.0

Public API (PAPI) Web Services Guide. SAP Manufacturing Execution 15.0 Public API (PAPI) Web Services Guide SAP Manufacturing Execution 15.0 Target Audience Developers Technology consultants Document Version 1.1 April 2015 SAP SE Dietmar-Hopp-Allee 16 69190 Walldorf Germany

More information

Implementing a Notification Server

Implementing a Notification Server APPENDIXB This appendix describes how to modify the example servlet to customize for your own application, and contains the following sections: Event Notification Overview, page B-1 Running the Example

More information

Real-Time Inquiry Connectivity Specifications

Real-Time Inquiry Connectivity Specifications Real-Time Inquiry Connectivity Specifications Highmark, Inc. 2008 Contents 1. Real-Time Overview 2. Requirements 3. SOAP Messages 4. SOAP Faults 5. Highmark EDI WebServices Certificate 1. Overview Real-time

More information

Overview. Guide for the Authorized User

Overview. Guide for the Authorized User Overview This guide demonstrates how to view your student s account balance and make payments for your student as an Authorized User. Note: Your student must first login to MySJSU and set up an authorized

More information

Create an account in Salesforce using the Web Services consumer functionality

Create an account in Salesforce using the Web Services consumer functionality Name of Solution: Mapping : Salesforce ACCOUNT using Web Services Business Requirement: Create an account in Salesforce using the Web Services consumer functionality Description: SalesForce provides a

More information

Why SOAP? Why SOAP? Web Services integration platform

Why SOAP? Why SOAP? Web Services integration platform SOAP Why SOAP? Distributed computing is here to stay Computation through communication Resource heterogeneity Application integration Common language for data exchange Why SOAP? Why SOAP? Web Services

More information

Serviceability XML Programming

Serviceability XML Programming CHAPTER 4 This chapter describes the implementation of Serviceability XML APIs. Unified CM Real-Time information, Performance Counters, and Database information exposure occurs through an Serviceability

More information

Web Services Overview

Web Services Overview Web Services Overview Using Eclipse WTP Greg Hester Pacific Hi-Tech, Inc. greg.hester.pacifichitech.com 1 September 17, 2008 Agenda Web Services Concepts How Web Services are used Web Services tools in

More information

4 Using Web Services and SOAP

4 Using Web Services and SOAP last updated: November 18, 2002 2:45 pm The SOAP Conduit, part of the Modulant Contextia Interoperability Server, makes data transformations available using Web Services technology. Client programs can

More information

Introduction to the Prime Fulfillment API

Introduction to the Prime Fulfillment API CHAPTER 1 The Cisco Prime Fulfillment application program interface (API) allows you to use operations support system (OSS) client programs to connect to the Prime Fulfillment system. The Prime Fulfillment

More information

Technical Specifications for TAXI (Web Services using tml) Version template-3.0

Technical Specifications for TAXI (Web Services using tml) Version template-3.0 Technical Specifications for TAXI (Web Services using tml) Version template-3.0 2005 Verizon. All Rights Reserved. Not to be disclosed outside the Verizon Companies without prior written permission. -

More information

OGC Testbed 10 Engineering Report: Aviation Dissemination of Weather Data

OGC Testbed 10 Engineering Report: Aviation Dissemination of Weather Data Open Geospatial Consortium Publication Date: 2014-07-16 Approval Date: 2014-05-14 Posted Date: 2014-04-15 Reference number of this document: Reference URL for this document: http://www.opengeospatial.net/doc/per/testbed10/wcs-wgds-adapter

More information

Search API. Overview. This chapter describes the Search API.

Search API. Overview. This chapter describes the Search API. This chapter describes the. Overview, page 1 Using the, page 2 Using the search-client Script, page 5 Method Calls, page 6 Overview All search interfaces return a querystatus, in addition to the actual

More information

https://blogs.oracle.com/angelo/entry/rest_enabling_oracle_fusion_sales., it is

https://blogs.oracle.com/angelo/entry/rest_enabling_oracle_fusion_sales., it is More complete RESTful Services for Oracle Sales Cloud Sample/Demo Application This sample code builds on the previous code examples of creating a REST Facade for Sales Cloud, by concentrating on six of

More information

Power IQ WS-API Programming Guide Release 2.0

Power IQ WS-API Programming Guide Release 2.0 Power IQ WS-API Programming Guide Release 2.0 Copyright 2010 Raritan, Inc. PIQAPI-0B-v2.0-E September 2010 255-80-6102-00 This document contains proprietary information that is protected by copyright.

More information

RPC. Remote Procedure Calls. Robert Grimm New York University

RPC. Remote Procedure Calls. Robert Grimm New York University RPC Remote Procedure Calls Robert Grimm New York University Assignments! You need (more) time for interoperability testing!! Your server should be running by midnight Sunday! Assignment 3 test case posted!

More information

Application protocols & presentation layer

Application protocols & presentation layer Application protocols & presentation layer Suguru Yamaguchi NAIST Overview = Application model = Presentation layer = Large scale services 1 TCP/IP Protocol Suites OSI TCP/IP Processing unit Identification

More information

Copyright 2012, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 13

Copyright 2012, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 13 1 Roadmap Dave Bain PeopleSoft Product Management 2 The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any

More information

Fundamentals - Web Services

Fundamentals - Web Services Fundamentals - Web Services Avaya MS 7.0 NN44471-116, 02.01 3 Dec 2010 2010 Avaya Inc. All Rights Reserved. Notice While reasonable efforts have been made to ensure that the information in this document

More information

The Echo Service Manual

The Echo Service Manual NORDUGRID 2/5/2017 The Echo Service Manual Zsombor Nagy zsombor@niif.hu Contents 1 Introduction 2 2 Clients 2 3 Configuration of the C++ Echo service 2 4 Configuration of the Python Echo service 3 1 1

More information

How to Register for e-permits

How to Register for e-permits How to Register for e-permits Connect to: https://permits.westonfl.org To register for an account on the City of Weston e-permits portal please follow the steps below: On the top-right, please click on

More information

LoginService-Public_2_0 Web Service Reference

LoginService-Public_2_0 Web Service Reference 19.03.2015 Table of contents Methods... 3 getauth... 4 Complex Types... 6 types... 6 Login... 6 LoginException... 7 getauth... 8 getauthresponse... 8 types_authentication... 9 anonymous... 9 authentication...

More information

CKO2 - XML Protocols. CKO2 outputs - A2A general description. NBB - IT Department. IT Applications - PRSM. Date: 12/05/2011. Document version: V0.

CKO2 - XML Protocols. CKO2 outputs - A2A general description. NBB - IT Department. IT Applications - PRSM. Date: 12/05/2011. Document version: V0. CKO2 outputs - A2A general description Author: Service: NBB - IT Department IT Applications - PRSM Date: 12/05/2011 Document version: V0.4 Table of Contents 1. Introduction 3 1.1 Document history 3 1.2

More information

Setting up B2B and Frequently Asked Questions

Setting up B2B and Frequently Asked Questions Setting up B2B and Frequently Asked s 11-1-2017 16:45 Content 1 Steps to perform... 2 1.1 Step 1: Read the available documentation... 2 1.2 Step 2: Request a certificate... 2 1.3 Step 2: Get your IT ready...

More information

Outline. Internet Services Introduction. The Promise. Web Service Overview

Outline. Internet Services Introduction. The Promise. Web Service Overview Outline Internet Services Introduction Introduction What are web services The vision The nay sayers Example using Google s web service 1 2 Web Service Overview The Promise Definition: A set of representations

More information

NIELSEN API PORTAL USER REGISTRATION GUIDE

NIELSEN API PORTAL USER REGISTRATION GUIDE NIELSEN API PORTAL USER REGISTRATION GUIDE 1 INTRODUCTION In order to access the Nielsen API Portal services, there are three steps that need to be followed sequentially by the user: 1. User Registration

More information

First Data Gateway. Web Service API Integration Guide. Version 3.0

First Data Gateway. Web Service API Integration Guide. Version 3.0 First Data Gateway Web Service API Integration Guide Version 3.0 First Data is a trading name of First Data Europe Limited, a private limited company incorporated in England (company number 02012925) with

More information

SPORTident Timing SOAP API Developer Documentation

SPORTident Timing SOAP API Developer Documentation SPORTident Timing SOAP API Developer Documentation SPORTident GmbH Arnstadt, Germany May 5, 2017 Contents Contents...2 Introduction...3 Available functions... 5 Error codes... 7 Additional error codes

More information

Web. Web. Java. Java. web. WebService. Apache Axis. Java web service. Applet Servlet JSP SOAP WebService XML J2EE. Web (browser)

Web. Web. Java. Java. web. WebService. Apache Axis. Java web service. Applet Servlet JSP SOAP WebService XML J2EE. Web (browser) Java Web Java web Applet Servlet JSP SOAP WebService XML J2EE WebService Web (browser) WSDL (Web Service Description Language) RPC) SOAP 80 () Apache Axis Apache AxisJavaSOAP (SOAPWeb XML.NET Java) tomcat

More information

Basic API Reference & Developer Guide

Basic API Reference & Developer Guide Basic API Reference & Developer Guide Version 2.5 February 26, 2013 Page 1 Revision History Version Date Changes 1.0 2008-11-18 Initial version. 1.1 2009-11-09 Added estimatemarketorder method, and everything

More information

Android Programming Lecture 14 10/26/2011

Android Programming Lecture 14 10/26/2011 Android Programming Lecture 14 10/26/2011 Review returned tests Test Review Web Service Communication To obtain information from the City of Winston- Salem about open work orders, we will request information

More information

Creating a REST API which exposes an existing SOAP Service with IBM API Management

Creating a REST API which exposes an existing SOAP Service with IBM API Management Creating a REST API which exposes an existing SOAP Service with IBM API Management 3.0.0.1 Page 1 of 29 TABLE OF CONTENTS OBJECTIVE...3 PREREQUISITES...3 CASE STUDY...3 USER ROLES...4 BEFORE YOU BEGIN...4

More information

Change Discovery Service

Change Discovery Service HEDNA White Paper: Change Discovery Service EXECUTIVE SUMMARY Change Discovery is a fairly new concept to the hotel distribution industry. The various implementations thus far have created a need to define,

More information

Oracle Communications Network Charging and Control. Open Services Development User's & Technical Guide Release: NCC4.4.1

Oracle Communications Network Charging and Control. Open Services Development User's & Technical Guide Release: NCC4.4.1 Oracle Communications Network Charging and Control Open Services Development Release: NCC4.4.1 December 2011 Commercial In Confidence Copyright Copyright 2011, Oracle and/or its affiliates. All rights

More information

Information Network I: The Application and Upper Layers

Information Network I: The Application and Upper Layers Information Network I: The Application and Upper Layers Youki Kadobayashi Doudou Fall Laboratory for Cyber Resilience Nara Institute of Science and Technology Outline Domain Name System World Wide Web

More information

Invoking Web Services. with Axis. Web Languages Course 2009 University of Trento

Invoking Web Services. with Axis. Web Languages Course 2009 University of Trento Invoking Web Services with Axis Web Languages Course 2009 University of Trento Lab Objective Refresh the Axis Functionalities Invoke Web Services (client-side) 3/16/2009 Gaia Trecarichi - Web Languages

More information

Monitoring WAAS Using XML API

Monitoring WAAS Using XML API CHAPTER 4 This chapter describes how to use the WAAS API to monitor your WAAS devices and how to use soapui with the WAAS API interface. This chapter contains the following sections: Information About

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

CA Process Automation

CA Process Automation CA Process Automation Web Services Reference Service Pack 04.0.01 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Java CAPS 6 Update 1 Exposing MTOM-capable Java CAPS Classic Web Service Contents Introduction

Java CAPS 6 Update 1 Exposing MTOM-capable Java CAPS Classic Web Service Contents Introduction Java CAPS 6 Update 1 Exposing MTOM-capable Java CAPS Classic Web Service Michael.Czapski@sun.com February 2009 Contents 1. Introduction...1 2. WSDL Notes...3 4. Build einsight / BPEL 1.0-based Web Service...12

More information

Industry Training Register. Guide to integration for ITOs

Industry Training Register. Guide to integration for ITOs Industry Training Register Guide to integration for ITOs Version 5.0 Objective id A823307 Published 15 January 2013 Page 2 of 29 ITR guide to integration for ITOs Contents 1 INTRODUCTION... 4 1.1 About

More information

How to reset your password when given a PASSCODE from the IT Service Desk. Page 2-8. How to change a Forgotten Password by Yourself.

How to reset your password when given a PASSCODE from the IT Service Desk. Page 2-8. How to change a Forgotten Password by Yourself. 1 How to reset your password when given a PASSCODE from the IT Service Desk Page 2-8 How to change a Forgotten Password by Yourself Page 9-12 2 How to reset your password when given a PASSCODE from the

More information

JChem Web Services. Gabor Guta, PhD

JChem Web Services. Gabor Guta, PhD JChem Web Services Gabor Guta, PhD Agenda Products Overview JChem Web Services Classic SOAP examples in Python Brand New JChem Web Services REST examples in JavaScript and Python Future Plans Goal of the

More information

Five Things. Ten Minutes. TOOLKIT. #AUDC12

Five Things. Ten Minutes. TOOLKIT. #AUDC12 Five Things. Ten Minutes. TOOLKIT. Who We Are ABOUT US We re Toolkit Developers just like you Now in its fifth year, this AUDC session is one of the most popular in the Tech Track because the ideas come

More information

CRM On Demand. Oracle CRM On Demand CTI Developer s Guide

CRM On Demand. Oracle CRM On Demand CTI Developer s Guide CRM On Demand Oracle CRM On Demand CTI Developer s Guide Release 37 August 2018 Copyright 2005, 2018 Oracle. All rights reserved. This software and related documentation are provided under a license agreement

More information

SAP Business Connector SOAP Programming Guide

SAP Business Connector SOAP Programming Guide SAP Business Connector SOAP Programming Guide SAP SYSTEM Release 48 SAP AG Dietmar-Hopp-Allee 16 D-69190 Walldorf SAP BC Soap Programming Guide 48 1 CHAPTER 1 SAP AG Copyright Copyright 2008 SAP AG All

More information

Exception Handling in Web Services exposed from an R/3 System

Exception Handling in Web Services exposed from an R/3 System Exception Handling in Web Services exposed from an R/3 System Applies to: SAP WAS 6.2 onwards Summary We expose an RFC enabled function module as web service in R/3. While creating the function module,

More information