Candidate Resume Data API

Size: px
Start display at page:

Download "Candidate Resume Data API"

Transcription

1 Candidate Resume Data API Version 1.03 gradleaders.com

2 Table of Contents TABLE OF CONTENTS OVERVIEW... 1 EXAMPLE CODE... 1 WEB SERVICE... 1 Invocation Result... 1 Configuration... 1 Method Save... 2 Method Get... 3 Method GetModified... 4 WSDL... 4 i

3 OVERVIEW This document provides comprehensive specifications for the GradLeaders Candidate Resume Data API. The guide aims to help developers quickly understand and integrate this web service. EXAMPLE CODE An example code project that demonstrates all functionality is available upon request. This example project has been implemented as Console application written in C#.NET v4.0 using Visual Studio.NET WEB SERVICE This web service contains methods for adding Candidate Resume data in GradLeaders Career Center as well as retrieving both new and modified records. Invocation Result All methods for this web service return a complex type object that describes the overall result of the invocation, in addition to any requested data or validation errors. Please refer to the WSDL at the end of this file for specific technical information for each method. The Result contains important information that should be checked by the consumer after every invocation. The Overall Result will contain one of the following results: No Data Indicates that no data was returned from a Fetch method. Complete Success Indicates that the method was 100% successful in the requested operation. Partial Success Indicates that the some of the requested modifications did not succeed as a result of validation Errors, etc. Total Failure Indicates that the entire operation was unsuccessful. Exception Indicates that the web service encountered a critical error that will require GradLeaders Support to investigate. In addition to the Overall Result, a Detail Result will be return that contains individual validation errors or fetch results. See WSDL for specific technical information. Configuration There are a few key pieces of information that you will need in order to implement this web service. The first two values are provided to you by GradLeaders Career Center. 1

4 Web Service End Point this is the GradLeaders Career Center URL where the web services is located, example: Integration Key this is a special key that allows you to consume the web service. This identifies you as a trusted consumer of the web service any value other than one provided to you will be blocked from using the service. Allowed Remote IP Addresses this is list of IP address that will be allowed to consume the GradLeaders web service. Any IP address not in this will be blocked from using the service. Method Save This method is used to add Candidate Resume records. Candidate Resume Object (bold/red are required) Candidate Address ResumeTitle UploadDate ResumeFilename Document (byte array) IsDefaultResume Parameters Integration Key the value described in the Configuration section above. CandidateResume the Candidate Resume object to add. Validations Integration Key Remote IP Candidate Address is not blank Candidate Address is valid/well-formed Candidate Address exists Candidate has default profile Resume Title is not blank Upload Date is not empty and is greater than 1/1/001 Resume Filename is not blank Resume Filename is well-formed Resume Document is supplied Resume Document is no a zero-length file Resume Document is not larger than 1MB Resume Document can be written to disk Resume Document can be processed by RealResume Result Detail: an array of Candidate Resume Data Change (see WSDL). 2

5 Each Detail Result will contain one of the following Results (see WSDL): Successfully Created Indicates that the record was successfully created. Successfully Updated Indicates that the record was successfully updated. Already Exists Therefore Ignored if the parameter Update If Exists was supplied with a false value, this Indicates that the record already exists in GradLeaders Career Center and was not updated. Validation Errors Indicates that the record had validation errors Method Get This method is used to retrieve a list of new Candidate Resumes added to GradLeaders Career Center within the specified criteria. Candidate Resume Data Fetch Object Candidate Address ResumeTitle UploadDate ResumeFilename Document (byte array) IsDefaultResume GTSReadOnly_ResumeID GTSReadOnly_CreatedDate GTSReadOnly_CreatedBy GTSReadOnly_UpdatedDate GTSReadOnly_UpdatedBy Parameters Integration Key the value described in the Configuration section above. From Date the start date in which to retrieve new candidates. This is inclusive of the supplied date. Through Date the end date in which to retrieve new candidates. This is NON-INCLUSIVE of the supplied date. Validations Integration Key Remote IP Get Limit (500 records) not exceeded Result Detail: an array of Candidate Resume Data Fetch (see WSDL). 3

6 Method GetModified This method is used to retrieve a list of modified Candidate Resumes in GradLeaders Career Center within the specified criteria. Candidate Data Fetch Object Candidate Address ResumeTitle UploadDate ResumeFilename Document IsDefaultResume GTSReadOnly_ResumeID GTSReadOnly_CreatedDate GTSReadOnly_CreatedBy GTSReadOnly_UpdatedDate GTSReadOnly_UpdatedBy Parameters Integration Key the value described in the Configuration section above. From Date the start date in which to retrieve new candidates. This is inclusive of the supplied date. Through Date the end date in which to retrieve new candidates. This is NON-INCLUSIVE of the supplied date. Include New a Boolean value to indicate if Candidate created within the supplied date range should be returned in the results. Validations Integration Key Remote IP Get Limit (500 records) not exceeded Result Detail: an array of Candidate Resume Data Fetch (see WSDL). WSDL The actual WSDL URL for your Beta/Production GradLeaders Career Center website will be provided to you. Here is an example of what it contains: <?xml version="1.0" encoding="utf-8"?> 4

7 <wsdl:definitions xmlns:tm=" xmlns:soapenc=" xmlns:mime=" xmlns:tns=" xmlns:soap=" xmlns:s=" xmlns:soap12=" xmlns:http=" targetnamespace=" xmlns:wsdl=" <wsdl:types> <s:schema elementformdefault="qualified" targetnamespace=" <s:element name="save"> <s:element minoccurs="0" maxoccurs="1" name="integrationkey" type="s:string" /> <s:element minoccurs="0" maxoccurs="1" name="candidateresume" type="tns:candidateresume" /> <s:complextype name="candidateresume"> <s:element minoccurs="0" maxoccurs="1" name="candidate address" type="s:string" /> <s:element minoccurs="0" maxoccurs="1" name="resumetitle" type="s:string" /> <s:element minoccurs="1" maxoccurs="1" name="uploaddate" type="s:datetime" /> <s:element minoccurs="0" maxoccurs="1" name="resumefilename" type="s:string" /> <s:element minoccurs="0" maxoccurs="1" name="document" type="s:base64binary" /> <s:element minoccurs="1" maxoccurs="1" name="isdefaultresume" type="s:boolean" /> <s:element name="saveresponse"> <s:element minoccurs="0" maxoccurs="1" name="saveresult" type="tns:resultofcandidateresumedatachange" /> <s:complextype name="resultofcandidateresumedatachange"> <s:element minoccurs="1" maxoccurs="1" name="overallresult" type="tns:resulttypes" /> <s:element minoccurs="0" maxoccurs="1" name="overallresultmessages" type="tns:arrayofstring" /> <s:element minoccurs="0" maxoccurs="1" name="detailresults" type="tns:arrayofcandidateresumedatachange" /> <s:simpletype name="resulttypes"> <s:restriction base="s:string"> <s:enumeration value="nodata" /> <s:enumeration value="completesuccess" /> <s:enumeration value="partialsuccess" /> <s:enumeration value="totalfailure" /> <s:enumeration value="exception" /> 5

8 </s:restriction> </s:simpletype> <s:complextype name="arrayofstring"> <s:element minoccurs="0" maxoccurs="unbounded" name="string" nillable="true" type="s:string" /> <s:complextype name="arrayofcandidateresumedatachange"> <s:element minoccurs="0" maxoccurs="unbounded" name="candidateresumedatachange" nillable="true" type="tns:candidateresumedatachange" /> <s:complextype name="candidateresumedatachange"> <s:element minoccurs="0" maxoccurs="1" name="candidate address" type="s:string" /> <s:element minoccurs="1" maxoccurs="1" name="result" type="tns:detailresulttypes" /> <s:element minoccurs="0" maxoccurs="1" name="validationerrors" type="tns:arrayofstring" /> <s:simpletype name="detailresulttypes"> <s:restriction base="s:string"> <s:enumeration value="successfullycreated" /> <s:enumeration value="successfullyupdated" /> <s:enumeration value="alreadyexiststhereforeignored" /> <s:enumeration value="validationerrors" /> </s:restriction> </s:simpletype> <s:element name="getnew"> <s:element minoccurs="0" maxoccurs="1" name="integrationkey" type="s:string" /> <s:element minoccurs="1" maxoccurs="1" name="fromdate" type="s:datetime" /> <s:element minoccurs="1" maxoccurs="1" name="throughdate" type="s:datetime" /> <s:element name="getnewresponse"> <s:element minoccurs="0" maxoccurs="1" name="getnewresult" type="tns:resultofcandidateresumedatafetch" /> <s:complextype name="resultofcandidateresumedatafetch"> <s:element minoccurs="1" maxoccurs="1" name="overallresult" type="tns:resulttypes" /> <s:element minoccurs="0" maxoccurs="1" name="overallresultmessages" type="tns:arrayofstring" /> <s:element minoccurs="0" maxoccurs="1" name="detailresults" type="tns:arrayofcandidateresumedatafetch" /> 6

9 <s:complextype name="arrayofcandidateresumedatafetch"> <s:element minoccurs="0" maxoccurs="unbounded" name="candidateresumedatafetch" nillable="true" type="tns:candidateresumedatafetch" /> <s:complextype name="candidateresumedatafetch"> <s:complexcontent mixed="false"> <s:extension base="tns:candidateresume"> <s:element minoccurs="1" maxoccurs="1" name="gtsreadonly_resumeid" type="s:int" /> <s:element minoccurs="1" maxoccurs="1" name="gtsreadonly_createddate" type="s:datetime" /> <s:element minoccurs="0" maxoccurs="1" name="gtsreadonly_createdby" type="s:string" /> <s:element minoccurs="1" maxoccurs="1" name="gtsreadonly_updateddate" type="s:datetime" /> <s:element minoccurs="0" maxoccurs="1" name="gtsreadonly_updatedby" type="s:string" /> </s:extension> </s:complexcontent> <s:element name="getmodified"> <s:element minoccurs="0" maxoccurs="1" name="integrationkey" type="s:string" /> <s:element minoccurs="1" maxoccurs="1" name="fromdate" type="s:datetime" /> <s:element minoccurs="1" maxoccurs="1" name="throughdate" type="s:datetime" /> <s:element minoccurs="1" maxoccurs="1" name="includenew" type="s:boolean" /> <s:element name="getmodifiedresponse"> <s:element minoccurs="0" maxoccurs="1" name="getmodifiedresult" type="tns:resultofcandidateresumedatafetch" /> </s:schema> </wsdl:types> <wsdl:message name="savesoapin"> <wsdl:part name="parameters" element="tns:save" /> <wsdl:message name="savesoapout"> <wsdl:part name="parameters" element="tns:saveresponse" /> <wsdl:message name="getnewsoapin"> <wsdl:part name="parameters" element="tns:getnew" /> <wsdl:message name="getnewsoapout"> <wsdl:part name="parameters" element="tns:getnewresponse" /> 7

10 <wsdl:message name="getmodifiedsoapin"> <wsdl:part name="parameters" element="tns:getmodified" /> <wsdl:message name="getmodifiedsoapout"> <wsdl:part name="parameters" element="tns:getmodifiedresponse" /> <wsdl:porttype name="candidateresumedatasoap"> <wsdl:operation name="save"> <wsdl:input message="tns:savesoapin" /> <wsdl:output message="tns:savesoapout" /> <wsdl:operation name="getnew"> <wsdl:input message="tns:getnewsoapin" /> <wsdl:output message="tns:getnewsoapout" /> <wsdl:operation name="getmodified"> <wsdl:input message="tns:getmodifiedsoapin" /> <wsdl:output message="tns:getmodifiedsoapout" /> </wsdl:porttype> <wsdl:binding name="candidateresumedatasoap" type="tns:candidateresumedatasoap"> <soap:binding transport=" /> <wsdl:operation name="save"> <soap:operation soapaction=" <wsdl:operation name="getnew"> <soap:operation soapaction=" <wsdl:operation name="getmodified"> <soap:operation soapaction=" </wsdl:binding> <wsdl:binding name="candidateresumedatasoap12" type="tns:candidateresumedatasoap"> 8

11 <soap12:binding transport=" /> <wsdl:operation name="save"> <soap12:operation soapaction=" <wsdl:operation name="getnew"> <soap12:operation soapaction=" <wsdl:operation name="getmodified"> <soap12:operation soapaction=" </wsdl:binding> <wsdl:service name="candidateresumedata"> <wsdl:port name="candidateresumedatasoap" binding="tns:candidateresumedatasoap"> <soap:address location=" /> </wsdl:port> <wsdl:port name="candidateresumedatasoap12" binding="tns:candidateresumedatasoap12"> <soap12:address location=" /> </wsdl:port> </wsdl:service> </wsdl:definitions> 9

Calendar Data API. Version gradleaders.com

Calendar Data API. Version gradleaders.com Version 1.03 gradleaders.com Table of Contents 614.791.9000 TABLE OF CONTENTS Overview... 1 Example Code... 1 Web Service... 1 Invocation Result... 1 Configuration... 1 Method - GetCustomFields... 2 Method

More information

VoiceForge. xmlns:s=" xmlns:soap12="

VoiceForge. xmlns:s=  xmlns:soap12= VoiceForge 1. BASIC INFORMATION (Overview and purpose of the tool) 1. Webservice name VoiceForge Webservice (TTL2Ro) 2. Overview and purpose of the webservice The VoiceForge Webservice provides a set of

More information

Automotive Append - Version 1.0.0

Automotive Append - Version 1.0.0 Automotive Append - Version 1.0.0 WSDL: http://ws.strikeiron.com/autoappend?wsdl Product Web Page: http://www.strikeiron.com/data-enrichment/automotive-append/ Description: StrikeIron s Automotive Append

More information

Development of distributed services - Project III. Jan Magne Tjensvold

Development of distributed services - Project III. Jan Magne Tjensvold Development of distributed services - Project III Jan Magne Tjensvold November 11, 2007 Chapter 1 Project III 1.1 Introduction In this project we were going to make a web service from one of the assignments

More information

Exercise sheet 4 Web services

Exercise sheet 4 Web services STI Innsbruck, University Innsbruck Dieter Fensel, Anna Fensel and Ioan Toma 15. April 2010 Semantic Web Services Exercise sheet 4 Exercise 1 (WSDL) (4 points) Complete the following WSDL file in a way

More information

[MS-SPLCHK]: SpellCheck Web Service Protocol. Intellectual Property Rights Notice for Open Specifications Documentation

[MS-SPLCHK]: SpellCheck Web Service Protocol. Intellectual Property Rights Notice for Open Specifications Documentation [MS-SPLCHK]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation.

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation. [MS-SLIDELI]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

Preliminary. No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation.

Preliminary. No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation. [MS-SLIDELI]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

Support For assistance, please contact Grapevine: or

Support For assistance, please contact Grapevine: or External OBS (incorporating Double Opt-in) User Manual Version 1.3 Date 07 October 2011 Support For assistance, please contact Grapevine: +27 21 702-3333 or email info@vine.co.za. Feedback Was this document

More information

Preliminary. Database Publishing Wizard Protocol Specification

Preliminary. Database Publishing Wizard Protocol Specification [MS-SSDPWP]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

Implementation Guide for the ASAP Prescription Monitoring Program Web Service Standard

Implementation Guide for the ASAP Prescription Monitoring Program Web Service Standard ASAP Implementation Guide for the ASAP Prescription Monitoring Program Web Service Standard Bidirectional Electronic Connections between Pharmacies, Prescribers, and Prescription Monitoring Programs Version

More information

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation.

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation. [MS-SSDPWP]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

Case study group setup at catme.org Please respond before Tuesday next week to have better group setup

Case study group setup at catme.org Please respond before Tuesday next week to have better group setup Notes Case study group setup at catme.org Please respond before Tuesday next week to have better group setup Discussion To boost discussion, one write-up for the whole group is fine Write down the names

More information

SOA SOA SOA SOA SOA SOA SOA SOA SOA SOA SOA SOA SOA SOA

SOA SOA SOA SOA SOA SOA SOA SOA SOA SOA SOA SOA SOA SOA P P CRM - Monolithic - Objects - Component - Interface - . IT. IT loosely-coupled Client : - Reusability - Interoperability - Scalability - Flexibility - Cost Efficiency - Customized SUN BEA IBM - extensible

More information

CMS SOAP CLIENT SOFTWARE REQUIREMENTS SPECIFICATION

CMS SOAP CLIENT SOFTWARE REQUIREMENTS SPECIFICATION CMS SOAP CLIENT SOFTWARE REQUIREMENTS SPECIFICATION CONTENTS 1. Introduction 1.1. Purpose 1.2. Scope Of Project 1.3. Glossary 1.4. References 1.5. Overview Of Document 2. Overall Description 2.1. System

More information

Web Service Provider Example - Enabling Visible Business

Web Service Provider Example - Enabling Visible Business Web Services Example Web Service Provider Example - Enabling Visible Business Company A makes earrings. One of their suppliers, Company B, provides the glass beads that are used in the earrings. Company

More information

[MS-SSDPWP-Diff]: Database Publishing Wizard Protocol. Intellectual Property Rights Notice for Open Specifications Documentation

[MS-SSDPWP-Diff]: Database Publishing Wizard Protocol. Intellectual Property Rights Notice for Open Specifications Documentation [MS-SSDPWP-Diff]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation ( this documentation ) for protocols,

More information

Development of a Reliable SOA Framework

Development of a Reliable SOA Framework Chapter 4 Development of a Reliable SOA Framework Service-Oriented Architecture (SOA) supersedes the traditional software architecture because of its dynamic nature of service composition. Service is an

More information

@WebService OUT params via javax.xml.ws.holder

@WebService OUT params via javax.xml.ws.holder @WebService OUT params via javax.xml.ws.holder Example webservice-holder can be browsed at https://github.com/apache/tomee/tree/master/examples/webservice-holder With SOAP it is possible to return multiple

More information

Publications Office. TED Website - Notice Viewer WS Technical Specifications Document - Appendix D - NoticeViewer

Publications Office. TED Website - Notice Viewer WS Technical Specifications Document - Appendix D - NoticeViewer Publications Office Subject NoticeViewer WS API Version / Status 1.03 Release Date 17/02/2017 Filename Document Reference TED_WEBSITE-TSP-Technical_Specifications_Document-v1.03 TED-TSP-Appendix D Table

More information

Dyalog APL SAWS Reference Guide

Dyalog APL SAWS Reference Guide The tool of thought for expert programming Dyalog APL SAWS Reference Guide SAWS Version 1.4 Dyalog Limited Minchens Court, Minchens Lane Bramley, Hampshire RG26 5BH United Kingdom tel: +44(0)1256 830030

More information

[MS-RMPR]: Rights Management Services (RMS): Client-to-Server Protocol

[MS-RMPR]: Rights Management Services (RMS): Client-to-Server Protocol [MS-RMPR]: Rights Management Services (RMS): Client-to-Server Protocol This topic lists the Errata found in [MS-RMPR] since it was last published. Since this topic is updated frequently, we recommend that

More information

Articulation Transfer Clearinghouse Implementation Guide

Articulation Transfer Clearinghouse Implementation Guide Articulation Transfer Clearinghouse for 8/2/2007 Implementation Details TABLE OF CONTENTS INTRODUCTION... 3 Project Identification... 3 DOCUMENT CONTROL... 4 Update History... 4 ENVIRONMENTS... 5 METHODS...

More information

Cisco Prime Central 1.0 API Guide

Cisco Prime Central 1.0 API Guide Cisco Prime Central 1.0 API Guide Cisco Prime Central API Cisco Prime Central Information Model and API's to support the following features. Managed Elements and Equipment Inventory Object Create, Delete

More information

SOAP Primer for INSPIRE Discovery and View Services

SOAP Primer for INSPIRE Discovery and View Services SOAP Primer for INSPIRE Discovery and View Services Matteo Villa, Giovanni Di Matteo TXT e-solutions Roberto Lucchi, Michel Millot, Ioannis Kanellopoulos European Commission Joint Research Centre Institute

More information

SERVICE ORIE TED COMPUTI G ARCHITECTURE FOR CLIMATE MODELI G

SERVICE ORIE TED COMPUTI G ARCHITECTURE FOR CLIMATE MODELI G SERVICE ORIE TED COMPUTI G ARCHITECTURE FOR CLIMATE MODELI G Monish Advani 1, Varish Mulwad 2, Uzoma Obinna 2 1 Department of Information Systems 2 Department of Computer Science and Electrical Engineering

More information

WP5: Integration with the Digital Ecosystem platform

WP5: Integration with the Digital Ecosystem platform OPAALS PROJECT Contract n IST-034824 WP5: Integration with the Digital Ecosystem platform Del 5.8 Complete P2P infrastructure implementation Project funded by the European Community under the Information

More information

User Manual. 3-Heights Document Converter API. Version 4.10

User Manual. 3-Heights Document Converter API. Version 4.10 User Manual 3-Heights Document Converter API Version 4.10 Contents 1 Introduction........................................................................ 3 1.1 Interfaces...........................................................................

More information

Web Services in.net (7)

Web Services in.net (7) Web Services in.net (7) These slides are meant to be for teaching purposes only and only for the students that are registered in CSE4413 and should not be published as a book or in any form of commercial

More information

Supplier Web Services (Full)

Supplier Web Services (Full) Supplier Web Services (Full) All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording, taping, or

More information

@WebService handlers

@WebService handlers @WebService handlers with @HandlerChain Example webservice-handlerchain can be browsed at https://github.com/apache/tomee/tree/master/examples/webservicehandlerchain In this example we see a basic JAX-WS

More information

SOAP Web Services Objektumorientált szoftvertervezés Object-oriented software design. Web services 11/23/2016. Outline. Remote call.

SOAP Web Services Objektumorientált szoftvertervezés Object-oriented software design. Web services 11/23/2016. Outline. Remote call. SOAP Web Services Objektumorientált szoftvertervezés Object-oriented software design Outline Web Services SOAP WSDL Web Service APIs.NET: WCF Java: JAX-WS Dr. Balázs Simon BME, IIT 2 Remote call Remote

More information

[MS-RSWSRM2010]: Report Server Web Service for Report Management: ReportService2010

[MS-RSWSRM2010]: Report Server Web Service for Report Management: ReportService2010 [MS-RSWSRM2010]: Report Server Web Service for Report Management: ReportService2010 Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes

More information

IVOA Support Interfaces: Mandatory Interfaces Version 0.25

IVOA Support Interfaces: Mandatory Interfaces Version 0.25 IVOA Support Interfaces: Mandatory Interfaces Version 0.25 IVOA Working Draft 2006 Sep 18 This version: http://www.ivoa.net/internal/ivoa/ivoagridandwebservices /VOSupportInterfacesMandatory-0.25.pdf Previous

More information

IVOA Support Interfaces: Mandatory Interfaces Version 0.3

IVOA Support Interfaces: Mandatory Interfaces Version 0.3 IVOA Support Interfaces: Mandatory Interfaces Version 0.3 IVOA Working Draft 2007 May 16 This version: http://www.ivoa.net/internal/ivoa/ivoagridandwebservices /VOSupportInterfacesMandatory-0.3.pdf Previous

More information

Port AdonisPort Port type Source code

Port AdonisPort Port type Source code Target Namespace: urn:adonis Port AdonisPort Port type Location: http://adonis.u-psud.fr/ws/serveur.php Protocol: SOAP Default style: rpc Transport protocol: SOAP over HTTP Operations: 1. 2. 3. 4. 5. 6.

More information

Red Hat JBoss Fuse 6.0

Red Hat JBoss Fuse 6.0 Red Hat JBoss Fuse 6.0 Tutorials Example integration applications Last Updated: 2017-10-13 Red Hat JBoss Fuse 6.0 Tutorials Example integration applications JBoss A-MQ Docs Team Content Services fuse-docs-support@redhat.com

More information

[MS-COPYS]: Copy Web Service Protocol. Intellectual Property Rights Notice for Open Specifications Documentation

[MS-COPYS]: Copy Web Service Protocol. Intellectual Property Rights Notice for Open Specifications Documentation [MS-COPYS]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

Data Pump User Guide

Data Pump User Guide Data Pump User Guide CalAmp Corporation 13645 Dulles Technology Drive, Herndon, VA 20171 Document: MBUD-0189v6 Phone : (703) 262-0500 August 2015 FAX: (703) 262-0380 www.calamp.com FleetOutlook Data Pump

More information

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation.

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation. [MS-OXWOOF]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

[MS-OXWSSYNC]: Mailbox Contents Synchronization Web Service Protocol Specification

[MS-OXWSSYNC]: Mailbox Contents Synchronization Web Service Protocol Specification [MS-OXWSSYNC]: Mailbox Contents Synchronization Web Service Protocol Specification Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes

More information

OpenHealth. A Framework for the Delivery of CCR-based Services

OpenHealth. A Framework for the Delivery of CCR-based Services OpenHealth A Framework for the Delivery of CCR-based Services October 24, 2006 1 2 TABLE OF CONTENTS 1. Introduction... 3 2. Goals and Strategies... 4 2.1 Major Goals... 4 2.2 Minor Goals... 5 2.3 Design

More information

Web Services in.net (6)

Web Services in.net (6) Web Services in.net (6) These slides are meant to be for teaching purposes only and only for the students that are registered in CSE4413 and should not be published as a book or in any form of commercial

More information

Vocera Messaging Platform API Guide. Version 5.2.3

Vocera Messaging Platform API Guide. Version 5.2.3 Vocera Messaging Platform API Guide Version 5.2.3 Notice Copyright 2002-2018 Vocera Communications, Inc. All rights reserved. Vocera is a registered trademark of Vocera Communications, Inc. This software

More information

Creating simulation-based training tools for customer relationship management with serviceoriented

Creating simulation-based training tools for customer relationship management with serviceoriented Eastern Michigan University DigitalCommons@EMU Master's Theses and Doctoral Dissertations Master's Theses, and Doctoral Dissertations, and Graduate Capstone Projects 2011 Creating simulation-based training

More information

X-Road: Protocol for Management Services

X-Road: Protocol for Management Services X-Road: Protocol for Management Services Technical Document Version: 1.8 09.11.2015 22 pages Doc. ID: PR-MSERV 09.11.2015 1/22 Date Version Description Author 19.08.2015 0.1 Initial version Martin Lind

More information

[MS-RSWSRMSM2006]: Report Server Web Service for Report Management for SharePoint Mode: ReportService2006

[MS-RSWSRMSM2006]: Report Server Web Service for Report Management for SharePoint Mode: ReportService2006 [MS-RSWSRMSM2006]: Report Server Web Service for Report Management for SharePoint Mode: ReportService2006 Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation.

More information

Developing JAX-RPC Web services

Developing JAX-RPC Web services Developing JAX-RPC Web services {scrollbar} This tutorial will take you through the steps required in developing, deploying and testing a Web Service in Apache Geronimo. After completing this tutorial

More information

[MS-DLX]: Distribution List Expansion Protocol. Intellectual Property Rights Notice for Open Specifications Documentation

[MS-DLX]: Distribution List Expansion Protocol. Intellectual Property Rights Notice for Open Specifications Documentation [MS-DLX]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation ( this documentation ) for protocols,

More information

SLIC Web Service API Guide

SLIC Web Service API Guide SLIC Web Service API Guide Version: 4.4.1 September 28, 2012 Revision History Date Version Description Author 2002 1.0 October 2003 2.0 February 2007 3.0 Initial release of this document Revised to include

More information

INFORMATION TECHNOLOGY. Automated Railcar Release, Switch and Resequence XML and WSDL documentation

INFORMATION TECHNOLOGY. Automated Railcar Release, Switch and Resequence XML and WSDL documentation INFORMATION TECHNOLOGY Automated Railcar Release, Switch and Resequence XML and WSDL documentation Revision Date: December 21, 2017 Table of Contents 1 Introduction... 4 1.1 Purpose of this document...

More information

TECNOLOGIAS DE MIDDLEWARE

TECNOLOGIAS DE MIDDLEWARE TECNOLOGIAS DE MIDDLEWARE Introdução ao WSDL. Concretização num Projecto de LBS. 18/11/2004 André Barbosa WSDL-SUMÁRIO SUMÁRIO DA APRESENTAÇÃO INTRODUÇÃO AO WSDL: Introdução ao WSDL Descrição e Utilização

More information

TPF Users Group Fall 2007

TPF Users Group Fall 2007 TPF Users Group Fall 2007 Creating Web Services For Your z/tpf System Edwin W. van de Grift Venue: Ongoing TPF Education Contents Web Services Where we were Where we are now Creating a Web Service for

More information

Media Object Server Protocol v Table of Contents

Media Object Server Protocol v Table of Contents Media Object Server (MOS ) Media Object Server Protocol v3.8.3 Table of Contents 3.2.6 4. Other messages and data structures 4.1. Other messages and data structures 4.1.1. heartbeat - Connection Confidence

More information

SLIC Web Service API Guide

SLIC Web Service API Guide SLIC Web Service API Guide Version: 5.0.6 February 19, 2014 Revision History Date Version Description Author 2002 1.0 October 2003 2.0 February 2007 3.0 Initial release of this document Revised to include

More information

Developing a Service. Developing a Service using JAX-WS. WSDL First Development. Generating the Starting Point Code

Developing a Service. Developing a Service using JAX-WS. WSDL First Development. Generating the Starting Point Code Developing a Service Developing a Service using JAX-WS WSDL First Development Generating the Starting Point Code Running wsdl2java Generated code Implementing the Service Generating the implementation

More information

Openbravo WebServices

Openbravo WebServices Openbravo WebServices External Point Of Sale 16 August 2006 Revision 1.1 Visit us at www.openbravo.com Table of Contents I.Introduction... 3 II.Product definition... 4 II.1Product type... 4 II.2Category

More information

[MS-WSUSSS]: Intellectual Property Rights Notice for Open Specifications Documentation

[MS-WSUSSS]: Intellectual Property Rights Notice for Open Specifications Documentation [MS-WSUSSS]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation ( this documentation ) for protocols,

More information

InForm Clinical Data API Guide

InForm Clinical Data API Guide InForm Clinical Data API Guide Oracle Health Sciences InForm 6.1 Part Number: E51806-01 Copyright 2014, Oracle and/or its affiliates. All rights reserved. The Programs (which include both the software

More information

Distribution List Creation and Usage Web Service Protocol

Distribution List Creation and Usage Web Service Protocol [MS-OXWSDLIST]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation ( this documentation ) for protocols,

More information

Introduction to Web Service

Introduction to Web Service Introduction to Web Service Sagara Gunathunga ( Apache web Service and Axis committer ) CONTENTS Why you need Web Services? How do you interact with on-line financial service? Conclusion How do you interact

More information

BaswareONE SOAP interface

BaswareONE SOAP interface BaswareONE SOAP interface 2 20 Index 1 Introduction... 4 2 Authentication... 4 3 Scenario s with message flows... 4 3.1 Synchronous upload of files to BaswareONE... 4 3.1.1 Without signing the file...

More information

[MS-OXWOOF]: Out of Office (OOF) Web Service Protocol. Intellectual Property Rights Notice for Open Specifications Documentation

[MS-OXWOOF]: Out of Office (OOF) Web Service Protocol. Intellectual Property Rights Notice for Open Specifications Documentation [MS-OXWOOF]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation ( this documentation ) for protocols,

More information

Artix ESB. Developing Artix Applications with JAX-WS. Making Software Work Together. Version 5.0 July 2007

Artix ESB. Developing Artix Applications with JAX-WS. Making Software Work Together. Version 5.0 July 2007 Artix ESB Developing Artix Applications with JAX-WS Version 5.0 July 2007 Making Software Work Together Developing Artix Applications with JAX-WS IONA Technologies Version 5.0 Published 04 Oct 2007 Copyright

More information

[MS-OXWMT]: Mail Tips Web Service Extensions. Intellectual Property Rights Notice for Open Specifications Documentation

[MS-OXWMT]: Mail Tips Web Service Extensions. Intellectual Property Rights Notice for Open Specifications Documentation [MS-OXWMT]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation ( this documentation ) for protocols,

More information

[MS-BDCMP]: Business Data Catalog Metadata Web Service Protocol. Intellectual Property Rights Notice for Open Specifications Documentation

[MS-BDCMP]: Business Data Catalog Metadata Web Service Protocol. Intellectual Property Rights Notice for Open Specifications Documentation [MS-BDCMP]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

PRELIMINARY. No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation.

PRELIMINARY. No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation. [MS-OXWSTASK]: Tasks Web Service Protocol Specification Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation

More information

Developing Interoperable Web Services for the Enterprise

Developing Interoperable Web Services for the Enterprise Developing Interoperable Web Services for the Enterprise Simon C. Nash IBM Distinguished Engineer Hursley, UK nash@hursley.ibm.com Simon C. Nash Developing Interoperable Web Services for the Enterprise

More information

Exposing RESTful services using an Enterprise Service Bus

Exposing RESTful services using an Enterprise Service Bus Exposing RESTful services using an Enterprise Service Bus Same business logic...more consumer types Skill Level: Intermediate Ahmed Abbass (aabbass@eg.ibm.com) Senior IT Architect IBM Mohab El-Hilaly (MOHABH@eg.ibm.com)

More information

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation.

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation. [MS-OXWMT]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

Service Oriented Software for. Modern Fusion Experiment

Service Oriented Software for. Modern Fusion Experiment Service Oriented Software for Modern Fusion Experiments A. Werner Wendelstein 7-X, CoDaC-Systems Device Control: J. Schacht, H. Laqua, M. Lewerentz, I. Müller, S. Pingel, A. Spring, A. Wölk Data Acquisition:

More information

[MS-OXWSBTRF]: Bulk Transfer Web Service Protocol. Intellectual Property Rights Notice for Open Specifications Documentation

[MS-OXWSBTRF]: Bulk Transfer Web Service Protocol. Intellectual Property Rights Notice for Open Specifications Documentation [MS-OXWSBTRF]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation ( this documentation ) for protocols,

More information

The Florida State University College of Arts and Sciences. WSDL Importer. Kiran Kaja. Major Professor: Dr. Robert van Engelen

The Florida State University College of Arts and Sciences. WSDL Importer. Kiran Kaja. Major Professor: Dr. Robert van Engelen The Florida State University College of Arts and Sciences WSDL Importer By Kiran Kaja Major Professor: Dr. Robert van Engelen A project submitted to the department of Computer Science in partial fulfillment

More information

Processing on-demand WPS Extension (WPS-G) Specification

Processing on-demand WPS Extension (WPS-G) Specification Open Geospatial Consortium Inc. Date: 2011-12-09 Reference number of this document: Version: 0.1.0 (Draft) Category: OGC Discussion Paper Editors: Patrick Jacques, Christophe Noël Processing on-demand

More information

Web Services and WSDL

Web Services and WSDL Web Services and WSDL Karel Richta Dept.of Computer Science & Engineering Faculty of Electrical Engineering Czech Technical University of Prague Karlovo nám.13, Praha 2, Czech Republic e-mail:richta@fel.cvut.cz

More information

Web Service Architecture for Computer-Adaptive Testing on e-learning

Web Service Architecture for Computer-Adaptive Testing on e-learning Web Service Architecture for Computer-Adaptive Testing on e-learning M. Phankokkruad, K. Woraratpanya Abstract This paper proposes a Web service and serviceoriented architecture (SOA) for a computer-adaptive

More information

Pace University. Web Service Workshop Lab Manual

Pace University. Web Service Workshop Lab Manual Pace University Web Service Workshop Lab Manual Dr. Lixin Tao http://csis.pace.edu/~lixin Computer Science Department Pace University July 12, 2005 Table of Contents 1 1 Lab objectives... 1 2 Lab design...

More information

WebSphere Application Server V6.1 Web Services Problem Determination

WebSphere Application Server V6.1 Web Services Problem Determination Wendy Conti WebSphere Application Server V6.1 Web Services Problem Determination Web services-related problems can occur when your application acts as a Web services client to a remote Web service or as

More information

Web Service Interest Management (WSIM) Prototype. Mark Pullen, GMU

Web Service Interest Management (WSIM) Prototype. Mark Pullen, GMU Web Service Interest Management (WSIM) Prototype Mark Pullen, GMU 1 Presentation Overview Case study: how to build a Web service WSIM architecture overview and issues Basic Web service implementation Extending

More information

Extensible Markup Language Processing

Extensible Markup Language Processing CHAPTER 3 Revised: July 2010, This chapter describes the Extensible Markup Language (XML) process in the Simple Object Access Protocol (SOAP) interface. Basic XML and SOAP Components Along with XML, the

More information

Usability test of IDEP.web for Prodcom

Usability test of IDEP.web for Prodcom Annex Annex 6.1: Usability test of IDEP.web for PRODCOM.... 2 Annex 6.2: New guide for IDEP.web Prodcom... 19 Annex 6.3: User feedback questionnaire...24 Annex 6.4: User evaluation report 2 nd quarter

More information

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation.

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation. [MS-RDWR]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

XML Grammar and Parser for the Web Service. Offerings Language

XML Grammar and Parser for the Web Service. Offerings Language XML Grammar and Parser for the Web Service Offerings Language by Kruti Patel, B. Eng. A thesis submitted to the Faculty of Graduate Studies and Research in partial fulfillment of the requirements for the

More information

Bare JAX-WS. Paul Glezen, IBM. Abstract

Bare JAX-WS. Paul Glezen, IBM. Abstract Draft Draft Bare JAX-WS Paul Glezen, IBM Abstract This document is a member of the Bare Series of WAS topics distributed in both stand-alone and in collection form. The latest renderings and source are

More information

This tutorial is going to help all those readers who want to learn the basics of WSDL and use its features to interface with XML-based services.

This tutorial is going to help all those readers who want to learn the basics of WSDL and use its features to interface with XML-based services. i About the Tutorial This is a brief tutorial that explains how to use to exchange information in a distributed environment. It uses plenty of examples to show the functionalities of the elements used

More information

About 1. Chapter 1: Getting started with soap 2. Remarks 2. Versions 2. Examples 2. General Information 2 SOAP 3

About 1. Chapter 1: Getting started with soap 2. Remarks 2. Versions 2. Examples 2. General Information 2 SOAP 3 soap #soap Table of Contents About 1 Chapter 1: Getting started with soap 2 Remarks 2 Versions 2 Examples 2 General Information 2 SOAP 3 Differences between SOAP 1.1 and 1.2 4 Web Service Interoperability

More information

El fichero de descripción del servicio se puede obtener a partir de la siguiente URL:

El fichero de descripción del servicio se puede obtener a partir de la siguiente URL: WSDL El fichero de descripción del servicio se puede obtener a partir de la siguiente URL: https://invenes.oepm.es/invenesservices/invenessearchservice?wsdl Contenido del WSDL

More information

XML Key Management Specification Bulk Operation (X-BULK)

XML Key Management Specification Bulk Operation (X-BULK) . For further information, contact: xbulk@research.baltimore.com XML Key Management Specification Bulk Operation (X-BULK).......... Baltimore Technologies Gemplus Oberthur Card Systems Schlumberger Draft

More information

Editor: Mark Morgan, University of Virginia Category: Recommendation 31 October

Editor: Mark Morgan, University of Virginia Category: Recommendation 31 October GFD-R-P.088 Editor: Mark Morgan, University of Virginia Category: Recommendation 31 October 2006 OGSA ByteIO WG http://forge.gridforum.org/projects/byteio-wg ByteIO OGSA WSRF Basic Profile Rendering 1.0

More information

How to implement Heros Web Services

How to implement Heros Web Services How to implement Heros Web Services Document name HowTo_HITRail_WebServices_v1.0.doc Date, version January 28, 2013, version 1.0 Our reference HIT Rail Web Services Status Final 2012 HIT Rail B.V. Referenced

More information

Artix Developing Artix Applications with JAX-WS and JAX-RS

Artix Developing Artix Applications with JAX-WS and JAX-RS Artix 5.6.3 Developing Artix Applications with JAX-WS and JAX-RS Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2015. All rights

More information

Daugiau apie WebService

Daugiau apie WebService Daugiau apie WebService Anksčiau aprašėme, kaip sukurti paprastą WebService, o taip pat kaip jį panaudoti ASP puslapiuose. Dabar šiek tiek išplėsime WebService galimybių aprašymą. Tam tikslui šiek tiek

More information

Simple Object Access Protocol. Web Services Description Language

Simple Object Access Protocol. Web Services Description Language Simple Object Access Protocol Web Services Description Language alfady@scs-net.org alnashed@scs-net.org ***"#$%& '() "! ... INTRODUCTION.. SIMPLE OBJECT ACCESS PROTOCOL...Why SOAPSOAP...SOAP Building BlocksSOAP...Syntax

More information

SciX. D10: Implementation report IST Open, self organising repository for scientific information exchange

SciX. D10: Implementation report IST Open, self organising repository for scientific information exchange IST-2001-33127 SciX Open, self organising repository for scientific information exchange D10: Implementation report Responsible authors: Tomo Cerovšek, Žiga Turk, Gudni Gudnason, Brian Clifton, Bob Martens,

More information

2016, IJARCSSE All Rights Reserved Page 9

2016, IJARCSSE All Rights Reserved Page 9 Volume 6, Issue 1, January 2016 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Testing Autonomous

More information

Testbed-12 OWS SOAP User Guide

Testbed-12 OWS SOAP User Guide Testbed-12 OWS SOAP User Guide Table of Contents 1. Introduction............................................................................. 3 1.1. SOAP Primer.........................................................................

More information