Please see the attached file: "SendExample.asp" for an example of how you can send files using classic ASP.

Size: px
Start display at page:

Download "Please see the attached file: "SendExample.asp" for an example of how you can send files using classic ASP."

Transcription

1 NVMS, Inc Data Exchange Specifications Version Client: Client Here Client ID: Client Num This document should explain the setup of the B2B data exchange using the transfer of data using an HTTP request with XML data technology. Please follow the following examples to set up your xml file and to plan your WebService setup. I've included a vbs file that you can use to validate your test xml document by just dragging your file onto the program file. I've also included a sample DTD that you can use to test validate your XML files. Usage: There are many different ways to send xml data using an HTTP request. I've used classic ASP in my example, but you can use.net or any technology that can send an XML file using an HTTP request. Following are the URL's for Production and Test modes. Sending Order Information: Production: URI = " Test: URI = " Please see the attached file: "SendExample.asp" for an example of how you can send files using classic ASP. Retrieving Order Information: Production: URI = " Test: URI = " By submitting your reference # (We call it "FileNumber") in an XML file you can retrieve completed order information that is URL Encoded and attached documents (images) that are encoded using Base64. Order Status: Production: URI = " Test: URI = " By submitting your reference # (We call it "FileNumber") in an XML file you can retrieve order status information. If you have any questions or problems or would like to register to send us batch orders using our WebService, please contact me at: scott@nvms.com. Version Updated: 10/10/2005 Page 1 of NVMS, Inc. All Rights Reserved.

2 Sending Order Data Field Definitions/Explanation Field/Attribute Field Type (Size) Required Notes Format Ex: XML Tag username int Yes Same as client ID "10" security password varchar(50) Yes Given to you at time of setup "password" security ClientID int Yes *See Client Section for correct ID "73" details, service UserID int Yes *See Client Specific Users for user ID "23" details FileNumber varchar(50) Yes Your unique file number. "any text or num" details PropOwner varchar(50) Yes Business name or Property name. "new business" details PropAddress varchar(50) Yes Business or property address. "123 Main St" details PropCity varchar(50) Yes Business or property city. "FreeTown" details PropState varchar(50) Yes Business or property state. "VA" details PropZip varchar(50) Yes Business or property zip. "21220" details PropDesc varchar(100) No Optional business description. "Building" details Used Only For Orders Pertaining to Mobil Homes details mobyear varchar(10) No Optional mobile home year built. "1980" details mobmodel varchar(50) No Optional mobile home model. "RED ONE" details mobserial varchar(50) No Optional mobile home serial number. "283983AB" details moblength varchar(5) No Optional mobile home length "40 ft" details mobwidth varchar(5) No Optional mobile home width. "70 ft" details AccContact varchar(50) No Business contact name. "Bill Coctosin" details AccMobile varchar(50) No Business contact mobile phone number. " " details AccFax varchar(50) No Business contact fax number. " " details AccHome varchar(50) No Business contact home phone number. " " details AccWork varchar(50) No Business contact work phone number. " " details Acc varchar(50) No Business contact . details ClientDBA varchar(50) No You can use this field as the dba name or the agent name/sales person name. "BankCard Systems" or "John Doe" details Notes varchar(1000) No Optional order notes. "Notes Here" details ServiceID int Yes *See Client Specific Services for service ID "6" service pid int Yes Same as parent order id attribute "2" service Client Specific Services - Client Here ServiceID Service Description You will receive these details once your company is signed up. Client Specific Users - Client Here UserID Name You will receive these details once your company is signed up. XML Example <?xml version="1.0"?> <!DOCTYPE root SYSTEM "OrderExchange.dtd"> <security username="44" password="test"></security> <order id="1"> <details ClientID="44" UserID="554" FileNumber=" " PropOwner="Ted Nugent" PropAddress="134 Wilcoxen St" PropCity="Manassas" PropState="VA" PropZip="20111" ClientDBA="John Doe" Notes="These are some test notes here."/> <service pid="1" clientid="44" serviceid="6"/> Version Updated: 10/10/2005 Page 2 of NVMS, Inc. All Rights Reserved.

3 </order> <order id="2"> </order> <order id="3"> </order> <details ClientID="44" UserID="554" FileNumber=" " PropOwner="Miles Davis" PropAddress="134 Wilcoxen St" PropCity="Fairfax" PropState="VA" PropZip="22103" ClientDBA="Phil McCrakin" Notes="These are some test notes here."/> <service pid="2" clientid="44" serviceid="6"/> <details ClientID="44" UserID="554" FileNumber=" " PropOwner="Bill Coctosin" PropAddress="134 Wilcoxen St" PropCity="McLean" PropState="VA" PropZip="22102" ClientDBA="dba: Bankcard Services" Notes="This is a new order with some notes here."/> <service pid="3" clientid="44" serviceid="6"/> XML Data Field Explanation: 1.) All XML files sent to NVMS, Inc. should include the DOCTYPE tag referencing the OrderExchange.dtd or you file will fail validation. 2.) The order id attribute should be a unique value for each order sent in the batch. 3.) You can attach multiple services using the <service> tag. The "pid" attribute must match the parent order id for all services under the parent order. All attributes must be included in the service tag. DTD Example <!ELEMENT root (security,order+)> <!ELEMENT security (#PCDATA)> <!ATTLIST security username CDATA #REQUIRED> <!ATTLIST security password CDATA #REQUIRED> <!ELEMENT order (details,service+)> <!ATTLIST order id CDATA #REQUIRED> <!ELEMENT details (#PCDATA)> <!ATTLIST details ClientID CDATA #REQUIRED> <!ATTLIST details UserID CDATA #REQUIRED> <!ATTLIST details FileNumber CDATA #REQUIRED> <!ATTLIST details PropOwner CDATA #REQUIRED> <!ATTLIST details PropAddress CDATA #REQUIRED> <!ATTLIST details PropCity CDATA #REQUIRED> <!ATTLIST details PropState CDATA #REQUIRED> <!ATTLIST details PropZip CDATA #REQUIRED> <!ATTLIST details PropDesc CDATA #IMPLIED> <!ATTLIST details mobyear CDATA #IMPLIED> <!ATTLIST details mobmodel CDATA #IMPLIED> <!ATTLIST details mobserial CDATA #IMPLIED> <!ATTLIST details moblength CDATA #IMPLIED> <!ATTLIST details mobwidth CDATA #IMPLIED> <!ATTLIST details AccContact CDATA #IMPLIED> <!ATTLIST details AccMobile CDATA #IMPLIED> <!ATTLIST details AccFax CDATA #IMPLIED> <!ATTLIST details AccHome CDATA #IMPLIED> <!ATTLIST details AccWork CDATA #IMPLIED> <!ATTLIST details Acc CDATA #IMPLIED> <!ATTLIST details ClientDBA CDATA #IMPLIED> <!ATTLIST details Notes CDATA #IMPLIED> <!ELEMENT service (#PCDATA)> <!ATTLIST service pid CDATA #REQUIRED> <!ATTLIST service clientid CDATA #REQUIRED> <!ATTLIST service serviceid CDATA #REQUIRED> Version Updated: 10/10/2005 Page 3 of NVMS, Inc. All Rights Reserved.

4 Client Transfer Example '************************ HTTP Request Example for DataExchange Response **************** Dim xmlhttp, url, xmlfile Dim xmldoc, oxmlsend Set oxmlsend = Server.CreateObject("MSXML2.ServerXMLHTTP.3.0") Set oxmlget = Server.CreateObject("MSXML2.ServerXMLHTTP.3.0") url = " xmlfile = " Response.ContentType = "text/html" 'Get File oxmlget.open "GET", xmlfile, false oxmlget.send() xmldoc = oxmlget.responsetext 'Send File oxmlsend.open "POST", url, false oxmlsend.send(xmldoc) If err.number <> 0 Then Response.Write err.description Else Response.Write oxmlsend.responsetext End If Retrieving Order Data XML Example <?xml version="1.0" encoding="utf-8"?> <security username="user" password="password"></security> <order ClientID="124" FileNumber="FILE1"></order> <order ClientID="124" FileNumber="FILE2"></order> <order ClientID="124" FileNumber="FILE3"></order> Submit your XML file to us in this format and receive order documents that can be saved in your own document management system. You can batch as many order tags as you like in this XML request, but remember each file will be +/- 1.5 MB - This depends on the number of reports and images included in each report. Return XML Schema: <report reportid="2" FileNumber="12345" servicename="merchant Site Inspection" charge="45" invoicedate="4/5/2005" report="urlencoded Report"> <attachments reportid="2" imageid="1" extension="jpg" image="base64 Encoded Binary"/> <attachments reportid="2" imageid="2" extension="jpg" image="base64 Encoded Binary"/> </report> The XML schema returned is like the example above. The report data is sent to you in a URL Encoded format so you'll have to decode this to before reading it. The report is just an HTML table. The attachments are encoded using Base64 so you'll have to decode these as well using some sort of Base64 decode function. Let me know if you need help with either Please look in the exchange.zip file for the file "testnvmsget.xml" for an example of the XML data returned. You also need to watch for errors in the response file. If there are errors, an "<error>" tag will be returned with corresponding text. <error text="no attachments found for this report..." /> Version Updated: 10/10/2005 Page 4 of NVMS, Inc. All Rights Reserved.

5 Order Status XML Example (request) <?xml version="1.0" encoding="utf-8"?> <security username="test" password="password"/> <status ClientID="44"> <order file=" "/> <order file="curves"/> <order file=" "/> <order file=" "/> </status> Submit your XML file to us in this format and receive order status for each file number passed. You can use this info from your system to send us this request to tell which order are complete. If complete you may then run the "Retrieve" function to pull down the data of the full report. Return XML Schema: <?xml version="1.0" encoding="utf-8"?> <order filenum=" " status="delivered" EntryDate="4/12/ :47:00 PM" PropOwner="GINGER CREEK GIFT BASKET" InvoiceDate="4/21/2004 6:25:00 PM" StatusBool="True" userid="263" /> <order filenum=" " status="delivered" EntryDate="4/12/ :48:00 PM" PropOwner="SERVELLO GALLERY OF ART" InvoiceDate="4/19/2004 5:09:00 PM" StatusBool="True" userid="263" /> <order filenum=" " status="delivered" EntryDate="3/10/2004 5:55:00 PM" PropOwner="FIT IN THIRTY" InvoiceDate="3/16/2004 6:19:00 PM" StatusBool="True" userid="263" /> Version Updated: 10/10/2005 Page 5 of NVMS, Inc. All Rights Reserved.

DTD Tutorial. About the tutorial. Tutorial

DTD Tutorial. About the tutorial. Tutorial About the tutorial Tutorial Simply Easy Learning 2 About the tutorial DTD Tutorial XML Document Type Declaration commonly known as DTD is a way to describe precisely the XML language. DTDs check the validity

More information

Collections MAX Screen Pop Web Service

Collections MAX Screen Pop Web Service Collections MAX Screen Pop Web Service User guide 2014 Table of Contents Collections MAX Screen Pop Web Service...3 About...4 Activation...5 Dialer Url...9 T-Max Dialer Configuration...10 Usage...13 Collections

More information

NETMESSENGER API EXAMPLES

NETMESSENGER API EXAMPLES NETMESSENGER API EXAMPLES The following pages contain sample code we have produced to assist you in building FASTSMS functionality into your development environment. We are always adding new items to both

More information

Human Translation Server

Human Translation Server Human Translation Server What is HTS Key benefits Costs Getting started Quote Confirmation Delivery Testing environment FAQ Functions reference Request a quotation Confirm the order Getting project status

More information

Last Week. XML (extensible Markup Language) HTML Deficiencies. XML Advantages. Syntax of XML DHTML. Applets. Modifying DOM Event bubbling

Last Week. XML (extensible Markup Language) HTML Deficiencies. XML Advantages. Syntax of XML DHTML. Applets. Modifying DOM Event bubbling XML (extensible Markup Language) Nan Niu (nn@cs.toronto.edu) CSC309 -- Fall 2008 DHTML Modifying DOM Event bubbling Applets Last Week 2 HTML Deficiencies Fixed set of tags No standard way to create new

More information

XEP-0043: Jabber Database Access

XEP-0043: Jabber Database Access XEP-0043: Jabber Database Access Justin Kirby mailto:justin@openaether.org xmpp:zion@openaether.org 2003-10-20 Version 0.2 Status Type Short Name Retracted Standards Track Expose RDBM systems directly

More information

Quiz! Database Indexes. Index. Quiz! Disc and main memory. Quiz! How costly is this operation (naive solution)?

Quiz! Database Indexes. Index. Quiz! Disc and main memory. Quiz! How costly is this operation (naive solution)? Database Indexes How costly is this operation (naive solution)? course per weekday hour room TDA356 2 VR Monday 13:15 TDA356 2 VR Thursday 08:00 TDA356 4 HB1 Tuesday 08:00 TDA356 4 HB1 Friday 13:15 TIN090

More information

Unleash the Power of e-learning

Unleash the Power of e-learning Unleash the Power of e-learning Revision 1.8 June 2014 Edition 2002-2014 ICS Learning Group 1 Disclaimer ICS Learning Group makes no representations or warranties with respect to the contents or use of

More information

<Namespaces> Core XML Technologies. Why Namespaces? Namespaces - based on unique prefixes. Namespaces. </Person>

<Namespaces> Core XML Technologies. Why Namespaces? Namespaces - based on unique prefixes. Namespaces. </Person> Core XML Technologies Namespaces Why Namespaces? bob roth 814.345.6789 Mariott If we combine these two documents

More information

Manual for Multiple Secure Users and for Web Hosting Companies

Manual for Multiple Secure Users and for Web Hosting Companies 1 Manual for Multiple Secure Users and for Web Hosting Companies Table of Contents Introduction...2 Multiple Secure Users...2 Web Host Companies...3 Database for Each Client...3 File Naming Convention

More information

Introduction to XML. Data Integration. Structure in Data Representation. Yanlei Diao UMass Amherst Nov 15, 2007

Introduction to XML. Data Integration. Structure in Data Representation. Yanlei Diao UMass Amherst Nov 15, 2007 Introduction to XML Yanlei Diao UMass Amherst Nov 15, 2007 Slides Courtesy of Ramakrishnan & Gehrke, Dan Suciu, Zack Ives and Gerome Miklau. 1 Structure in Data Representation Relational data is highly

More information

DocuSign for SharePoint 2010 1.5.1

DocuSign for SharePoint 2010 1.5.1 Quick Start Guide DocuSign for SharePoint 2010 1.5.1 Published December 22, 2014 Overview DocuSign for SharePoint 2010 allows users to sign or send documents out for signature from a SharePoint library.

More information

e-filing Secure Web Service User Manual

e-filing Secure Web Service User Manual e-filing Secure Web Service User Manual Page1 CONTENTS 1 BULK ITR... 6 2 BULK PAN VERIFICATION... 9 3 GET ITR-V BY TOKEN NUMBER... 13 4 GET ITR-V BY ACKNOWLEDGMENT NUMBER... 16 5 GET RETURN STATUS... 19

More information

Using XML to Test Web Software Services. Modern Web Sites

Using XML to Test Web Software Services. Modern Web Sites Using XML to Test Web Software Services Jeff Offutt Information & Software Engineering George Mason University Fairfax, VA USA www.ise.gmu.edu/faculty/ofut/ Joint research with Suet Chun Lee, GMU PhD student

More information

TXODDS Running Ball Feed US Sports Edition. User Guide

TXODDS Running Ball Feed US Sports Edition. User Guide TXODDS Running Ball Feed US Sports Edition User Guide Document version 2.05 January 2012 Table of Contents TXODDS RUNNING BALL FEED...1 US SPORTS EDITION...1 TABLE OF CONTENTS...2 WHAT IS THE RUNNING BALL

More information

Documentation to use the Elia Infeed web services

Documentation to use the Elia Infeed web services Documentation to use the Elia Infeed web services Elia Version 1.0 2013-10-03 Printed on 3/10/13 10:22 Page 1 of 20 Table of Contents Chapter 1. Introduction... 4 1.1. Elia Infeed web page... 4 1.2. Elia

More information

Project Management (PM) Cell

Project Management (PM) Cell Informatics for Integrating Biology and the Bedside i2b2 Design Document Project Management (PM) Cell Document Version: 1.7.1 i2b2 Software Version: 1.7.00 Table of Contents DOCUMENT MANAGEMENT... 4 1.

More information

Example for Using the PrestaShop Web Service : CRUD

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

More information

1. Introduction to CardPay

1. Introduction to CardPay 1. Introduction to CardPay The introduction manual describes the technical aspects of payments processing using CardPay's hosted payment page. CardPay is an online payment processor for e-commerce transactions

More information

Department Service Integration with e-pramaan

Department Service Integration with e-pramaan Department Service Integration with e-pramaan How to integrate a.net Application.NET specific integration details are provided in this document. Read e-pramaan Departments Integration Document before proceeding.

More information

BCS THE CHARTERED INSTITUTE FOR IT. BCS HIGHER EDUCATION QUALIFICATIONS BCS Level 6 Professional Graduate Diploma in IT WEB ENGINEERING

BCS THE CHARTERED INSTITUTE FOR IT. BCS HIGHER EDUCATION QUALIFICATIONS BCS Level 6 Professional Graduate Diploma in IT WEB ENGINEERING BCS THE CHARTERED INSTITUTE FOR IT BCS HIGHER EDUCATION QUALIFICATIONS BCS Level 6 Professional Graduate Diploma in IT WEB ENGINEERING Wednesday 26 th March 2014 - Morning Answer any THREE questions out

More information

INSTALLATION GUIDE VERSION

INSTALLATION GUIDE VERSION INSTALLATION GUIDE VERSION 4.1 2014 Copyright 2008 2014. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means electronic or mechanical, for any purpose

More information

Semistructured data and XML. Institutt for Informatikk INF3100 09.04.2013 Ahmet Soylu

Semistructured data and XML. Institutt for Informatikk INF3100 09.04.2013 Ahmet Soylu Semistructured data and XML Institutt for Informatikk 1 Unstructured, Structured and Semistructured data Unstructured data e.g., text documents Structured data: data with a rigid and fixed data format

More information

Programming for the Netregistry E-commerce Gateway

Programming for the Netregistry E-commerce Gateway Commercial in Confidence Programming for the Netregistry E-commerce Gateway Commercial and in Confidence Copyright 2013 - Netregistry Group Ltd 1 This work is copyright. Other than as permitted by law,

More information

Configuration Guide - OneDesk to SalesForce Connector

Configuration Guide - OneDesk to SalesForce Connector Configuration Guide - OneDesk to SalesForce Connector Introduction The OneDesk to SalesForce Connector allows users to capture customer feedback and issues in OneDesk without leaving their familiar SalesForce

More information

SEGPAY SUITE MERCHANT SETUP CONFIGURATION REPORTS

SEGPAY SUITE MERCHANT SETUP CONFIGURATION REPORTS SEGPAY SUITE MERCHANT SETUP CONFIGURATION REPORTS AUGUST 27, 2013 VERSION 1.01 TABLE OF CONTENTS 1 MERCHANT SETUP CONFIGURATION REPORTS...3 1.1 HOW TO GET THE MERCHANT SETUP CONFIGURATIONS REPORT... 3

More information

Connecting Custom Services to the YAWL Engine. Beta 7 Release

Connecting Custom Services to the YAWL Engine. Beta 7 Release Connecting Custom Services to the YAWL Engine Beta 7 Release Document Control Date Author Version Change 25 Feb 2005 Marlon Dumas, 0.1 Initial Draft Tore Fjellheim, Lachlan Aldred 3 March 2006 Lachlan

More information

Pre-authentication XXE vulnerability in the Services Drupal module

Pre-authentication XXE vulnerability in the Services Drupal module Pre-authentication XXE vulnerability in the Services Drupal module Security advisory 24/04/2015 Renaud Dubourguais www.synacktiv.com 14 rue Mademoiselle 75015 Paris 1. Vulnerability description 1.1. The

More information

XML: extensible Markup Language. Anabel Fraga

XML: extensible Markup Language. Anabel Fraga XML: extensible Markup Language Anabel Fraga Table of Contents Historic Introduction XML vs. HTML XML Characteristics HTML Document XML Document XML General Rules Well Formed and Valid Documents Elements

More information

Windows XP Exchange Client Installation Instructions

Windows XP Exchange Client Installation Instructions WINDOWS XP with Outlook 2003 or Outlook 2007 1. Click the Start button and select Control Panel: 2. If your control panel looks like this: Click Switch to Classic View. 3. Double click Mail. 4. Click show

More information

T320 E-business technologies: foundations and practice

T320 E-business technologies: foundations and practice T320 E-business technologies: foundations and practice Block 3 Part 2 Activity 2: Generating a client from WSDL Prepared for the course team by Neil Simpkins Introduction 1 WSDL for client access 2 Static

More information

Instant Chime for IBM Sametime Installation Guide for Apache Tomcat and Microsoft SQL

Instant Chime for IBM Sametime Installation Guide for Apache Tomcat and Microsoft SQL Instant Chime for IBM Sametime Installation Guide for Apache Tomcat and Microsoft SQL Spring 2015 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license

More information

HireDesk API V1.0 Developer s Guide

HireDesk API V1.0 Developer s Guide HireDesk API V1.0 Developer s Guide Revision 1.4 Talent Technology Corporation Page 1 Audience This document is intended for anyone who wants to understand, and use the Hiredesk API. If you just want to

More information

Djigzo S/MIME setup guide

Djigzo S/MIME setup guide Author: Martijn Brinkers Table of Contents...1 Introduction...3 Quick setup...4 Create a CA...4 Fill in the form:...5 Add certificates for internal users...5 Add certificates for external recipients...7

More information

Exercises: DTD Basi di da/ 2

Exercises: DTD Basi di da/ 2 Exercises: DTD Basi di da/ 2 Disheng Qiu disheng.qiu@gmail.com Luca Rossi luca.rossi.917@gmail.com Hints: Use a validator: Eclipse has an embedded XML/DTD validator W3C Validator: hip://validator.w3.org/

More information

Cisco Jabber for Windows 10.5 Advanced Features Guide

Cisco Jabber for Windows 10.5 Advanced Features Guide First Published: August 14, 2014 Last Modified: August 26, 2014 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS

More information

EditAble CRM Grid. For Microsoft Dynamics CRM. How To Guide. Trial Configuration: Opportunity View EditAble CRM Grid Scenario

EditAble CRM Grid. For Microsoft Dynamics CRM. How To Guide. Trial Configuration: Opportunity View EditAble CRM Grid Scenario EditAble CRM Grid For Microsoft Dynamics CRM How To Guide Trial Configuration: Opportunity View EditAble CRM Grid Scenario Table of Contents Overview... 3 Opportunity View EditAble CRM Grid... 3 Scenario...

More information

LabVIEW Internet Toolkit User Guide

LabVIEW Internet Toolkit User Guide LabVIEW Internet Toolkit User Guide Version 6.0 Contents The LabVIEW Internet Toolkit provides you with the ability to incorporate Internet capabilities into VIs. You can use LabVIEW to work with XML documents,

More information

White Paper. Creation of Online Help for Fabasoft Folio. Fabasoft Folio 2015 Update Rollup 2

White Paper. Creation of Online Help for Fabasoft Folio. Fabasoft Folio 2015 Update Rollup 2 White Paper Creation of Online Help for Fabasoft Folio Fabasoft Folio 2015 Update Rollup 2 Copyright Fabasoft R&D GmbH, Linz, Austria, 2015. All rights reserved. All hardware and software names used are

More information

Distributor Control Center Private Label/Channel Administrators

Distributor Control Center Private Label/Channel Administrators March 13, 2014 Distributor Control Center Private Label/Channel Administrators Version 2.6.3 Everyone.net Table of Contents Distributor Control Center... 1 1 The Distributor Control Center... 4 1.1 Introduction...

More information

An Email Newsletter Using ASP Smart Mailer and Advanced HTML Editor

An Email Newsletter Using ASP Smart Mailer and Advanced HTML Editor An Email Newsletter Using ASP Smart Mailer and Advanced HTML Editor This tutorial is going to take you through creating a mailing list application to send out a newsletter for your site. We'll be using

More information

Portals and Hosted Files

Portals and Hosted Files 12 Portals and Hosted Files This chapter introduces Progress Rollbase Portals, portal pages, portal visitors setup and management, portal access control and login/authentication and recommended guidelines

More information

Computer Networking LAB 2 HTTP

Computer Networking LAB 2 HTTP Computer Networking LAB 2 HTTP 1 OBJECTIVES The basic GET/response interaction HTTP message formats Retrieving large HTML files Retrieving HTML files with embedded objects HTTP authentication and security

More information

VIRTUAL LABORATORY: MULTI-STYLE CODE EDITOR

VIRTUAL LABORATORY: MULTI-STYLE CODE EDITOR VIRTUAL LABORATORY: MULTI-STYLE CODE EDITOR Andrey V.Lyamin, State University of IT, Mechanics and Optics St. Petersburg, Russia Oleg E.Vashenkov, State University of IT, Mechanics and Optics, St.Petersburg,

More information

Structured vs. unstructured data. Semistructured data, XML, DTDs. Motivation for self-describing data

Structured vs. unstructured data. Semistructured data, XML, DTDs. Motivation for self-describing data Structured vs. unstructured data 2 Semistructured data, XML, DTDs Introduction to databases CSCC43 Winter 2011 Ryan Johnson Databases are highly structured Well-known data format: relations and tuples

More information

OAPC. Website 2013. MailChimp

OAPC. Website 2013. MailChimp OAPC Website 2013 Mailchimp *Begin by going to Mailchimp s website at http://mailchimp.com/ Login Enter the OAPC Mailchimp credentials to login to account: Username: oapc2013 Password: emsontario2013 Go

More information

WEBINAR Implementation and Advanced Google Tag Manager

WEBINAR Implementation and Advanced Google Tag Manager WEBINAR Implementation and Advanced Google Tag Manager May 21, 2014 About InfoTrust GACP and GAP Reseller working with 2,000+ sites globally. Google Tag Manager Specialists In-depth understanding of tagging

More information

HELP DESK MANUAL INSTALLATION GUIDE

HELP DESK MANUAL INSTALLATION GUIDE Help Desk 6.5 Manual Installation Guide HELP DESK MANUAL INSTALLATION GUIDE Version 6.5 MS SQL (SQL Server), My SQL, and MS Access Help Desk 6.5 Page 1 Valid as of: 1/15/2008 Help Desk 6.5 Manual Installation

More information

ClickDimensions Quick Start Guide For Microsoft Dynamics CRM 2011. 9/1/2011 ClickDimensions

ClickDimensions Quick Start Guide For Microsoft Dynamics CRM 2011. 9/1/2011 ClickDimensions ClickDimensions Quick Start Guide For Microsoft Dynamics CRM 2011 9/1/2011 ClickDimensions Online Training Resources This guide will explain how to register for and use a ClickDimensions Marketing Automation

More information

Oracle Forms Services Secure Web.Show_Document() calls to Oracle Reports Server 6i

Oracle Forms Services Secure Web.Show_Document() calls to Oracle Reports Server 6i Oracle Forms Services Secure Web.Show_Document() calls to Oracle Reports Server 6i $Q2UDFOH7HFKQLFDO:KLWHSDSHU 0DUFK Secure Web.Show_Document() calls to Oracle Reports Server 6i Introduction...3 solution

More information

WWW. World Wide Web Aka The Internet. dr. C. P. J. Koymans. Informatics Institute Universiteit van Amsterdam. November 30, 2007

WWW. World Wide Web Aka The Internet. dr. C. P. J. Koymans. Informatics Institute Universiteit van Amsterdam. November 30, 2007 WWW World Wide Web Aka The Internet dr. C. P. J. Koymans Informatics Institute Universiteit van Amsterdam November 30, 2007 dr. C. P. J. Koymans (UvA) WWW November 30, 2007 1 / 36 WWW history (1) 1968

More information

Content Management System

Content Management System Content Management System XT-CMS INSTALL GUIDE Requirements The cms runs on PHP so the host/server it is intended to be run on should ideally be linux based with PHP 4.3 or above. A fresh install requires

More information

ACCREDITATION COUNCIL FOR PHARMACY EDUCATION. CPE Monitor. Technical Specifications

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

More information

Digital Signage with Apps

Digital Signage with Apps Version v1.0.0 Digital Signage with Apps Copyright 2012 Syabas Technology, All Rights Reserved 2 Digital Signage with Apps Project...6 New Project...6 Scheduler...6 Layout Panel...7 Property Panel...8

More information

Adworkz Posting Specifications Auto Ping & Post

Adworkz Posting Specifications Auto Ping & Post Adworkz Posting Specifications Auto Ping & Post Version 4.3 (August 19th, 2014) This document assumes knowledge within the XML and Post environments. This document is current with the date posted above

More information

HTTP - METHODS. Same as GET, but transfers the status line and header section only.

HTTP - METHODS. Same as GET, but transfers the status line and header section only. http://www.tutorialspoint.com/http/http_methods.htm HTTP - METHODS Copyright tutorialspoint.com The set of common methods for HTTP/1.1 is defined below and this set can be expanded based on requirements.

More information

Insurance claims through ClaimConnect (Dentxchange.com) using your Data Team Program.

Insurance claims through ClaimConnect (Dentxchange.com) using your Data Team Program. Insurance claims through ClaimConnect (Dentxchange.com) using your Data Team Program. 1) Set Data Team DDS to interface with ClaimConnect: Under Settings > Business Description > Site Code > Set Site Code

More information

Overview: FedPayments Reporter Interface to Online Banking Cash Management Systems

Overview: FedPayments Reporter Interface to Online Banking Cash Management Systems Overview: FedPayments Reporter Interface to Online Banking Cash Management Systems Revised 9/16/2015 Contents Brief FedPayments Reporter Service Overview Interface with online banking cash management systems

More information

XML Processing and Web Services. Chapter 17

XML Processing and Web Services. Chapter 17 XML Processing and Web Services Chapter 17 Textbook to be published by Pearson Ed 2015 in early Pearson 2014 Fundamentals of http://www.funwebdev.com Web Development Objectives 1 XML Overview 2 XML Processing

More information

TXAPI IN-RUNNING FEED TENNIS EDITION

TXAPI IN-RUNNING FEED TENNIS EDITION TXAPI IN-RUNNING FEED TENNIS EDITION User Guide Document version 5.00 Dec 2015 Table of Contents WHAT ARE THE TXODDS XML FEEDS?... 4 Time sensitivity... 4 Data on demand... 5 FILTERING... 5 XML SCHEMAS...

More information

Contents. 2 Alfresco API Version 1.0

Contents. 2 Alfresco API Version 1.0 The Alfresco API Contents The Alfresco API... 3 How does an application do work on behalf of a user?... 4 Registering your application... 4 Authorization... 4 Refreshing an access token...7 Alfresco CMIS

More information

Adworkz Posting Specifications New Car Ping & Post

Adworkz Posting Specifications New Car Ping & Post Adworkz Posting Specifications New Car Ping & Post Version 3.2 (October 14th, 2014) This document assumes knowledge within the XML and Post environments. This document is current with the date posted above

More information

Retrieving Live Stock Quotes from the Internet

Retrieving Live Stock Quotes from the Internet Tutorial 11 Connecting to External Data Excel EX 707 Retrieving Live Stock Quotes from the Internet Many financial applications need up-to-the-minute market data. Excel workbooks that display stock data

More information

vcommander will use SSL and session-based authentication to secure REST web services.

vcommander will use SSL and session-based authentication to secure REST web services. vcommander REST API Draft Proposal v1.1 1. Client Authentication vcommander will use SSL and session-based authentication to secure REST web services. 1. All REST API calls must take place over HTTPS 2.

More information

Query JD Edwards EnterpriseOne Customer Credit using Oracle BPEL Process Manager

Query JD Edwards EnterpriseOne Customer Credit using Oracle BPEL Process Manager Query JD Edwards EnterpriseOne Customer Credit using Oracle BPEL Process Manager 1 Overview In this tutorial you will be querying JD Edwards EnterpriseOne for Customer Credit information. This is a two

More information

Troubleshooting / FAQ

Troubleshooting / FAQ Troubleshooting / FAQ Routers / Firewalls I can't connect to my server from outside of my internal network. The server's IP is 10.0.1.23, but I can't use that IP from a friend's computer. How do I get

More information

Office 888-707-3030. Fax 888-300-3002

Office 888-707-3030. Fax 888-300-3002 Office 888-707-3030 Fax 888-300-3002 1 Reseller Quick-Start Guide Table of Contents Reseller Account Setup Checklist 2 Domain & Name Servers 3 Payment Gateway(s) 4 Dedicated Email Servers 5 Landing Page

More information

Department Service Integration with e-pramaan

Department Service Integration with e-pramaan Department Service Integration with e-pramaan How to integrate a PHP Application PHP specific integration details are provided in this document. Read e-pramaan Departments Integration Document before proceeding.

More information

WebCite Technical Background and Best Practices Guide

WebCite Technical Background and Best Practices Guide WebCite Technical Background and Best Practices Guide This document provides an overview of the WebCite system, including best practices and technical details. It describes preferred methods for both initiating

More information

Authentication and Single Sign On

Authentication and Single Sign On Contents 1. Introduction 2. Fronter Authentication 2.1 Passwords in Fronter 2.2 Secure Sockets Layer 2.3 Fronter remote authentication 3. External authentication through remote LDAP 3.1 Regular LDAP authentication

More information

Web Service Integration

Web Service Integration Web Service Integration API s (Application Programming Interface) ver. 2 2011-04-05 IMPORTANT: This document is ONLY an annex to the sms.pt integration. Please read the sms.pt Web Service Integration for

More information

Net 2. NetApp Electronic Library. User Guide for Net 2 Client Version 6.0a

Net 2. NetApp Electronic Library. User Guide for Net 2 Client Version 6.0a Net 2 NetApp Electronic Library User Guide for Net 2 Client Version 6.0a Table of Contents 1 INTRODUCTION AND KEY FEATURES... 3 SOME OF THE KEY FEATURES INCLUDE:... 3 INSTALLATION PREREQUISITES:... 3 2

More information

Installing The SysAidTM Server Locally

Installing The SysAidTM Server Locally Installing The SysAidTM Server Locally Document Updated: 17 October 2010 Introduction SysAid is available in two editions: a fully on-demand ASP solution and an installed, in-house solution for your server.

More information

Multimedia Applications. Mono-media Document Example: Hypertext. Multimedia Documents

Multimedia Applications. Mono-media Document Example: Hypertext. Multimedia Documents Multimedia Applications Chapter 2: Basics Chapter 3: Multimedia Systems Communication Aspects and Services Chapter 4: Multimedia Systems Storage Aspects Chapter 5: Multimedia Usage and Applications Documents

More information

Administrator s Manual

Administrator s Manual Administrator s Manual Absolute Banner Manager XE V2.0 The Powerful Banner Administration Server Developed by XIGLA SOFTWARE Copyright 2002 All Rights Reserved Visit our site at http://www.xigla.com TABLE

More information

Creating a Classroom Web Page Using Google Sites. Max Brandenberger. August 2 or August 8, 2012

Creating a Classroom Web Page Using Google Sites. Max Brandenberger. August 2 or August 8, 2012 Creating a Classroom Web Page Using Google Sites Max Brandenberger August 2 or August 8, 2012 Environmental Consideration As a consideration to the environment, I m not going to print these instructions

More information

i2b2 Cell Messaging Project Management (PM) Cell

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...

More information

Quick Reference Guide. Online Courier: FTP. Signing On. Using FTP Pickup. To Access Online Courier. https://onlinecourier.suntrust.

Quick Reference Guide. Online Courier: FTP. Signing On. Using FTP Pickup. To Access Online Courier. https://onlinecourier.suntrust. Quick Reference Guide Online Courier: FTP https://onlinecourier.suntrust.com With SunTrust Online Courier, you can have reports and files delivered to you using an FTP connection. There are two delivery

More information

CyberSource Business Center

CyberSource Business Center CyberSource Business Center CS-5-123110 Copyright 2010 Harris Connect, LLC. all rights reserved. Reproduction in any form without the express written consent of Harris Connect, LLC. is strictly prohibited

More information

Standard Recommended Practice extensible Markup Language (XML) for the Interchange of Document Images and Related Metadata

Standard Recommended Practice extensible Markup Language (XML) for the Interchange of Document Images and Related Metadata Standard for Information and Image Management Standard Recommended Practice extensible Markup Language (XML) for the Interchange of Document Images and Related Metadata Association for Information and

More information

Secure XML API Integration Guide - Periodic and Triggered add in

Secure XML API Integration Guide - Periodic and Triggered add in Secure XML API Integration Guide - Periodic and Triggered add in Document Control This is a control document DESCRIPTION Secure XML API Integration Guide - Periodic and Triggered add in CREATION DATE 15/05/2009

More information

Deployment Guide. VMware: Enabling vcenter Dynamic Provisioning with the AX Series

Deployment Guide. VMware: Enabling vcenter Dynamic Provisioning with the AX Series Deployment Guide VMware: Enabling vcenter Dynamic Provisioning with the AX Series DEPLOYMENT GUIDE Table of Contents VMware: Enabling vcenter Dynamic Provisioning with the AX Series Introduction...1 Assumptions...1

More information

Software Development Kit (SDK)

Software Development Kit (SDK) QUICK START GUIDE UC Software 5.3.0 May 2015 3725-49126-001A Software Development Kit (SDK) Polycom, Inc. 1 Copyright 2015, Polycom, Inc. All rights reserved. No part of this document may be reproduced,

More information

Reseller Quick Start Guide 1. Domain & Name Servers...2. Payment Gateways...3-4. Dedicated Email Servers... 5. Setup Your Landing Page/Website...

Reseller Quick Start Guide 1. Domain & Name Servers...2. Payment Gateways...3-4. Dedicated Email Servers... 5. Setup Your Landing Page/Website... 1 Reseller Quick Start Guide 1 Domain & Name Servers...2 Payment Gateways...3-4 Dedicated Email Servers... 5 Setup Your Landing Page/Website...6 Design Guidelines.......7 Setup Your Pricing Plans...8-9

More information

ithenticate User Manual

ithenticate User Manual ithenticate User Manual Updated November 20, 2009 Contents Introduction 4 New Users 4 Logging In 4 Resetting Your Password 5 Changing Your Password or Username 6 The ithenticate Account Homepage 7 Main

More information

Oracle Forms Services Secure Web.Show_Document() calls to Oracle Reports

Oracle Forms Services Secure Web.Show_Document() calls to Oracle Reports Oracle Forms Services Secure Web.Show_Document() calls to Oracle Reports $Q2UDFOH7HFKQLFDO:KLWHSDSHU )HEUXDU\ Secure Web.Show_Document() calls to Oracle Reports Introduction...3 Using Web.Show_Document

More information

Remote Control 5.4 Setup Guide

Remote Control 5.4 Setup Guide Remote Control 5.4 Setup Guide A remote control solution designed for Network Administrators Copyright 2014, IntelliAdmin, LLC Revision 5/15/2014 http://www.intelliadmin.com Page 1 Table of Contents Quick

More information

Messaging Dashboard Quick Reference Guide

Messaging Dashboard Quick Reference Guide Messaging Dashboard Quick Reference Guide This guide will show you how to log in and use the Messaging Dashboard application. The Messaging Dashboard application allows users to search for messages or

More information

ASP Tutorial. Application Handling Part I: 3/15/02

ASP Tutorial. Application Handling Part I: 3/15/02 ASP Tutorial Application Handling Part I: 3/15/02 Agenda Managing User Sessions and Applications Section I Groundwork for Web applications Topics: Asp objects, IIS, global.asa Section II Application Objects

More information

MXSAVE XMLRPC Web Service Guide. Last Revision: 6/14/2012

MXSAVE XMLRPC Web Service Guide. Last Revision: 6/14/2012 MXSAVE XMLRPC Web Service Guide Last Revision: 6/14/2012 Table of Contents Introduction! 4 Web Service Minimum Requirements! 4 Developer Support! 5 Submitting Transactions! 6 Clients! 7 Adding Clients!

More information

Address Information. USPS Web Tools Application Programming Interface User s Guide. Document Version 4.0 (2/01/2015)

Address Information. USPS Web Tools Application Programming Interface User s Guide. Document Version 4.0 (2/01/2015) Address Information USPS Web Tools Application Programming Interface User s Guide Document Version 4.0 (2/01/2015) Table of Contents 1.0 Introduction To Web Tools... 2 Before you get started:... 2 Important

More information

USA epay Gateway Commonly Asked Questions

USA epay Gateway Commonly Asked Questions USA epay Gateway Commonly Asked Questions 1. Where can I find my username and password to log into the console? A: You may find your username and password in the welcome letter/email which you received

More information

How to Register for Training

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

More information

Setting Up a Dreamweaver Site Definition for OIT s Web Hosting Server

Setting Up a Dreamweaver Site Definition for OIT s Web Hosting Server page of 4 oit UMass Office of Information Technologies Setting Up a Dreamweaver Site Definition for OIT s Web Hosting Server This includes Web sites on: https://webadmin.oit.umass.edu/~user http://people.umass.edu/

More information

How to consume a Domino Web Services from Visual Studio under Security

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

More information

IMAP and SMTP Setup in Email Clients

IMAP and SMTP Setup in Email Clients IMAP and SMTP Setup in Email Clients Configuring an Email Client for IMAP Configuring an Email Client for the SMTP Server Overview Internet Message Access Protocol (IMAP), or a remote connection through

More information

USER GUIDE. Snow Inventory Client for Unix Version 1.1.03 Release date 2015-04-29 Document date 2015-05-20

USER GUIDE. Snow Inventory Client for Unix Version 1.1.03 Release date 2015-04-29 Document date 2015-05-20 USER GUIDE Product Snow Inventory Client for Unix Version 1.1.03 Release date 2015-04-29 Document date 2015-05-20 CONTENT ABOUT THIS DOCUMENT... 3 OVERVIEW... 3 OPERATING SYSTEMS SUPPORTED... 3 PREREQUISITES...

More information

10CS73:Web Programming

10CS73:Web Programming 10CS73:Web Programming Question Bank Fundamentals of Web: 1.What is WWW? 2. What are domain names? Explain domain name conversion with diagram 3.What are the difference between web browser and web server

More information

Xtreeme Search Engine Studio Help. 2007 Xtreeme

Xtreeme Search Engine Studio Help. 2007 Xtreeme Xtreeme Search Engine Studio Help 2007 Xtreeme I Search Engine Studio Help Table of Contents Part I Introduction 2 Part II Requirements 4 Part III Features 7 Part IV Quick Start Tutorials 9 1 Steps to

More information

Installing and Sending with DocuSign for NetSuite v2.2

Installing and Sending with DocuSign for NetSuite v2.2 DocuSign Quick Start Guide Installing and Sending with DocuSign for NetSuite v2.2 This guide provides information on installing and sending documents for signature with DocuSign for NetSuite. It also includes

More information