WEB SERVICES TECHNICAL GUIDE FOR DEVELOPERS
|
|
|
- Allison Farmer
- 10 years ago
- Views:
Transcription
1 WEB SERVICES TECHNICAL GUIDE FOR DEVELOPERS
2
3 1. Introduction This Technical Manual considers a development project that need to integrate with the Web Services Central Bank of Chile provides, to obtain data (observations) of the series of daily, monthly, quarterly and annual frequencies that are available through this technology. You should consider that the source codes examples are written in c# and PHP languages, however to take these examples to java or other languages should be no problem for a developer. To start using this Web Service our company must request a login through the form found at The url for the Web Services WSDL (Web Service Description Language) is Please review the following website: for more information 2. Web service reference and data collection The code and sample application below is built using visual studio 2008 and c# languages. In the next chapter the code for both c# to PHP is provided. Both perform the same operations, except that c# solution runs as a console application and PHP solution runs as a web page. For development in PHP steps 3.1 and 3.2 can be omitted.
4 2.1 Creation of application To create an application you must have a.net project solution. In this example a console application will be used.
5 2.2 Add reference to web service With the created application, you must add a reference to the web service available on route. Once visual studio finish adding references and create the necessary classes, they can be used from the console application. For this example purposes the reference is created with the name BancoCentral. 2.3 Get available series For the series available SearchSeries method is provided, which takes three parameters. These parameters are: user: username given by the bank to access the system password: user password frequencycode: filter results to only those series that have that frequency
6 Valid FrecuencyCode are listed below: DAILY MONTHLY QUARTERLY ANNUAL The following figure shows the block of code needed to get the data series with the selected frequency (MONTHLY for example). Running this code displays the following list of series. In addition to the id of the series and the name in Spanish, information on the dates of observations for each series are also obtained.
7 2.4 Obtaining the observations for one or more series For the observations for one or more series GetSeries method is provided, which receives five parameters. These parameters are: user: username given by the bank to access the system password: user password firstdate : filter observations from a start date. The parameter is optional. The format should be YYYY MM DD lastdate : filter observations to an end date. The parameter is optional. The format should be YYYY-MM DD seriesids : filter the series of which the observations are to be obtained. The parameter is required. For example, if you want to get the observations for the first series of the list above, use the followind seriesid: "F073.IE5.IND M". If you want to get all observations for year 2007, call the web service as shown in the code below.
8 The code shows a foreach and nested foreach cycle. This is necessary because the GetSeries method allows you to select multiple timeseries in seriesids parameter. The first foreach cycles every timeseries and the second nested foreach cycles on every timeseries observations. There is a maximum allowable series which can be obtained simultanously. If you request more timeseries than allowed, a message will be returned in the response indicating that the maximum amount allowed was exceeded.
9 The returning result is displayed below, whith the date of observation, one per month since it is a monthly timeseries, and the value of the observation for each period.
10 2.5 Error Handling As seen in the example above, if you are requesting more timeseries than allowed an error will be returned. The response contains two properties that indicate the success or failure of the execution. These properties are Code and Description. In case of success, the values will be zero and will return an empty string respectively. This can be seen in the following image.
11 3. Application code As mentioned in the previous chapter, the following code blocks fulfill similar functionality, although the execution environments are different. 3.1 C# console application code. using System; using ConsolaDemo.BancoCentral; namespace ConsolaDemo class Program static void Main(string[] args) string user = "<INGRESE_USUARIO>"; string pass = "<INGRESE_CLAVE>"; string frecuencycode = "MONTHLY"; using (SieteWS SieteWS = new SieteWS()) Respuesta respuesta = SieteWS.SearchSeries(user, pass, frecuencycode); foreach (internetseriesinfo seriesinfo in respuesta.seriesinfos) Console.WriteLine(seriesInfo.seriesId + " : " + seriesinfo.spanishtitle); Console.ReadKey(); string[] seriesids = new string[] "F073.IE5.IND M" ; string firstdate = " "; string lastdate = " "; using (SieteWS SieteWS = new SieteWS()) Respuesta respuesta = SieteWS.GetSeries(user, pass, firstdate, lastdate, seriesids); foreach (fameseries serie in respuesta.series) foreach (obs observacion in serie.obs) Console.WriteLine(observacion.indexDateString + " : " + observacion.value); Console.ReadKey();
12 3.2 Php Web page code <? $user = '<INGRESE_USUARIO>'; $password='<ingrese_clave>'; $frequencycode ='MONTHLY'; $wsdl="<direccion_sitio_web>?wsdl"; $client = new soapclient($wsdl); $params = new stdclass; $params->user = $user; $params->password = $password; $params->frequencycode = $frequencycode; $result = $client->searchseries($params)->searchseriesresult; foreach ($result->seriesinfos->internetseriesinfo as $serie) echo $serie->seriesid. " : ". $serie->spanishtitle. "<br/>"; $seriesids = array ("F073.IE5.IND M"); $firstdate = " "; $lastdate = " "; $client = new soapclient($wsdl); $params = new stdclass; $params->user = $user; $params->password = $password; $params->firstdate = $firstdate; $params->lastdate = $lastdate; $params->seriesids = $seriesids; $result = $client->getseries($params)->getseriesresult; $fameseries =$result->series->fameseries; //Cuando se solicita una sola serie, la respuesta no es interpretada como un arreglo if (is_array($fameseries )!= 1) $fameseries = array($fameseries); foreach ($fameseries as $seriefame) echo $seriefame->serieskey->seriesid. " : ". $seriefame->precision. "<br/>"; foreach ($seriefame->obs as $obs) echo $obs->indexdatestring. " : ". $obs->value. "<br/>";?>
See the Developer s Getting Started Guide for an introduction to My Docs Online Secure File Delivery and how to use it programmatically.
My Docs Online Secure File Delivery API: C# Introduction My Docs Online has provided HIPAA-compliant Secure File Sharing and Delivery since 1999. With the most recent release of its web client and Java
Directories Web Services
Messaging Directories Web Services These technical specifications provide detailed information about the Directories Web Services. It is intended for developers, IT operations, and architects. Public Approved
Web Services API Developer Guide
Web Services API Developer Guide Contents 2 Contents Web Services API Developer Guide... 3 Quick Start...4 Examples of the Web Service API Implementation... 13 Exporting Warehouse Data... 14 Exporting
Using ilove SharePoint Web Services Workflow Action
Using ilove SharePoint Web Services Workflow Action This guide describes the steps to create a workflow that will add some information to Contacts in CRM. As an example, we will use demonstration site
Brekeke PBX Version 3 Web Service Developer s Guide Brekeke Software, Inc.
Brekeke PBX Version 3 Web Service Developer s Guide Brekeke Software, Inc. Version Brekeke PBX Version 3 Web Service Developer s Guide Revised August 2013 Copyright This document is copyrighted by Brekeke
CHAPTER 10: WEB SERVICES
Chapter 10: Web Services CHAPTER 10: WEB SERVICES Objectives Introduction The objectives are: Provide an overview on how Microsoft Dynamics NAV supports Web services. Discuss historical integration options,
Overview of Web Services API
1 CHAPTER The Cisco IP Interoperability and Collaboration System (IPICS) 4.5(x) application programming interface (API) provides a web services-based API that enables the management and control of various
Consuming a Web Service(SOAP and RESTful) in Java. Cheat Sheet For Consuming Services in Java
Consuming a Web Service(SOAP and RESTful) in Java Cheat Sheet For Consuming Services in Java This document will provide a user the capability to create an application to consume a sample web service (Both
2009 Tutorial (DB4O and Visual Studio 2008 Express)
Jákup Wenningstedt Hansen Side 1 12-10-2009 2009 Tutorial (DB4O and Visual Studio 2008 Express)...1 Download the Database...1 Installation of the Database...2 Creating the project in VS...3 Pointing VS
Brekeke PBX Web Service
Brekeke PBX Web Service User Guide Brekeke Software, Inc. Version Brekeke PBX Web Service User Guide Revised October 16, 2006 Copyright This document is copyrighted by Brekeke Software, Inc. Copyright
Amazon Glacier. Developer Guide API Version 2012-06-01
Amazon Glacier Developer Guide Amazon Glacier: Developer Guide Copyright 2016 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade dress may not be used in
1. Please login to the Own Web Now Support Portal (https://support.ownwebnow.com) with your email address and a password.
Web Hosting Introduction The purpose of this Startup Guide is to familiarize you with Own Web Now's Web Hosting. Own Web Now offers two web hosting platforms, one powered by Linux / PHP and the other powered
Amazon Fulfillment Web Service. Getting Started Guide Version 1.1
Amazon Fulfillment Web Service Getting Started Guide Amazon Fulfillment Web Service: Getting Started Guide Copyright 2010 Amazon Web Services LLC or its affiliates. All rights reserved. Table of Contents
TARGETPROCESS WEB SERVICES GUIDE
TARGETPROCESS WEB SERVICES GUIDE v.2.10 Web Services API / Developers Guide This document describes Web Services in TargetProcess and provides some usage examples. 1 TARGETPROCESS DOMAIN MODEL... 3 PROJECT...
JDBC. It is connected by the Native Module of dependent form of h/w like.dll or.so. ex) OCI driver for local connection to Oracle
JDBC 4 types of JDBC drivers Type 1 : JDBC-ODBC bridge It is used for local connection. ex) 32bit ODBC in windows Type 2 : Native API connection driver It is connected by the Native Module of dependent
How To Use Blackberry Web Services On A Blackberry Device
Development Guide BlackBerry Web Services Microsoft.NET Version 12.1 Published: 2015-02-25 SWD-20150507151709605 Contents BlackBerry Web Services... 4 Programmatic access to common management tasks...
DIPLOMA IN WEBDEVELOPMENT
DIPLOMA IN WEBDEVELOPMENT Prerequisite skills Basic programming knowledge on C Language or Core Java is must. # Module 1 Basics and introduction to HTML Basic HTML training. Different HTML elements, tags
SINGLE SIGNON FUNCTIONALITY IN HATS USING MICROSOFT SHAREPOINT PORTAL
SINGLE SIGNON FUNCTIONALITY IN HATS USING MICROSOFT SHAREPOINT PORTAL SINGLE SIGNON: Single Signon feature allows users to authenticate themselves once with their credentials i.e. Usernames and Passwords
Advanced Object Oriented Database access using PDO. Marcus Börger
Advanced Object Oriented Database access using PDO Marcus Börger ApacheCon EU 2005 Marcus Börger Advanced Object Oriented Database access using PDO 2 Intro PHP and Databases PHP 5 and PDO Marcus Börger
SIP Trunk Configuration for Broadvox
Document version: 1.0 Modification date: December 09, 2009 Prerequisites The Broadvox customer service provides the following communication parameters: Parameter Example Explanation BTN & Username: 4801234560
Qualtrics Single Sign-On Specification
Qualtrics Single Sign-On Specification Version: 2010-06-25 Contents Introduction... 2 Implementation Considerations... 2 Qualtrics has never been used by the organization... 2 Qualtrics has been used by
Residence Life & Housing Student Staff Employment Application Guide
Residence Life & Housing Student Staff Employment Application Guide Hello! This is a quick step-by-step guide for using our online application process for either the RA or GHD positions. If you have any
Java Access to Oracle CRM On Demand. By: Joerg Wallmueller Melbourne, Australia
Java Access to Oracle CRM On Demand Web Based CRM Software - Oracle CRM...페이지 1 / 12 Java Access to Oracle CRM On Demand By: Joerg Wallmueller Melbourne, Australia Introduction Requirements Step 1: Generate
Quick Reference Guide PAYMENT GATEWAY (Virtual Terminal)
PAYMENT GATEWAY (Virtual Terminal) Document Version 131227 Copyright 2013 epaymentamerica, Inc. All Rights Reserved Logging in to the Virtual Terminal 1. Open your internet browser; We strongly recommend
OTN Developer Day: Oracle Big Data. Hands On Lab Manual. Introduction to Oracle NoSQL Database
OTN Developer Day: Oracle Big Data Hands On Lab Manual Introduction to ORACLE NOSQL DATABASE HANDS-ON WORKSHOP ii Hands on Workshop Lab Exercise 1 Start and run the Movieplex application. In this lab,
Sage 100 ERP. ebusiness Web Services Installation and Reference Guide
Sage 100 ERP ebusiness Web Services Installation and Reference Guide 2012 Sage Software, Inc. All rights reserved. Sage, the Sage logos, and the Sage product and service names mentioned herein are registered
AP Computer Science Static Methods, Strings, User Input
AP Computer Science Static Methods, Strings, User Input Static Methods The Math class contains a special type of methods, called static methods. A static method DOES NOT operate on an object. This is because
Policies and Procedures for creating and maintaining a site
Policies and Procedures for creating and maintaining a site In order to create an account for your chapter or state web management, you must be the president of that chapter or state. Once you have chosen
MSDG Services Integration Document Draft Ver 1.2
Table of contents Page 1 of 17 Table of Contents 2 Push SMS Integration 1. 1.1 Overview HTTP API lets departments send across SMS messages using HTTP URL interface. The API supports SMS push (Single SMS
Install Java Development Kit (JDK) 1.8 http://www.oracle.com/technetwork/java/javase/downloads/index.html
CS 259: Data Structures with Java Hello World with the IntelliJ IDE Instructor: Joel Castellanos e-mail: joel.unm.edu Web: http://cs.unm.edu/~joel/ Office: Farris Engineering Center 319 8/19/2015 Install
Bank and SecurePay Response Codes
Bank and SecurePay s Last updated: 19/07/2013 Bank s for Credit Card Transactions APPROVED 00 Approved 08 Honour with ID 11 Approved VIP (not used) 16 Approved, Update Track 3 (not used) 77 Approved (ANZ
HOBOlink Web Services V2 Developer s Guide
HOBOlink Web Services V2 Developer s Guide Onset Computer Corporation 470 MacArthur Blvd. Bourne, MA 02532 www.onsetcomp.com Mailing Address: P.O. Box 3450 Pocasset, MA 02559-3450 Phone: 1-800-LOGGERS
Sophos Mobile Control Web service guide
Sophos Mobile Control Web service guide Product version: 3.5 Document date: July 2013 Contents 1 About Sophos Mobile Control... 3 2 Prerequisites... 4 3 Server-side implementation... 5 4 Client-side implementation...
PHP Language Binding Guide For The Connection Cloud Web Services
PHP Language Binding Guide For The Connection Cloud Web Services Table Of Contents Overview... 3 Intended Audience... 3 Prerequisites... 3 Term Definitions... 3 Introduction... 4 What s Required... 5 Language
Tableau Server Trusted Authentication
Tableau Server Trusted Authentication When you embed Tableau Server views into webpages, everyone who visits the page must be a licensed user on Tableau Server. When users visit the page they will be prompted
Manage cloud infrastructures using Zend Framework
Manage cloud infrastructures using Zend Framework by Enrico Zimuel ([email protected]) Senior Software Engineer Zend Framework Core Team Zend Technologies Ltd About me Email: [email protected] Twitter: @ezimuel
Setting up the integration between Oracle Social Engagement & Monitoring Cloud Service and Oracle RightNow Cloud Service
An Oracle Best Practice Guide November 2013 Setting up the integration between Oracle Social Engagement & Monitoring Cloud Service and Oracle RightNow Cloud Service Introduction Creation of the custom
Quartz.Net Scheduler in Depth
Quartz.Net Scheduler in Depth Introduction What is a Job Scheduler? Wikipedia defines a job scheduler as: A job scheduler is a software application that is in charge of unattended background executions,
Save Actions User Guide
Microsoft Dynamics CRM for Sitecore CMS 6.3-6.5 Save Actions User Guide Rev: 2012-04-26 Microsoft Dynamics CRM for Sitecore CMS 6.3-6.5 Save Actions User Guide A practical guide to using Microsoft Dynamics
Building a Multi-Threaded Web Server
Building a Multi-Threaded Web Server In this lab we will develop a Web server in two steps. In the end, you will have built a multi-threaded Web server that is capable of processing multiple simultaneous
Web Services in.net (1)
Web Services in.net (1) 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
Onset Computer Corporation
Onset, HOBO, and HOBOlink are trademarks or registered trademarks of Onset Computer Corporation for its data logger products and configuration/interface software. All other trademarks are the property
ObserveIT Ticketing Integration Guide
ObserveIT Ticketing Integration Guide Contents 1 Purpose of this Document... 2 2 Overview and Architecture... 2 3 Web Services Integration... 3 4 Customizing a New Ticketing System... 4 5 Appendix: Web
Hello World RESTful web service tutorial
Hello World RESTful web service tutorial Balázs Simon ([email protected]), BME IIT, 2015 1 Introduction This document describes how to create a Hello World RESTful web service in Eclipse using JAX-RS
Problem Set 2 Due: 6pm Friday, February 23
CS230 Data Structures Handout # 13 Prof. Lyn Turbak February 14, 2007 Wellesley College Revised February 23, 2007 Revisions: Notes: Problem Set 2 Due: 6pm Friday, February 23 In the URL used in the GOOG
How to consume a Domino Web Services from Visual Studio under Security
How to consume a Domino Web Services from Visual Studio under Security Summary Authors... 2 Abstract... 2 Web Services... 3 Write a Visual Basic Consumer... 5 Authors Andrea Fontana IBM Champion for WebSphere
WIRIS quizzes web services Getting started with PHP and Java
WIRIS quizzes web services Getting started with PHP and Java Document Release: 1.3 2011 march, Maths for More www.wiris.com Summary This document provides client examples for PHP and Java. Contents WIRIS
Tableau Server Trusted Authentication
Tableau Server Trusted Authentication When you embed Tableau Server views into webpages, everyone who visits the page must be a licensed user on Tableau Server. When users visit the page they will be prompted
Propiedades del esquema del Documento XML de envío:
Web Services Envio y Respuesta DIPS Courier Tipo Operación: 122-DIPS CURRIER/NORMAL 123-DIPS CURRIER/ANTICIP Los datos a considerar para el Servicio Web DIN que se encuentra en aduana son los siguientes:
Automatic transfer of funds
NixMoney Spend API VER 1.3 Automatic transfer of funds All communications within the system are made in UTF-8. Fields be able to contain values in the national alphabet which allows to be closer to the
How to Get Set Up for the 2014 BE-180 and Request an Extension if Needed
How to Get Set Up for the 2014 BE-180 and Request an Extension if Needed For instructions on how to get set up for the 2014 BE-180 and to request an extension if one is needed, click on one of the links
Kittys School Management System
Management Module: Login Module: In this module site admin can be able to login by using their unique username and password. Add Section and Standard: Subject: Syllabus: Inbox: i. Admin can add the Standard
Getting Started with Telerik Data Access. Contents
Contents Overview... 3 Product Installation... 3 Building a Domain Model... 5 Database-First (Reverse) Mapping... 5 Creating the Project... 6 Creating Entities From the Database Schema... 7 Model-First
Step 2. You will see an interface as shown in the diagram below. Please insert your Help Desk username and password.
1.0 HOW TO CREATE TICKET ON HELP DESK SYSTEM We have come up with an efficient support medium for you which is the help desk system. This medium allows you to send in the issue that you are facing while
Index. 1 System Requirements 2. 2 System Login. 5. 3 Account Information. 6. 4 Order. 9. 5 Change Password. 15. 6 Keep Connection 15
Index 1 System Requirements 2 2 System Login. 5 3 Account Information. 6 4 Order. 9 5 Change Password. 15 6 Keep Connection 15 7 Password Reset.16-1 - 1 System Requirements Before login to BOCOM International
LACMTA Regional Integration of Intelligent Transportation Systems (RIITS)
LACMTA Regional Integration of Intelligent Transportation Systems (RIITS) INTEGRATION INSTRUCTIONS Version 1.0 Prepared by: National Engineering Technology Corporation 14320 Firestone Blvd, Suite 100 La
Adding An Audio Profile To An Adobe Connect Account
Adding An Audio Profile To An Adobe Connect Account This How-To Guide will walk through the process of adding an Audio Profile to a Host account within Adobe Connect. The Audio Profile will allow the Host
Implementing a Web Service Client using Java
Implementing a Web Service Client using Java Requirements This guide is based on implementing a Java Client using JAX-WS that comes with Java Web Services Developer Pack version 2.0 (JWSDP). This can be
PAYLINE USER GUIDE LOGGING INTO PAYLINE PROCESSING A PURCHASE
Payline User Guide PAYLINE USER GUIDE Payline is a web-based payment management client that can be used to process credit card transactions manually, process refunds, set up recurring payments and generate
ResellerPlus - Bulk Http API Specification. (This Document gives details on how to send messages via the Bulk HTTP API for the RouteSms SMPP System)
RouteSms ResellerPlus - Bulk Http API Specification (Document Version 1.0.0) (This Document gives details on how to send messages via the Bulk HTTP API for the RouteSms SMPP System) 1 P a g e HTTP API
FileMaker Server 13. Custom Web Publishing with PHP
FileMaker Server 13 Custom Web Publishing with PHP 2007 2013 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and Bento are trademarks
SpiraTest / SpiraTeam Automated Unit Testing Integration & User Guide Inflectra Corporation
SpiraTest / SpiraTeam Automated Unit Testing Integration & User Guide Inflectra Corporation Date: October 3rd, 2014 Contents 1. Introduction... 1 2. Integrating with NUnit... 2 3. Integrating with JUnit...
FTP, IIS, and Firewall Reference and Troubleshooting
FTP, IIS, and Firewall Reference and Troubleshooting Although Cisco VXC Manager automatically installs and configures everything you need for use with respect to FTP, IIS, and the Windows Firewall, the
Implementing SQI via SOAP Web-Services
IST-2001-37264 Creating a Smart Space for Learning Implementing SQI via SOAP Web-Services Date: 10-02-2004 Version: 0.7 Editor(s): Stefan Brantner, Thomas Zillinger (BearingPoint) 1 1 Java Archive for
INTRODUCTION: SQL SERVER ACCESS / LOGIN ACCOUNT INFO:
INTRODUCTION: You can extract data (i.e. the total cost report) directly from the Truck Tracker SQL Server database by using a 3 rd party data tools such as Excel or Crystal Reports. Basically any software
Classes: Relationships Among Objects. Atul Prakash Background readings: Chapters 8-11 (Downey)
Classes: Relationships Among Objects Atul Prakash Background readings: Chapters 8-11 (Downey) Real-World Relationships: Parent-child relationships among members of a species Friends relationship among
i2b2 Cell Messaging Project Management (PM) Cell
i2b2 Cell Messaging Project Management (PM) Cell Table of Contents 2. Document Version History... 3 3. Introduction... 4 3.1 The i2b2 Hive... 4 3.2 i2b2 Messaging Overview... 4 3.2.1 Message Header...
How to Register for Training
How to Register for Training We have created a Training Console to help you manage your Tenable training from the Tenable Support Portal. You will be able to enroll in On Demand Training Course(s) or Certification
Example for Using the PrestaShop Web Service : CRUD
Example for Using the PrestaShop Web Service : CRUD This tutorial shows you how to use the PrestaShop web service with PHP library by creating a "CRUD". Prerequisites: - PrestaShop 1.4 installed on a server
SharePoint Integration
Microsoft Dynamics CRM 2011 supports SharePoint 2007/2010 integration to improve document management in CRM. The previous versions of CRM didn't have a solid out-of-the-box solution for document management
Introduction to Object-Oriented Programming
Introduction to Object-Oriented Programming Programs and Methods Christopher Simpkins [email protected] CS 1331 (Georgia Tech) Programs and Methods 1 / 8 The Anatomy of a Java Program It is customary
Installation and Configuration Manual
Beacon Office Installation and Configuration Manual Version - 2.5(1) Radianta Inc. September 2008 Radianta, Inc. Beacon Office Page 2 Table of Contents Introduction... 4 What is Beacon Office... 4 How
IntelliPay Billpay Application Documentation
IntelliPay Billpay Application Documentation Contents Billpay Introduction First Time Payment (With username and password) First Time Payment (Without username and password) Returning Customer Introduction:
ObserveIT Service Desk Integration Guide
ObserveIT Service Desk Integration Guide Contents 1 Purpose of this Document... 2 2 Overview and Architecture... 2 3 Web Services Integration... 3 4 Customizing a New Service Desk System... 4 5 Appendix:
Web Development using PHP (WD_PHP) Duration 1.5 months
Duration 1.5 months Our program is a practical knowledge oriented program aimed at learning the techniques of web development using PHP, HTML, CSS & JavaScript. It has some unique features which are as
IBM Rational Rapid Developer Components & Web Services
A Technical How-to Guide for Creating Components and Web Services in Rational Rapid Developer June, 2003 Rev. 1.00 IBM Rational Rapid Developer Glenn A. Webster Staff Technical Writer Executive Summary
A detailed walk through a CAS authentication
Welcome! First of all, what is CAS? Web single sign on Uses federated authentication, where all authentication is done by the CAS server, instead of individual application servers The implementation is
IRF2000 IWL3000 SRC1000 Application Note - Apps with OSGi - Condition Monitoring with WWH push
Version 2.0 Original-Application Note ads-tec GmbH IRF2000 IWL3000 SRC1000 Application Note - Apps with OSGi - Condition Monitoring with WWH push Stand: 28.10.2014 ads-tec GmbH 2014 IRF2000 IWL3000 SRC1000
CHAPTER 13: INTEGRATION OPTIONS
Chapter 13: Integration Options CHAPTER 13: INTEGRATION OPTIONS Objectives Introduction The objectives are: Describe the concepts of Microsoft Dynamics NAV Web Services. Create a codeunit Web service,
Using the Dashboard Screen Manager v1.0. This guide provides information about setting up and using the Dashboard Screen Manager.
Using the Dashboard Screen Manager v1.0 This guide provides information about setting up and using the Dashboard Screen Manager. Contents Ipswitch Dashboard Screen Manager Overview Dashboard Screen Manager
How To Create A Simple Module in Magento 2.0. A publication of
How To Create A Simple Module in Magento 2.0 A publication of Mageno 2.0 was officially launched in 18 th December 2014, which is a hot event to Magento community. To understand more about which will be
SIP Trunk Configuration for nexvortex
SIP Trunk Configuration for nexvortex Document version: 1.0 Modification date: June 25, 2013 Prerequisites The nexvortex customer service provides the following communication parameters: Parameter Example
VoIPon www.voipon.co.uk [email protected] Tel: +44 (0)1245 808195 Fax: +44 (0)1245 808299
VoiceGear/3CX Integration Guide Ver.0.1 Page 2 1. OVERVIEW... 3 1.1 SETTING UP 3CX PBX...4 1.2 SETTING UP VOICEGEAR GATEWAY...5 2. VOICEGEAR-3CX SIP INTEGRATION... 6 2.1 3CX CONFIGURATION...7 2.2 VOICEGEAR
Web development... the server side (of the force)
Web development... the server side (of the force) Fabien POULARD Document under license Creative Commons Attribution Share Alike 2.5 http://www.creativecommons.org/learnmore Web development... the server
Integrating Web Services and Natural Objects Using EntireX
Integrating Web Services and Natural Objects Using EntireX Technical Paper: Calling a Web Service from Natural 4/15/2013 Software AG Global Support Services 1) Start Broker (e.g. ETB1331) 2) Check that
Module 13 Implementing Java EE Web Services with JAX-WS
Module 13 Implementing Java EE Web Services with JAX-WS Objectives Describe endpoints supported by Java EE 5 Describe the requirements of the JAX-WS servlet endpoints Describe the requirements of JAX-WS
Graduate Assessment Test (Sample)
Graduate Assessment Test (Sample) CS201-203 1. Fibonacci sequence is defined by a recurrence relation. The series is: 0,1,1,2,3,5,8,13,... Write a complete recursive method/function that returns the fibonacci
EMBASSY Remote Administration Server (ERAS) Helpdesk Guide. ERAS Version 2.8 Document Version 0.0.0.2. http://www.wave.com
EMBASSY Remote Administration Server (ERAS) Helpdesk Guide ERAS Version 2.8 Document Version 0.0.0.2 http://www.wave.com ERAS v 2.8. Wave Systems Corp. 2010 Contents Contents... 2 1. Introduction... 3
ACCREDITATION COUNCIL FOR PHARMACY EDUCATION. CPE Monitor. Technical Specifications
ACCREDITATION COUNCIL FOR PHARMACY EDUCATION CPE Monitor Technical Specifications Prepared by Steven Janis, RWK Design, Inc. Created: 02/10/2012 Revised: 09/28/2012 Revised: 08/28/2013 This document describes
AP Computer Science Java Subset
APPENDIX A AP Computer Science Java Subset The AP Java subset is intended to outline the features of Java that may appear on the AP Computer Science A Exam. The AP Java subset is NOT intended as an overall
matsimj An Overview of the new MATSim Implementation in Java Marcel Rieser VSP, TU Berlin 2.10.2006 [email protected]
matsimj An Overview of the new MATSim Implementation in Java Marcel Rieser VSP, TU Berlin [email protected] 2.10.2006 MATSim Seminar 2006 Villa Garbald 1. 6.10.2006 What we will talk about 2 Overview
DIPLOMADO DE JAVA - OCA
DIPLOMADO DE JAVA - OCA TABLA DE CONTENIDO INTRODUCCION... 3 ESTRUCTURA DEL DIPLOMADO... 4 Nivel I:... 4 Fundamentals of the Java Programming Language Java SE 7... 4 Introducing the Java Technology...
Integration of Hotel Property Management Systems (HPMS) with Global Internet Reservation Systems
Integration of Hotel Property Management Systems (HPMS) with Global Internet Reservation Systems If company want to be competitive on global market nowadays, it have to be persistent on Internet. If we
An Introduction to Developing ez Publish Extensions
An Introduction to Developing ez Publish Extensions Felix Woldt Monday 21 January 2008 12:05:00 am Most Content Management System requirements can be fulfilled by ez Publish without any custom PHP coding.
Selector, Multi Selector, and Item Display
Selector, Multi Selector, and Item Display I want to reduce the number of sites so that performance and maintenance are better and it is easier for users to find their information. I also want an easy
How To Develop A Mobile Application On Sybase Unwired Platform
Tutorial: Windows Mobile Application Development Sybase Unwired Platform 2.1 DOCUMENT ID: DC01285-01-0210-01 LAST REVISED: December 2011 Copyright 2011 by Sybase, Inc. All rights reserved. This publication
Feith Dashboard iq Server Version 8.1 Install Guide
Feith Dashboard iq Server Version 8.1 Install Guide Feith Dashboard iq Server Version 8.1 Install Guide Copyright 2013 Feith Systems and Software, Inc. All Rights Reserved. No part of this publication
