Open ebay Apps Jumpstart

Size: px
Start display at page:

Download "Open ebay Apps Jumpstart"

Transcription

1 Open ebay Apps Jumpstart Nemo Chen Madhu Gupta Open ebay team

2 Agenda 1. Introduction to Open ebay Apps 2. Open ebay Technical Overview 3. Deploying your first Open ebay App

3 Agenda 1. Introduction to Open ebay Apps 2. Open ebay Technical Overview 3. Deploying your first Open ebay App

4 Introduction to Open ebay Apps

5 our founder s vision ebay has been a platform long before we had an official Developers Program. The more people that invest their time and energy building on top of ebay, the better it is for every part of the ebay Community they're the ones that will help ebay grow in directions we can't even predict. -- Pierre Omidyar

6 10 years of Developers Program heritage 100,000 developers strong 14,000 innovative buying and selling applications whole businesses support ebay s selling community

7 supporting ebay s rich APIs Over 125 Data Rich APIs robust, open standards 6 billion+ calls served /month Professional Documentation and Samples SDKs for many platforms PHP.NET Java Javascript Flash/Flex XML / SOAP

8 enabling integration with ebay data to solve the most common needs of online merchants market research product sourcing inventory management shipping solutions CRM tools marketing/merchandising finance & accounting

9 in 2009 ebay opened it s doors to apps allowing developers to embed apps where sellers do their business, directly inside of MyeBay

10 and launched the Apps Center on ebay A trusted Seller Tools Marketplace on ebay ebay Sellers Help ebay sellers grow their business by delivering vetted business management and productivity tools through a trusted, seamless experience on ebay.com Reduce ebay Seller Tools product delivery costs via 3rd party developers to build tools for the non-core and niche selling features, while ebay focuses on building core selling capabilities. 3P developers Create monetization opportunities for 3rd party developers via access to customers, simple integration, and handle key operational issues like subscriptions/billing.

11 the Open ebay platform enables solutions to common developer needs Customers ebay Sellers Apps Center 2.5M+ US registered sellers coming soon: Motors and International sellers Apps Center: marketing/promotion Featured App placements on ebay.com Monetization Technology Managed Billing Platform Integrated subscription and PayPal pre-approval Payment method management Flexible subscription or usage based billing Invoicing and payment processing Gadget Framework Open Standards Gadget Specification Native or Self Hosted options Event-based outbound notifications Authentication & Single-Sign On

12 how is the Apps Center doing? after 10 months in business: 2.5 million active US seller audience 40+ applications in 8 categories More than 100k subscriptions 1.5 subscriptions/subscriber several developers on their 3 rd & 4 th apps!

13 how can you participate? 3 simple steps. 1. participate in our Business Readiness Review ($75) 2. setup your billing plans, marketing info, and app metadata. test in the sandbox 3. submit your application for production review (free!) Technical Docs : Participation Guidelines:

14 Agenda 1. Introduction to Open ebay Apps 2. Open ebay Technical Overview 3. Deploying your first Open ebay App

15 Technical Overview

16 we ve used open standards Built on open standard Gadgets Specification Gadgets Server and Repository Support Native (HTML/JS) and Self-Hosted (URL ) Gadgets Reusable components across ebay and the Web

17 MyeBay Applications Tab is a Gadget Container Your app is the gadget App is iframed inside of Applications Tab container page Full width of the page Logo and help links are rendered by ebay Deployment Descriptor maintains app metadata (Logos, Name, Short Description, Help and legal content)

18 options for building your app: selfhosted Most common choice App is completely hosted on your servers Business Logic Presentation You host a listener for subscription events ebay only knows the app entry point URL Use Gadget API for: Dynamic Height resize gadget height dynamically Reading User Prefs <Module> <ModulePrefs... /> <Content type="url" view= canvas href=" /> </Module>

19 anatomy of a self-hosted app url gadget Application Canvas Other WS WS WS URL Type 3P Pres Layer 3P Biz Layer ebay Web Services 3P OEPI Listener addsubscriber/removesubscriber Open ebay Framework

20 when your url application renders.. Accept the Render Request from ebay HTTP Post from ebay Authenticate Validate ebay Signature Process Request Retrieve EAIS Token, UserID, Auth Token, Token Expiration Retrieve User Preferences and URL Parameters in POST data Render Application presentation layer

21 options for building your app: native Client side code ( HTML/JS) hosted and rendered by ebay Use Gadgets API to interact with ebay and the outside world Preload & MakeRequest access your 3P backend, remote resources, other public Web Services Direct Access to ebay APIs User Preferences read user preferences from inside the gadget Dynamic Height resize gadget height dynamically See for full docs Easy vetting process, since no code running from your servers <Module> <ModulePrefs title="hello world example" /> <Content type="url" view= canvas href=" /> <Content type="html view= default,wide > <![CDATA[ Hello, world! ]]> </Content> </Module>

22 anatomy of a native - html gadget Other WS WS WS Application Canvas HTML Type ebay Gadget Repository 3P Web Service ebay Web Services Gadgets API

23 HTML vs. URL You may use either HTML or URL style gadgets anywhere. HTML Gadget Simple HTML gadgets can be totally self contained, no need for you to host them on a server. Using makerequest and other standard DHTML techniques, and remote servers, you can do anything a URL gadget can do it is just a different programming style. URL Gadget If you are fielding a complex multi-screen (multi-page) gadget, and are more comfortable with a traditional non-ajax multi-page programming model. Perhaps you have an existing multi-page application you would like to make a gadget. Most gadgets.* APIs are available, especially dynamic height. APIs requiring remote calls to the gadget server (e.g. ebay-api and makerequest) are not due to same origin restrictions, but the non-ajax programming style will have the application make these calls server side.

24 Open ebay Integration Services Open ebay Identity Provider Service Establishes identity of your application for subsequent service calls Open ebay Partner Interface(OEPI) Defines the interface that you will implement to listen for subscription related events Open ebay Subscription Service Defines a set of operations related to subscription management and billing tasks

25 OEPI: Open ebay Participant Interface add Subscriber Generated for every new user that subscribes to your application Provides access to User Token, UserID, and Billing/Subscription details remove Subscriber Generated when a user un-subscribes from your application Token is revoked by ebay updatesubscriber Generated when the state changes for a particular subscription changesubscriptionplan Generated when a user upgrades or downgrades between your subscriptoin plans updatesubscribercredentials Generated when a user s authentication token is revoked or renewed

26 implementing an OEPI Listener Optional - but currently used by all apps ebay sends event to 3P application via HTTP POST OEPI Listener should: Authenticate Validate ebay Signature Process Request decrypt Sender Token Retrieve User Auth info and Subscription/Billing Info Apply subscription business logic Send Response XML to set the subscription state Construct addsubscriber response and return in HTTP Response

27 OESS: Open ebay Subscription Service addusage Adds charges for a subscriber, including some nonusage types of charges, e.g. a monthly subscription fee. setsubscriptionstate Requests a change in the subscription state of a user. getbillingstatements Retrieves all available billing statements balances for a subscriber. (Statement HTML image available Oct. 2010) getbillingrecords Retrieves detailed billed charges associated with a subscriber's account. The getbillingrecords call is used after you have used getbillingstatements to retrieve a statementid. (Additional transactions, unbilled, credits, payments, available Oct. 2010) getsubscribers Returns information about an application's subscribers. getsubscriptionplans Returns a list of subscription plans, including details, for the application making the request.

28 ebay Web Services Use standard ebay Web Services to interact with ebay user data. User s auth token is provided as part of addsubscriber and render request Documentation Links APIs Shopping API Trading API Best Match API Merchandising API Feedback API Finding API Large Merchant Services Client Alerts API Platform Notifications API Research API

29 Agenda 1. Introduction to Open ebay Apps 2. Open ebay Technical Overview 3. Deploying your first Open ebay App

30 Deploying your first app

31 Demo Agenda Preparing a Deployment Descriptor Deploying your App to Sandbox Testing your App in the Sandbox Using self-service features on the Developer Portal Creating your Application Catalog entry Creating your Billing Plans Managing Subscribers

32 Deploying Your First Open ebay App Pre-Requisites to follow along with the demo: Create an account on the Developer Portal Create a sandbox user with the Sandbox User Registration Tool Login to Sandbox and set your user s registration country to United States

33 Deploying Your First Open ebay App

34 Deployment Descriptor Walkthrough Important Required fields Application ID Resources Links (Listener endpoint, help page ) Messages (short, long desc, legal terms, policy ) Permissions Private vs Public Implements Subscription Feature Gadget Views, UserPrefs

35 Agenda 1. Introduction to Open ebay Apps 2. Open ebay Technical Overview 3. Deploying your first Open ebay App 3-1 Deploy your Open ebay App 3-2 Add Application Directory 3-3 Create Billing Plan 3-4 Subscribe the Open ebay App 3-5 Start the Open ebay App

36 Deploying Your Open ebay App

37 Successfully

38 Agenda 1. Introduction to Open ebay Apps 2. Open ebay Technical Overview 3. Deploying your first Open ebay App 3-1 Deploy your Open ebay App 3-2 Add Application Directory 3-3 Create Billing Plan 3-4 Subscribe the Open ebay App 3-5 Start the Open ebay App

39 Add Application Directory

40 App Cat Step 1: Country, Languages, and Categories

41 App Cat Step 2: Application Description and Information

42 App Cat Step 3: Developer/Company Details

43 App Cat Step 4: Application Logo and Screenshots

44 Successfully

45 Agenda 1. Introduction to Open ebay Apps 2. Open ebay Technical Overview 3. Deploying your first Open ebay App 3-1 Deploy your Open ebay App 3-2 Add Application Directory 3-3 Create Billing Plan 3-4 Subscribe the Open ebay App 3-5 Start the Open ebay App

46 View Billing Plan

47 Create a new paid plan

48 Create a new paid plan

49 View Billing Plans

50 Agenda 1. Introduction to Open ebay Apps 2. Open ebay Technical Overview 3. Deploying your first Open ebay App 3-1 Deploy your Open ebay App 3-2 Add Application Directory 3-3 Create Billing Plan 3-4 Subscribe the Open ebay App 3-5 Start the Open ebay App

51 The App in App Center

52 View the App

53 Subscribe the App

54 Subscription Successful

55 Agenda 1. Introduction to Open ebay Apps 2. Open ebay Technical Overview 3. Deploying your first Open ebay App 3-1 Deploy your Open ebay App 3-2 Add Application Directory 3-3 Create Billing Plan 3-4 Subscribe the Open ebay App 3-5 Start the Open ebay App

56 Manage your applications New Applications Tab Manage Application Start Application Other Actions See details Rate the application Unsubscribe

57 Start the application

58 Open Standard Built on open standard, easily deployed to google Source File on google: /FindPopularItems.xml Subscribe it on google: %2FFindPopularItems.xml 58

59 Documentation Links Open ebay Apps Overview Summary of the Open ebay Apps opportunity, brief technical overview, business and technical requirements. Developing Open ebay Apps How to develop gadgets for Open ebay Apps. Implementing Subscription and Billing How to set up a listener for billing-related calls, how to receive calls. Managed Platform Billing Guide General and business information about the billing platform Open ebay/ Apps Center Participation Requirements Detailed information on business rules for participation and the vetting process.

60 Q&A Contact information

Open ebay Apps Managed Billing Platform Guide. Version 3.0

Open ebay Apps Managed Billing Platform Guide. Version 3.0 Open ebay Apps Managed Billing Platform Guide Version 3.0 Table of Contents Introduction... 3 Overview... 3 Subscription Plans... 4 Types of Plans... 4 Charge Types for Billable Plans... 4 Credits, Discounts,

More information

Frequently Asked Questions About the Managed Billing Platform

Frequently Asked Questions About the Managed Billing Platform Frequently Asked Questions About the Managed Billing Platform 1. When can I expect to be paid for a subscription to my application? 2. Why did I receive a payment outside of the normal payment collection

More information

Selling Digital Goods Online

Selling Digital Goods Online PayLoadz.com Selling Digital Goods Online How to use the PayLoadz and PayPal services to sell digital goods on your web site Updated: 02/12/2006 TABLE OF CONTENTS INTRODUCTION...3 HOW IT WORKS...3 GETTING

More information

MasterPass Service Provider Onboarding & Integration Guide Fileand API-Based Merchant Onboarding Version 6.10

MasterPass Service Provider Onboarding & Integration Guide Fileand API-Based Merchant Onboarding Version 6.10 MasterPass Service Provider Onboarding & Integration Guide Fileand API-Based Merchant Onboarding Version 6.10 7 January 2016 SPBM Summary of Changes, 7 January 2016 Summary of Changes, 7 January 2016 This

More information

5Subscription Management Automate. 6Electronic License Activation (ELA) 7Electronic License Management. 8Electronic Software Delivery (ESD)

5Subscription Management Automate. 6Electronic License Activation (ELA) 7Electronic License Management. 8Electronic Software Delivery (ESD) PAGE 1 OF 5 FEATURES SOLO Server is our flagship feature-rich license automation and distribution server. SOLO Server Lite is more for customers who want a very basic activation server and want to deeply

More information

Introduction to SciVerse Applications. Ryan Dietz ryan.dietz@elsevier.com

Introduction to SciVerse Applications. Ryan Dietz ryan.dietz@elsevier.com Introduction to SciVerse Applications Ryan Dietz ryan.dietz@elsevier.com What is SciVerse Platform to bring together all Elsevier content o SciVerse ScienceDirect full-text articles database (10 million

More information

Middleware- Driven Mobile Applications

Middleware- Driven Mobile Applications Middleware- Driven Mobile Applications A motwin White Paper When Launching New Mobile Services, Middleware Offers the Fastest, Most Flexible Development Path for Sophisticated Apps 1 Executive Summary

More information

Configuration Guide Copyright 2013 HiPay wallet All Rights Reserved Last updated in July 2013

Configuration Guide Copyright 2013 HiPay wallet All Rights Reserved Last updated in July 2013 Configuration Guide 2 Table of contents Configuration Guide... 1 Introduction... 3 Pre-requisites... 4 Recent version... 4 Getting started, a step-by-step walkthrough... 5 Merchant account registration...

More information

Pay with Amazon Integration Guide

Pay with Amazon Integration Guide 2 2 Contents... 4 Introduction to Pay with Amazon... 5 Before you start - Important Information... 5 Important Advanced Payment APIs prerequisites... 5 How does Pay with Amazon work?...6 Key concepts in

More information

Checkout FAQs. What are my Pay Now Button Options? These options define the end user experience of your buyers during checkout.

Checkout FAQs. What are my Pay Now Button Options? These options define the end user experience of your buyers during checkout. Customize ebay Checkout Checkout FAQs What are my Pay Now Button Options? These options define the end user experience of your buyers during checkout. Do not show Pay Now option This option will not publish

More information

Cloud Powered Mobile Apps with Azure

Cloud Powered Mobile Apps with Azure Cloud Powered Mobile Apps with Azure Malte Lantin Technical Evanglist Microsoft Azure Agenda Mobile Services Features and Demos Advanced Features Scaling and Pricing 2 What is Mobile Services? Storage

More information

From small businesses to large enterprise companies, Recurly offers the simplicity and sophistication your business needs as it grows.

From small businesses to large enterprise companies, Recurly offers the simplicity and sophistication your business needs as it grows. GROWING with From small businesses to large enterprise companies, Recurly offers the simplicity and sophistication your business needs as it grows. Our features, tools, and support help you effectively

More information

Employee Active Directory Self-Service Quick Setup Guide

Employee Active Directory Self-Service Quick Setup Guide Employee Active Directory Self-Service Quick Setup Guide (V2.0) Last update: 11/5/2014 Copyright 2014 InfraDog Inc. All rights reserved Corporate Phone: +1 (416) 473-4096, Fax: +1 (888) 863-3936, Email:

More information

MASTERPASS MERCHANT ONBOARDING & INTEGRATION GUIDE

MASTERPASS MERCHANT ONBOARDING & INTEGRATION GUIDE MASTERPASS MERCHANT ONBOARDING & INTEGRATION GUIDE VERSION 6.1, AS OF DECEMBER 5, 2014 Notices Proprietary Rights The information contained in this document is proprietary and confidential to MasterCard

More information

Online sales management software Quick store setup. v 1.1.3

Online sales management software Quick store setup. v 1.1.3 Online sales management software Quick store setup v 1.1.3 Table of Contents 1Shopizer urls...3 2Configure your store...3 Store and profile...4 Store Front Configuration...4 3Integration...6 4Configure

More information

Getting Started Guide for Developing tibbr Apps

Getting Started Guide for Developing tibbr Apps Getting Started Guide for Developing tibbr Apps TABLE OF CONTENTS Understanding the tibbr Marketplace... 2 Integrating Apps With tibbr... 2 Developing Apps for tibbr... 2 First Steps... 3 Tutorial 1: Registering

More information

Module - Facebook PS Connect

Module - Facebook PS Connect Module - Facebook PS Connect Operation Date : October 10 th, 2013 Business Tech Installation & Customization Service If you need assistance, we can provide you a full installation and customization service

More information

1: 2: 2.1. 2.2. 3: 3.1: 3.2: 4: 5: 5.1 5.2 & 5.3 5.4 5.5 5.6 5.7 5.8 CAPTCHA

1: 2: 2.1. 2.2. 3: 3.1: 3.2: 4: 5: 5.1 5.2 & 5.3 5.4 5.5 5.6 5.7 5.8 CAPTCHA Step by step guide Step 1: Purchasing a RSMembership! membership Step 2: Download RSMembership! 2.1. Download the component 2.2. Download RSMembership! language files Step 3: Installing RSMembership! 3.1:

More information

ECOMDASH OVERVIEW...2 STOREFRONT SETUP (MARKETPLACES & SHOPPING CARTS)...3 SHIPPING SETUP...5 INVENTORY SETUP...6 USER AND COMPANY SETUP...

ECOMDASH OVERVIEW...2 STOREFRONT SETUP (MARKETPLACES & SHOPPING CARTS)...3 SHIPPING SETUP...5 INVENTORY SETUP...6 USER AND COMPANY SETUP... Thank you for your interest in using ecomdash for your ecommerce business. Here are steps needed to setup your storefronts, inventory and shipping integrations to get you up and running! ECOMDASH OVERVIEW...2...

More information

CHAPTER 26 - SHOPPING CART

CHAPTER 26 - SHOPPING CART CHAPTER 26 - SHOPPING CART ecommerce Hosting With ihoststudio's Shopping Cart Sell your items on the web with the ihoststudio shopping cart. Product catalogs Shopping cart Credit Card Payments Store control

More information

Integrating CRM On Demand with the E-Business Suite to Supercharge your Sales Team

Integrating CRM On Demand with the E-Business Suite to Supercharge your Sales Team Integrating CRM On Demand with the E-Business Suite to Supercharge your Sales Team Presented by: Tom Connolly, Jason Lieberman Company: BizTech Session ID: #10351 Overview Introductions Background Web

More information

Social Application Guide

Social Application Guide Social Application Guide Version 2.2.0 Mar 2015 This document is intent to use for our following Magento Extensions Or any other cases it might help. Copyright 2015 LitExtension.com. All Rights Reserved

More information

Adobe Developer Workshop Series

Adobe Developer Workshop Series Adobe Developer Workshop Series Working with Security February 2005 San Francisco, California 2005 Adobe Systems Incorporated. All Rights Reserved. Agenda Introduction Overview of Intelligent Document

More information

Oracle Cloud 25.09.14. Bjarte Drivenes Enterprise Architect. Copyright 2014 Oracle and/or its affiliates. All rights reserved.

Oracle Cloud 25.09.14. Bjarte Drivenes Enterprise Architect. Copyright 2014 Oracle and/or its affiliates. All rights reserved. Oracle Cloud 25.09.14 Bjarte Drivenes Enterprise Architect Copyright 2014 Oracle and/or its affiliates. All rights reserved. Copyright 2014 Oracle and/or its affiliates. All rights reserved. Agenda Private

More information

Android Developer Fundamental 1

Android Developer Fundamental 1 Android Developer Fundamental 1 I. Why Learn Android? Technology for life. Deep interaction with our daily life. Mobile, Simple & Practical. Biggest user base (see statistics) Open Source, Control & Flexibility

More information

SAP NetWeaver AS Java

SAP NetWeaver AS Java Chapter 75 Configuring SAP NetWeaver AS Java SAP NetWeaver Application Server ("AS") Java (Stack) is one of the two installation options of SAP NetWeaver AS. The other option is the ABAP Stack, which is

More information

Cello How-To Guide. Cello Billing

Cello How-To Guide. Cello Billing Cello How-To Guide Cello Billing Contents 1 Introduction to Cello Billing... 5 1.1 Components of Cello Billing Engine... 6 1.2 CelloSaaS Billing Overview... 6 1.3 Introduction to Subscription Management...

More information

Official Amazon Checkout Extension for Magento Commerce. Documentation

Official Amazon Checkout Extension for Magento Commerce. Documentation Official Amazon Checkout Extension for Magento Commerce Documentation 1. Introduction This extension provides official integration of your Magento store with Inline Checkout by Amazon service. Checkout

More information

Single Sign-On Implementation Guide

Single Sign-On Implementation Guide Single Sign-On Implementation Guide Salesforce, Winter 16 @salesforcedocs Last updated: November 4, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

API Management Buyers Guide. White Paper

API Management Buyers Guide. White Paper API Management Buyers Guide White Paper What Is an API? The value of your software, data, or other digital assets can be dramatically increased by reaching new audiences. This is possible through the use

More information

Programming Social Applications

Programming Social Applications Programming Social Applications Jonathan LeBlanc O'REILLY Beijing Cambridge Farnham Koln Sebastopol Tokyo Table of Contents Preface xv 1. Social Application Container Core Concepts 1 What Is a Social Application

More information

Feature Guide Elastic Path Subscriptions. 1.800.942.5282 (toll-free within North America) +1.604.408.8078 (outside North America) www.elasticpath.

Feature Guide Elastic Path Subscriptions. 1.800.942.5282 (toll-free within North America) +1.604.408.8078 (outside North America) www.elasticpath. Feature Guide Elastic Path Subscriptions 1.800.942.5282 (toll-free within North America) +1.604.408.8078 (outside North America) www.elasticpath.com The industry s most complete subscription and billing

More information

Using ShopTab with an Affiliate Marketing Program

Using ShopTab with an Affiliate Marketing Program Using ShopTab with an Affiliate Marketing Program An affiliate marketing program can be a very effective way to drive revenues for a merchants and marketing networks by creating a large group of sellers

More information

Single Sign-On Implementation Guide

Single Sign-On Implementation Guide Single Sign-On Implementation Guide Salesforce, Summer 15 @salesforcedocs Last updated: July 1, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of

More information

Cloud. Hosted Exchange Administration Manual

Cloud. Hosted Exchange Administration Manual Cloud Hosted Exchange Administration Manual Table of Contents Table of Contents... 1 Table of Figures... 4 1 Preface... 6 2 Telesystem Hosted Exchange Administrative Portal... 7 3 Hosted Exchange Service...

More information

August 2014 San Antonio Texas The Power of Embedded Analytics with SAP BusinessObjects

August 2014 San Antonio Texas The Power of Embedded Analytics with SAP BusinessObjects August 2014 San Antonio Texas The Power of Embedded Analytics with SAP BusinessObjects Speaker: Kevin McManus Founder, LaunchWorks Learning Points Eliminate effort and delay of moving data to the cloud

More information

How To Use Salesforce Identity Features

How To Use Salesforce Identity Features Identity Implementation Guide Version 35.0, Winter 16 @salesforcedocs Last updated: October 27, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of

More information

Flexible Identity Federation

Flexible Identity Federation Flexible Identity Federation Quick start guide version 1.0.1 Publication history Date Description Revision 2015.09.23 initial release 1.0.0 2015.12.11 minor updates 1.0.1 Copyright Orange Business Services

More information

ESC Mobile App Guide

ESC Mobile App Guide ESC Mobile App Guide General Info and Installation Guide For Android Note: If you re just trying to demo the ESC Mobile app in our sample database, then all that is required is to download it from your

More information

Configuring Single Sign-On from the VMware Identity Manager Service to Office 365

Configuring Single Sign-On from the VMware Identity Manager Service to Office 365 Configuring Single Sign-On from the VMware Identity Manager Service to Office 365 VMware Identity Manager JULY 2015 V1 Table of Contents Overview... 2 Passive and Active Authentication Profiles... 2 Adding

More information

Developer Reference. A mobile loyalty platform for retailers. Document Number: 09720037

Developer Reference. A mobile loyalty platform for retailers. Document Number: 09720037 Developer Reference A mobile loyalty platform for retailers Document Number: 09720037 CONTENTS Guide Overview Description of this Guide... ix What s new in this guide...x Upgrade impact...xii 1. Getting

More information

ISVforce Guide. Version 35.0, Winter 16. @salesforcedocs

ISVforce Guide. Version 35.0, Winter 16. @salesforcedocs ISVforce Guide Version 35.0, Winter 16 @salesforcedocs Last updated: vember 12, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com,

More information

Self Service Portal and 2FA User Guide

Self Service Portal and 2FA User Guide Self Service Portal and 2FA User Guide Accessing Symantec Self Service Portal Self Service Portal (SSP) is a web-based application which you can use to register, test, reset, or remove Symantec VIP credentials.

More information

Integrating Siebel CRM with Microsoft SharePoint Server

Integrating Siebel CRM with Microsoft SharePoint Server Integrating Siebel CRM with Microsoft SharePoint Server www.sierraatlantic.com Headquarters 6522 Kaiser Drive, Fremont CA 94555, USA Phone: 1.510.742.4100 Fax: 1.510.742.4101 Global Development Center

More information

Leverage Your EMC Storage Investment with User Provisioning for Syncplicity:

Leverage Your EMC Storage Investment with User Provisioning for Syncplicity: Leverage Your EMC Storage Investment with User Provisioning for Syncplicity: Automate and simplify Syncplicity user/group management tasks EMC Global Solutions Abstract Make the most of your existing EMC

More information

Manual. Version: 1.0.0

Manual. Version: 1.0.0 Manual Version: 1.0.0 Table of Contents I. INTRODUCTION... 3 II. INSTALLATION... 5 a. System Requirements... 5 b. Installation... 5 c. Configure PayPal IPN... 5 d. Cron Setup... 6 e. Upload Email Logo...

More information

Your donors and supporters are increasingly multi-channel and they expect to get information that is relevant to their lives and interests

Your donors and supporters are increasingly multi-channel and they expect to get information that is relevant to their lives and interests Luminate Online Multiple Channels, One Solution Your donors and supporters are increasingly multi-channel and they expect to get information that is relevant to their lives and interests through the channels

More information

Mobilize Your ERP with ADF Mobile

Mobilize Your ERP with ADF Mobile Mobilize Your ERP with ADF Mobile Ramesh Kumar ealliance Corp Founder & CEO rkumar@ealliancecorp.com 630-618-0916 1 ealliance Background ealliance started in 1998 as an Oracle Partner specializing in Oracle

More information

Merchant Overview for Website Payments Standard and Email Payments

Merchant Overview for Website Payments Standard and Email Payments Merchant Overview for Website Standard and Email Using PayPal in Your Online Business Welcome to PayPal. This guide will give you an overview of Website Standard and Email -- solutions that you can use

More information

Setting Up Resources in VMware Identity Manager

Setting Up Resources in VMware Identity Manager Setting Up Resources in VMware Identity Manager VMware Identity Manager 2.4 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

Dell One Identity Cloud Access Manager 8.0.1 - How to Develop OpenID Connect Apps

Dell One Identity Cloud Access Manager 8.0.1 - How to Develop OpenID Connect Apps Dell One Identity Cloud Access Manager 8.0.1 - How to Develop OpenID Connect Apps May 2015 This guide includes: What is OAuth v2.0? What is OpenID Connect? Example: Providing OpenID Connect SSO to a Salesforce.com

More information

Security and Your SAP System When Working with Winshuttle Products

Security and Your SAP System When Working with Winshuttle Products Security and Your SAP System When Working with Winshuttle Products 2014 Winshuttle, LLC. All rights reserved. 2/14 www.winshuttle.com Background Companies running SAP systems are accustomed to configuring

More information

Resco CRM Guide. Get to know Resco CRM

Resco CRM Guide. Get to know Resco CRM Resco CRM Guide Get to know Resco CRM Table of Contents Introducing Resco CRM... 3 1.1. What is Resco CRM...3 1.2. Capabilities of Resco CRM... 4 1.3. Who should use Resco CRM...5 1.4. What are the main

More information

Build Your Mobile Strategy Not Just Your Mobile Apps

Build Your Mobile Strategy Not Just Your Mobile Apps Mobile Cloud Service Build Your Mobile Strategy Not Just Your Mobile Apps Copyright 2015 Oracle Corporation. All Rights Reserved. What is is it? Oracle Mobile Cloud Service provides everything you need

More information

Force.com Canvas Developer's Guide

Force.com Canvas Developer's Guide Force.com Canvas Developer's Guide Version 35.0, Winter 16 @salesforcedocs Last updated: October 15, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

For details about using automatic user provisioning with Salesforce, see Configuring user provisioning for Salesforce.

For details about using automatic user provisioning with Salesforce, see Configuring user provisioning for Salesforce. Chapter 41 Configuring Salesforce The following is an overview of how to configure the Salesforce.com application for singlesign on: 1 Prepare Salesforce for single sign-on: This involves the following:

More information

GSA2013: The Great SharePoint Adventure 2013

GSA2013: The Great SharePoint Adventure 2013 SHAREPOINT 2013 FOR.NET DEVELOPERS 5 DAYS GSA2013: The Great SharePoint Adventure 2013 AUDIENCE FORMAT COURSE DESCRIPTION.NET Developers Instructor-led training with hands-on labs This 5-day course explores

More information

Kony Mobile Application Management (MAM)

Kony Mobile Application Management (MAM) Kony Mobile Application Management (MAM) Kony s Secure Mobile Application Management Feature Brief Contents What is Mobile Application Management? 3 Kony Mobile Application Management Solution Overview

More information

Yo!Kart Multi-Vendor Marketplace. Features List

Yo!Kart Multi-Vendor Marketplace. Features List Yo!Kart Multi-Vendor Marketplace Features List Yo!Kart Multi-Vendor Marketplace Features List Copyright 2004 2015 FATbit Technologies (Ably Soft Pvt. Ltd). All Rights Reserved. The information contained

More information

Standard Checkout. Button Creation Wizard Implementation Guide. U.S. Version 2014-01-13

Standard Checkout. Button Creation Wizard Implementation Guide. U.S. Version 2014-01-13 Standard Checkout Button Creation Wizard Implementation Guide U.S. Version 2014-01-13 Introduction 2 TOC 3 Contents List of Tables... 5 List of Figures... 7 Overview of Checkout by Amazon...9 Who Should

More information

Mashery OAuth 2.0 Implementation Guide

Mashery OAuth 2.0 Implementation Guide Mashery OAuth 2.0 Implementation Guide June 2012 Revised: 7/18/12 www.mashery.com Mashery, Inc. 717 Market Street, Suite 300 San Francisco, CA 94103 Contents C hapter 1. About this Guide...5 Introduction...

More information

Corporate Bill Analyzer

Corporate Bill Analyzer Corporate Bill Analyzer Product Description V 3.1 Contents Contents Introduction Platform Overview Core features Bill/Invoice presentment Corporate hierarchy support Billing Account hierarchy support Call

More information

Deployment. Sybase Mobile Sales for SAP CRM 1.2

Deployment. Sybase Mobile Sales for SAP CRM 1.2 Deployment Sybase Mobile Sales for SAP CRM 1.2 DOCUMENT ID: DC01380-01-0120-01 LAST REVISED: December 2010 Copyright 2010 by Sybase, Inc. All rights reserved. This publication pertains to Sybase software

More information

PayPal Express Checkout Services

PayPal Express Checkout Services Title Page PayPal Express Checkout s Using the Simple Order API January 2016 CyberSource Corporation HQ P.O. Box 8999 San Francisco, CA 94128-8999 Phone: 800-530-9095 CyberSource Contact Information For

More information

This three-day instructor-led course provides students with the tools to extend Microsoft Dynamics CRM 4.0.

This three-day instructor-led course provides students with the tools to extend Microsoft Dynamics CRM 4.0. Table of Contents Introduction Audience Prerequisites Microsoft Certified Professional Exams Student Materials Course Outline Introduction This three-day instructor-led course provides students with the

More information

Merchant Overview for Website Payments and Email Payments

Merchant Overview for Website Payments and Email Payments Merchant Overview for Website and Email Using PayPal in Your Online Business Welcome to PayPal. This guide will give you an overview of Website Standard and Email -- solutions that you can use to begin

More information

Salesforce integration with Enterprise Open Source. Mischa de Vries László van den Hoek SFDC Consultant OS Consultant

Salesforce integration with Enterprise Open Source. Mischa de Vries László van den Hoek SFDC Consultant OS Consultant Salesforce integration with Enterprise Open Source Mischa de Vries László van den Hoek SFDC Consultant OS Consultant Agenda An Introduction to Salesforce Integration: On-Premise vs Cloud Salesforce Integration

More information

Configuring Salesforce

Configuring Salesforce Chapter 94 Configuring Salesforce The following is an overview of how to configure the Salesforce.com application for singlesign on: 1 Prepare Salesforce for single sign-on: This involves the following:

More information

coresuite ecommerce 24h shop in the web

coresuite ecommerce 24h shop in the web coresuite ecommerce 24h shop in the web 1 Agenda (1)! 1 Advantages of coresuite ecommerce! 2 Architecture overview! 3 Features of epages Webshop design Social media integration Mobile view Search and find

More information

Integrating LivePerson with Salesforce

Integrating LivePerson with Salesforce Integrating LivePerson with Salesforce V 9.2 March 2, 2010 Implementation Guide Description Who should use this guide? Duration This guide describes the process of integrating LivePerson and Salesforce

More information

Advanced Configuration Steps

Advanced Configuration Steps Advanced Configuration Steps After you have downloaded a trial, you can perform the following from the Setup menu in the MaaS360 portal: Configure additional services Configure device enrollment settings

More information

Login and Pay with Amazon Automatic Payments Integration Guide

Login and Pay with Amazon Automatic Payments Integration Guide Login and Pay with Amazon Automatic Payments Integration Guide 2 2 Contents... 4 Introduction...5 Important prerequisites...5 How does Login and Pay with Amazon work?... 5 Key concepts...6 Overview of

More information

Developing Android Apps with the ArcGIS Runtime SDK for Android. Dan O Neill @jdoneill @doneill

Developing Android Apps with the ArcGIS Runtime SDK for Android. Dan O Neill @jdoneill @doneill Developing Android Apps with the ArcGIS Runtime SDK for Android Dan O Neill @jdoneill @doneill Xueming Wu @xuemingrocks Agenda Introduction to the ArcGIS Android SDK Maps & Layers Basemaps (Portal) Location

More information

Software, Service and Hosting Pricing 2014

Software, Service and Hosting Pricing 2014 We offer a fully functional DEMO website for you to review all the features of the Enterpristore platform. Demo Site Login http://www.enterpristore.info Demo Site Admin http://www.enterpristore.info/adminui/login.php?login=a@a.com&password=1

More information

SOA @ ebay : How is it a hit

SOA @ ebay : How is it a hit SOA @ ebay : How is it a hit Sastry Malladi Distinguished Architect. ebay, Inc. Agenda The context : SOA @ebay Brief recap of SOA concepts and benefits Challenges encountered in large scale SOA deployments

More information

Managing customer entitlement with Adobe Digital Publishing Suite

Managing customer entitlement with Adobe Digital Publishing Suite Managing customer entitlement with Adobe Digital Publishing Suite Accelerate digital readership by making content easily accessible to existing users and customers Table of contents 1: Overview of Adobe

More information

Beyond The Web Drupal Meets The Desktop (And Mobile) Justin Miller Code Sorcery Workshop, LLC http://codesorcery.net/dcdc

Beyond The Web Drupal Meets The Desktop (And Mobile) Justin Miller Code Sorcery Workshop, LLC http://codesorcery.net/dcdc Beyond The Web Drupal Meets The Desktop (And Mobile) Justin Miller Code Sorcery Workshop, LLC http://codesorcery.net/dcdc Introduction Personal introduction Format & conventions for this talk Assume familiarity

More information

Developing an Interoperable Blackboard Proxy Tool

Developing an Interoperable Blackboard Proxy Tool Developing an Interoperable Blackboard Proxy Tool George Kroner Developer Relations Engineer Blackboard Inc. Lance Neumann Sr. Software Architect Blackboard Inc. Agenda Building Blocks Proxy Tools Overview

More information

Introduction to the EIS Guide

Introduction to the EIS Guide Introduction to the EIS Guide The AirWatch Enterprise Integration Service (EIS) provides organizations the ability to securely integrate with back-end enterprise systems from either the AirWatch SaaS environment

More information

NetIQ Identity Manager Identity Reporting Module Guide

NetIQ Identity Manager Identity Reporting Module Guide NetIQ Identity Manager Identity Reporting Module Guide December 2014 www.netiq.com/documentation Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT

More information

Building a Mobile App Security Risk Management Program. Copyright 2012, Security Risk Advisors, Inc. All Rights Reserved

Building a Mobile App Security Risk Management Program. Copyright 2012, Security Risk Advisors, Inc. All Rights Reserved Building a Mobile App Security Risk Management Program Your Presenters Who Are We? Chris Salerno, Consultant, Security Risk Advisors Lead consultant for mobile, network, web application penetration testing

More information

How to select the right Marketing Cloud Edition

How to select the right Marketing Cloud Edition How to select the right Marketing Cloud Edition Email, Mobile & Web Studios ith Salesforce Marketing Cloud, marketers have one platform to manage 1-to-1 customer journeys through the entire customer lifecycle

More information

Identity Implementation Guide

Identity Implementation Guide Identity Implementation Guide Version 37.0, Summer 16 @salesforcedocs Last updated: May 26, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com,

More information

E*TRADE Developer Platform. Developer Guide and API Reference. October 24, 2012 API Version: v0

E*TRADE Developer Platform. Developer Guide and API Reference. October 24, 2012 API Version: v0 E*TRADE Developer Platform Developer Guide and API Reference October 24, 2012 API Version: v0 Contents Getting Started... 5 Introduction... 6 Architecture... 6 Authorization... 6 Agreements... 7 Support

More information

OneLogin Integration User Guide

OneLogin Integration User Guide OneLogin Integration User Guide Table of Contents OneLogin Account Setup... 2 Create Account with OneLogin... 2 Setup Application with OneLogin... 2 Setup Required in OneLogin: SSO and AD Connector...

More information

Getting Started Guide

Getting Started Guide Getting Started Guide Table of Contents OggChat Overview... 3 Getting Started Basic Setup... 3 Dashboard... 4 Creating an Operator... 5 Connecting OggChat to your Google Account... 6 Creating a Chat Widget...

More information

Cloud Elements! Events Management BETA! API Version 2.0

Cloud Elements! Events Management BETA! API Version 2.0 Cloud Elements Events Management BETA API Version 2.0 Event Management Version 1.0 Event Management Cloud Elements Event Management provides a uniform mechanism for subscribing to events from Endpoints

More information

Multiple Channels, One Solution

Multiple Channels, One Solution Multiple Channels, One Solution Your donors and supporters are increasingly multi-channel and they expect to get information that is relevant to their lives and interests through the channels they choose.

More information

tibbr Now, the Information Finds You.

tibbr Now, the Information Finds You. tibbr Now, the Information Finds You. - tibbr Integration 1 tibbr Integration: Get More from Your Existing Enterprise Systems and Improve Business Process tibbr empowers IT to integrate the enterprise

More information

Introduction to Oracle Mobile Application Framework Raghu Srinivasan, Director Development Mobile and Cloud Development Tools Oracle

Introduction to Oracle Mobile Application Framework Raghu Srinivasan, Director Development Mobile and Cloud Development Tools Oracle Introduction to Oracle Mobile Application Framework Raghu Srinivasan, Director Development Mobile and Cloud Development Tools Oracle Safe Harbor Statement The following is intended to outline our general

More information

Debugging Mobile Apps

Debugging Mobile Apps Debugging Mobile Apps Native and Mobile Web Apps Shelley Chase Senior Architect, Progress OpenEdge November 2013 OpenEdge Mobile Value Proposition: Write Once, Run Anywhere Portability with the Benefits

More information

POINT-TO-POINT vs. MEAP THE RIGHT APPROACH FOR AN INTEGRATED MOBILITY SOLUTION

POINT-TO-POINT vs. MEAP THE RIGHT APPROACH FOR AN INTEGRATED MOBILITY SOLUTION POINT-TO-POINT vs. MEAP THE RIGHT APPROACH FOR AN INTEGRATED MOBILITY SOLUTION Executive Summary Enterprise mobility has transformed the way businesses engage with customers, partners and staff while exchanging

More information

Alexander Nikov. 4. Building an ecommerce Presence: Web Sites, Mobile Sites, and Apps. Outline. Teaching Objectives

Alexander Nikov. 4. Building an ecommerce Presence: Web Sites, Mobile Sites, and Apps. Outline. Teaching Objectives INFO 3435 ecommerce 4. Building an ecommerce Presence: Web Sites, Mobile Sites, and Apps Alexander Nikov Teaching Objectives Explain the process that should be followed in building an e- commerce Web site.

More information

Safe Harbor Statement

Safe Harbor Statement Safe Harbor Statement The preceding is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment

More information

SAML Authentication Quick Start Guide

SAML Authentication Quick Start Guide SAML Authentication Quick Start Guide Powerful Authentication Management for Service Providers and Enterprises Authentication Service Delivery Made EASY Copyright 2013 SafeNet, Inc. All rights reserved.

More information

Samsung KNOX EMM Authentication Services. SDK Quick Start Guide

Samsung KNOX EMM Authentication Services. SDK Quick Start Guide Samsung KNOX EMM Authentication Services SDK Quick Start Guide June 2014 Legal notice This document and the software described in this document are furnished under and are subject to the terms of a license

More information

SOA REFERENCE ARCHITECTURE: WEB TIER

SOA REFERENCE ARCHITECTURE: WEB TIER SOA REFERENCE ARCHITECTURE: WEB TIER SOA Blueprint A structured blog by Yogish Pai Web Application Tier The primary requirement for this tier is that all the business systems and solutions be accessible

More information

HPSM Integration Guide

HPSM Integration Guide HPSM Integration Guide 2015 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property of their respective

More information

ORACLE MOBILE SUITE. Complete Mobile Development Solution. Cross Device Solution. Shared Services Infrastructure for Mobility

ORACLE MOBILE SUITE. Complete Mobile Development Solution. Cross Device Solution. Shared Services Infrastructure for Mobility ORACLE MOBILE SUITE COMPLETE MOBILE DEVELOPMENT AND DEPLOYMENT PLATFORM KEY FEATURES Productivity boosting mobile development framework Cross device/os deployment Lightweight and robust enterprise service

More information

Cofred Automated Payments Interface (API) Guide

Cofred Automated Payments Interface (API) Guide Cofred Automated Payments Interface (API) Guide For use by Cofred Merchants. This guide describes how to connect to the Automated Payments Interface (API) www.cofred.com Version 1.0 Copyright 2015. Cofred.

More information