webcrm API Getting Started

Size: px
Start display at page:

Download "webcrm API Getting Started"

Transcription

1 webcrm API Getting Started / TS Contents.NET Application with autogenerated proxy class... 2.NET Application sending SOAP messages directly... 10

2 .NET Application with auto generated proxy class The following example describes how to add a Web Service link to the webcrm API, get an auto generated proxy class and use it to manipulate webcrm data. The description is based on Visual Studio 2010, but the same can be done with small differences also under Visual Studio 2005 and all later versions. Step 1. Go to webcrm and the webcrm API URL - see the below screenshot.

3 Step 2. It makes sense to check if the URL is workable. For example, it could be forbidden according to some network security rules. If you open the URL with any Internet browser you should get something like this.

4 Step 3. Open Visual Studio and create a new project.

5 Step 4. Add a Service Reference

6 Step 5. Copy the URL stored at the Step #1 into the Address field.

7 Step 6. Click the Go button to make the framework analyze the URL and discover the service. If you get a security warning then just confirm that the URL is trusted. After pressing OK you should see the new reference added under Service References folder. Together with the reference you will get an endpoint specification in the config file. It will be similar to the below: <?xml version="1.0" encoding="utf-8"?> <configuration> <system.servicemodel> <client> <endpoint address=" binding="basichttpbinding" bindingconfiguration="webcrmapisoap" contract="servicereference1.webcrmapisoap" name="webcrmapisoap" /> </client> </system.servicemodel> </configuration>

8 Step 7. Now we ve got a couple of classes generated automatically based on the web-service URL. These classes enable working with the web-service in a simple and intuitive way. You do not need bothering about SOAP requirement neither of encoding formats. The below is a code snippet based on the generated classes. Imports System.Net Imports System.Net.Security Imports System.Security.Cryptography.X509Certificates Imports ConsoleApplication1.ServiceReference1 Module Module1 Sub Main() ' Add handler for SSL validation ServicePointManager.ServerCertificateValidationCallback = AddressOf AcceptAllCertifications ' Instantiate proxy class Dim proxy As New WebCrmApiSoapClient() ' Authenticate Dim dbncode As String = "crmaccount" Dim username As String = "username" Dim password As String = "password" Dim errorstatus As ErrorStatus = Nothing Dim ticket As TicketHeader = proxy.authenticate( dbncode, username, password, errorstatus) ' Do something useful, for example, add new organisation Dim data As New WebCrmData With {.Pairs = New KeyValuePair() { New KeyValuePair With {.Key = "1_Name",.Value = "Wates Construction АБВ"}, New KeyValuePair With {.Key = "1_Division_name",.Value = "Sharston æøåæø"}, New KeyValuePair With {.Key = "1_Telephone",.Value = " "}, New KeyValuePair With {.Key = "1_Fax",.Value = " "}, New KeyValuePair With {.Key = "1_Post_code",.Value = "M22 4BJ"} }} ' Note that text values can directly contain Danish, Cyrillic ' or other characters as shown above ' Request data of the added organisation back Dim result As WriteToWebCrmResult = proxy.writetowebcrm(ticket, DataEntityType.Organisations, 0, 0, data) Dim organisationid As Long = result.id

9 Dim collection As WebCrmDataCollection = proxy.readfromwebcrmbyid(ticket, DataEntityType.Organisations, organisationid, organisationid) ' Close session errorstatus = proxy.endsession(ticket) ticket = Nothing End Sub ''' <summary> ''' Encapsulates SSL certificate validation. ''' Add here your own logic or just let it return <c>true</c> in all cases. ''' </summary> Public Function AcceptAllCertifications( ByVal sender As Object, ByVal certification As X509Certificate, ByVal chain As X509Chain, ByVal sslpolicyerrors As SslPolicyErrors) As Boolean Return True End Function End Module

10 .NET Application sending SOAP messages directly If you cannot simplify your work by using auto-generated classes the following notes can be useful. 1. Go to webcrm and take URL to webcrm API service.

11 2. Get WSDL schema using the URL (+?wsdl parameter). The schema should be applied when you build your SOAP messages.

12 3. If it s too complicated to understand WSDL schema it can be helpful to visit the test page of webcrm API to see how specific requests should look.

13 4. The Test page helps you build the SOAP messages. You only have to select the service method and enter parameter values. Click the Generate Request button to generate the SOAP message and the Send Request button to send it to webcrm API.

14 5. Note that there is some encoding logic that you should be aware of. SOAP does not enable characters &, <, >, and. Instead they should be replaced with &, <, >, " and &apos; correspondingly. If you use the Test page to generate SOAP message then this will be handled automatically. The SOAP messages should be always sent with UTF-8 encoding. Below is a code example: Imports System.Net Imports System.Text Imports System.Net.Security Imports System.Security.Cryptography.X509Certificates Module Module1 Sub Main() Dim command1 As String = "<?xml version=""1.0"" encoding=""utf-8""?>" _ & "<soap12:envelope " _ & " xmlns:xsi="" " _ & " xmlns:xsd="" " _ & " xmlns:soap12="" _ & " <soap12:body>" _ & " <Authenticate xmlns="" _ & " <dbncode>account</dbncode>" _ & " <username>username</username>" _ & " <password>password</password>" _ & " </Authenticate>" _ & " </soap12:body>" _ & "</soap12:envelope>" Dim command2 As String = "<?xml version=""1.0"" encoding=""utf-8""?>" _ & "<soap12:envelope " _ & " xmlns:xsi="" _ & " xmlns:xsd="" _ & " xmlns:soap12="" _ & " <soap12:header>" _ & " <TicketHeader xmlns="" _ & " <Guid>{0}</Guid>" _ & " </TicketHeader>" _ & " </soap12:header>" _ & " <soap12:body>" _ & " <WriteToWebcrm xmlns="" _ & " <entitytype>organisations</entitytype>" _ & " <organisationid>0</organisationid>" _ & " <recordid>0</recordid>" _ & " <data>" _ & " <ErrorStatus>" _ & " <Message></Message>" _ & " <Code>0</Code>" _ & " </ErrorStatus>" _

15 & " <Pairs>" _ & " <KeyValuePair><Key>1_Name</Key>" _ & " <Value>Wates Construction АБВ</Value></KeyValuePair>" _ & " <KeyValuePair><Key>1_Division_name</Key>" _ & " <Value>Sharston æøåæø</value></keyvaluepair>" _ & " <KeyValuePair><Key>1_Telephone</Key>" _ & " <Value> </Value></KeyValuePair>" _ & " <KeyValuePair><Key>1_Fax</Key>" _ & " <Value> </Value></KeyValuePair>" _ & " <KeyValuePair><Key>1_Post_code</Key>" _ & " <Value>M22 4BJ</Value></KeyValuePair>" _ & " </Pairs>" _ & " </data>" _ & " </WriteToWebcrm>" _ & " </soap12:body>" _ & "</soap12:envelope>" Dim command3 As String = "<?xml version=""1.0"" encoding=""utf-8""?>" _ & "<soap12:envelope " _ & " xmlns:xsi="" _ & " xmlns:xsd="" _ & " xmlns:soap12="" _ & " <soap12:header>" _ & " <TicketHeader xmlns="" _ & " <Guid>{0}</Guid>" _ & " </TicketHeader>" _ & " </soap12:header>" _ & " <soap12:body>" _ & " <ReadFromWebcrmById xmlns="" _ & " <entitytype>organisations</entitytype>" _ & " <organisationid>{1}</organisationid>" _ & " <recordid>{1}</recordid>" _ & " </ReadFromWebcrmById>" _ & " </soap12:body>" _ & "</soap12:envelope>" ' Add handler for SSL validation ServicePointManager.ServerCertificateValidationCallback = AddressOf AcceptAllCertifications ' Submit authenticate SOAP message Dim uri As String = " Dim result1 As String = SubmitRequest(uri, command1) Dim ticketguid As String = GetTicketGuid(result1) ' Submit SOAP message to add one new organisation Dim result2 As String = SubmitRequest(uri, String.Format(command2, ticketguid)) Dim organisationid As String = GetOrganisationId(result2) ' Submit SOAP message to get the added organization back from webcrm Dim result3 As String = SubmitRequest(uri, String.Format(command3, ticketguid, organisationid))

16 End Sub Private Function SubmitRequest(ByVal uri As String, ByVal data As String) As String Dim client As New WebClient() client.encoding = Encoding.UTF8 client.headers.add("content-type", "text/xml; charset=utf-8") Return client.uploadstring(uri, data) End Function Private Function GetTicketGuid(ByVal response As String) As String Dim guid As String = String.Empty Dim data As String = response.tolower() If (data.indexof("</ticketheader>") > -1) Then data = data.substring(0, data.indexof("</ticketheader>")) If (data.indexof("</guid>") > -1) Then data = data.substring(0, data.indexof("</guid>")) data = data.substring(data.length - 36) guid = data End If End If Return guid End Function Private Function GetOrganisationId(ByVal response As String) As String Dim id As String = String.Empty Dim data As String = response.tolower() If (data.indexof("</id>") > -1) Then data = data.substring(0, data.indexof("</id>")) data = data.substring(data.lastindexof(">") + 1) id = data End If Return id End Function ''' <summary> ''' Encapsulates SSL certificate validation. ''' Add here your own logic or just let it return <c>true</c> in all cases. ''' </summary> Public Function AcceptAllCertifications( ByVal sender As Object, ByVal certification As X509Certificate, ByVal chain As X509Chain, ByVal sslpolicyerrors As SslPolicyErrors) As Boolean Return True End Function

17 End Module

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

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

How To Use Saml 2.0 Single Sign On With Qualysguard

How To Use Saml 2.0 Single Sign On With Qualysguard QualysGuard SAML 2.0 Single Sign-On Technical Brief Introduction Qualys provides its customer the option to use SAML 2.0 Single Sign On (SSO) authentication with their QualysGuard subscription. When implemented,

More information

Visual Basic Programming. An Introduction

Visual Basic Programming. An Introduction Visual Basic Programming An Introduction Why Visual Basic? Programming for the Windows User Interface is extremely complicated. Other Graphical User Interfaces (GUI) are no better. Visual Basic provides

More information

Hands-On Lab. Building a Data-Driven Master/Detail Business Form using Visual Studio 2010. Lab version: 1.0.0. Last updated: 12/10/2010.

Hands-On Lab. Building a Data-Driven Master/Detail Business Form using Visual Studio 2010. Lab version: 1.0.0. Last updated: 12/10/2010. Hands-On Lab Building a Data-Driven Master/Detail Business Form using Visual Studio 2010 Lab version: 1.0.0 Last updated: 12/10/2010 Page 1 CONTENTS OVERVIEW... 3 EXERCISE 1: CREATING THE APPLICATION S

More information

PerfectForms SharePoint Integration

PerfectForms SharePoint Integration PerfectForms SharePoint Integration Accessing Lists from PerfectForms AUTHOR: KEITH LEWIS DATE: 6/15/2011 Date of Last Revision: 6/15/11 Page 1 of 16 Contents Introduction... 3 Purpose... 3 Querying SharePoint

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

Building and Using Web Services With JDeveloper 11g

Building and Using Web Services With JDeveloper 11g Building and Using Web Services With JDeveloper 11g Purpose In this tutorial, you create a series of simple web service scenarios in JDeveloper. This is intended as a light introduction to some of the

More information

DEVELOPING CONTRACT - DRIVEN WEB SERVICES USING JDEVELOPER. The purpose of this tutorial is to develop a java web service using a top-down approach.

DEVELOPING CONTRACT - DRIVEN WEB SERVICES USING JDEVELOPER. The purpose of this tutorial is to develop a java web service using a top-down approach. DEVELOPING CONTRACT - DRIVEN WEB SERVICES USING JDEVELOPER Purpose: The purpose of this tutorial is to develop a java web service using a top-down approach. Topics: This tutorial covers the following topics:

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

Fairsail REST API: Guide for Developers

Fairsail REST API: Guide for Developers Fairsail REST API: Guide for Developers Version 1.02 FS-API-REST-PG-201509--R001.02 Fairsail 2015. All rights reserved. This document contains information proprietary to Fairsail and may not be reproduced,

More information

Integration of Hotel Property Management Systems (HPMS) with Global Internet Reservation Systems

Integration of Hotel Property Management Systems (HPMS) with Global Internet Reservation Systems Integration of Hotel Property Management Systems (HPMS) with Global Internet Reservation Systems If company want to be competitive on global market nowadays, it have to be persistent on Internet. If we

More information

17 March 2013 NIEM Web Services API Version 1.0 URI: http://reference.niem.gov/niem/specification/web-services-api/1.0/

17 March 2013 NIEM Web Services API Version 1.0 URI: http://reference.niem.gov/niem/specification/web-services-api/1.0/ 17 March 2013 NIEM Web Serv vices API Version 1.0 URI: http://reference.niem.gov/niem/specification/web-services-api/1.0/ i Change History No. Date Reference: All, Page, Table, Figure, Paragraph A = Add.

More information

Ambientes de Desenvolvimento Avançados

Ambientes de Desenvolvimento Avançados Ambientes de Desenvolvimento Avançados http://www.dei.isep.ipp.pt/~jtavares/adav/adav.htm Aula 17 Engenharia Informática 2006/2007 José António Tavares jrt@isep.ipp.pt 1.NET Web Services: Construção de

More information

CRM Setup Factory Installer V 3.0 Developers Guide

CRM Setup Factory Installer V 3.0 Developers Guide CRM Setup Factory Installer V 3.0 Developers Guide Who Should Read This Guide This guide is for ACCPAC CRM solution providers and developers. We assume that you have experience using: Microsoft Visual

More information

Twinfield Single Sign On

Twinfield Single Sign On Twinfield Single Sign On manual, version 5.4 April 2009 For general information about our webservices see the Twinfield Webservices Manual Twinfield International NV De Beek 9-15 3871 MS Hoevelaken Netherlands

More information

Address Phone & Fax Internet

Address Phone & Fax Internet Smilehouse Workspace 1.13 Payment Gateway API Document Info Document type: Technical document Creator: Smilehouse Workspace Development Team Date approved: 31.05.2010 Page 2/34 Table of Content 1. Introduction...

More information

Click Studios. Passwordstate. High Availability Installation Instructions

Click Studios. Passwordstate. High Availability Installation Instructions Passwordstate High Availability Installation Instructions This document and the information controlled therein is the property of Click Studios. It must not be reproduced in whole/part, or otherwise disclosed,

More information

Creating XML Report Web Services

Creating XML Report Web Services 5 Creating XML Report Web Services In the previous chapters, we had a look at how to integrate reports into Windows and Web-based applications, but now we need to learn how to leverage those skills and

More information

A SharePoint Developer Introduction. Hands-On Lab. Lab Manual SPCHOL306 Using Silverlight with the Client Object Model VB

A SharePoint Developer Introduction. Hands-On Lab. Lab Manual SPCHOL306 Using Silverlight with the Client Object Model VB A SharePoint Developer Introduction Hands-On Lab Lab Manual SPCHOL306 Using Silverlight with the Client Object Model VB This document is provided as-is. Information and views expressed in this document,

More information

http://www.bobti.com - SAP BusinessObjects and Xcelsius articles, links and ressources

http://www.bobti.com - SAP BusinessObjects and Xcelsius articles, links and ressources In Business Objects XI, if you want to query the repository to obtain lists of users, connections, reports or universe for administrator purpose, it is not as easy as it was in former 4-5-6 releases. In

More information

Introduction to Computer and Information Science CIS 110, Fall 2015

Introduction to Computer and Information Science CIS 110, Fall 2015 Introduction to Computer and Information Science CIS 110, Fall 2015 Project 10 For this project, use Visual Basic to create a temperature conversion program. The following instructions provide all of the

More information

Exchange 2010. Outlook Profile/POP/IMAP/SMTP Setup Guide

Exchange 2010. Outlook Profile/POP/IMAP/SMTP Setup Guide Exchange 2010 Outlook Profile/POP/IMAP/SMTP Setup Guide September, 2013 Exchange 2010 Outlook Profile/POP/IMAP/SMTP Setup Guide i Contents Exchange 2010 Outlook Profile Configuration... 1 Outlook Profile

More information

The full setup includes the server itself, the server control panel, Firebird Database Server, and three sample applications with source code.

The full setup includes the server itself, the server control panel, Firebird Database Server, and three sample applications with source code. Content Introduction... 2 Data Access Server Control Panel... 2 Running the Sample Client Applications... 4 Sample Applications Code... 7 Server Side Objects... 8 Sample Usage of Server Side Objects...

More information

Lab 8: ASP.NET 2.0 Configuration API and Health Monitoring

Lab 8: ASP.NET 2.0 Configuration API and Health Monitoring Lab 8: ASP.NET 2.0 Configuration API and Health Monitoring Estimated time to complete this lab: 45 minutes ASP.NET 2.0 s configuration API fills a hole in ASP.NET 1.x by providing an easy-to-use and extensible

More information

Enrollment Process for Android Devices

Enrollment Process for Android Devices 1 Enrollment Process for Android Devices Introduction:... 2 Pre-requisites:... 2 Via SMS:... 2 Via Email:... 11 Self Service:... 19 2 Introduction: This is a brief guide to enrolling an android device

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

Outlook Synchronisation guide

Outlook Synchronisation guide Outlook Synchronisation guide Contents Introduction... 2 Installing Outlook Synchronisation Plug-in... 3 Daily Use of Outlook and webcrm... 6 Synchronising Emails... 7 Synchronising Contacts... 8 Contact

More information

Usage of Evaluate Client Certificate with SSL support in Mediator and CentraSite

Usage of Evaluate Client Certificate with SSL support in Mediator and CentraSite Usage of Evaluate Client Certificate with SSL support in Mediator and CentraSite Introduction Pre-requisite Configuration Configure keystore and truststore Asset Creation and Deployment Troubleshooting

More information

Integrating ConnectWise Service Desk Ticketing with the Cisco OnPlus Portal

Integrating ConnectWise Service Desk Ticketing with the Cisco OnPlus Portal Integrating ConnectWise Service Desk Ticketing with the Cisco OnPlus Portal This Application Note explains how to configure ConnectWise PSA (Professional Service Automation) application settings and Cisco

More information

ADFS Integration Guidelines

ADFS Integration Guidelines ADFS Integration Guidelines Version 1.6 updated March 13 th 2014 Table of contents About This Guide 3 Requirements 3 Part 1 Configure Marcombox in the ADFS Environment 4 Part 2 Add Relying Party in ADFS

More information

Java Access to Oracle CRM On Demand. By: Joerg Wallmueller Melbourne, Australia

Java Access to Oracle CRM On Demand. By: Joerg Wallmueller Melbourne, Australia Java Access to Oracle CRM On Demand Web Based CRM Software - Oracle CRM...페이지 1 / 12 Java Access to Oracle CRM On Demand By: Joerg Wallmueller Melbourne, Australia Introduction Requirements Step 1: Generate

More information

Developer Guide to Authentication and Authorisation Web Services Secure and Public

Developer Guide to Authentication and Authorisation Web Services Secure and Public Government Gateway Developer Guide to Authentication and Authorisation Web Services Secure and Public Version 1.6.3 (17.04.03) - 1 - Table of Contents Government Gateway 1 Developer Guide to Authentication

More information

How To Set Up A Scopdial On A Pc Or Macbook Or Ipod (For A Pc) With A Cell Phone (For Macbook) With An Ipod Or Ipo (For An Ipo) With Your Cell Phone Or

How To Set Up A Scopdial On A Pc Or Macbook Or Ipod (For A Pc) With A Cell Phone (For Macbook) With An Ipod Or Ipo (For An Ipo) With Your Cell Phone Or SCOPSERV DIALER USER DOCUMENTATION Last updated on : 2014-11-18 Installation Step 1: You must agree to the License terms and conditions before you can install ScopDial. Step 2: You can select the features

More information

Generating Automated Test Scripts for AltioLive using QF Test

Generating Automated Test Scripts for AltioLive using QF Test Generating Automated Test Scripts for AltioLive using QF Test Author: Maryam Umar Contents 1. Introduction 2 2. Setting up QF Test 2 3. Starting an Altio application 3 4. Recording components 5 5. Performing

More information

OnTime Web Services User Guide

OnTime Web Services User Guide OnTime Web Services User Guide OnTime offers a set of SOAP based XML Web Services built on open standards, which allow third party applications and web sites to communicate seamlessly and in real-time

More information

Hands-On Lab. Client Workflow. Lab version: 1.0.0 Last updated: 2/23/2011

Hands-On Lab. Client Workflow. Lab version: 1.0.0 Last updated: 2/23/2011 Hands-On Lab Client Workflow Lab version: 1.0.0 Last updated: 2/23/2011 CONTENTS OVERVIEW... 3 EXERCISE 1: DEFINING A PROCESS IN VISIO 2010... 4 Task 1 Define the Timesheet Approval process... 4 Task 2

More information

Integrating Autotask Service Desk Ticketing with the Cisco OnPlus Portal

Integrating Autotask Service Desk Ticketing with the Cisco OnPlus Portal Integrating Autotask Service Desk Ticketing with the Cisco OnPlus Portal This Application Note provides instructions for configuring Apps settings on the Cisco OnPlus Portal and Autotask application settings

More information

TABLE OF CONTENTS. avaya.com

TABLE OF CONTENTS. avaya.com Avaya Contact Center Integration to Salesforce Date: March 2014 Version 1.4 Avaya Contact Center & Salesforce Integration Solutions 2014 Avaya Inc. All Rights Reserved. Avaya and the Avaya Logo are trademarks

More information

RSA SecurID Token User Guide February 12, 2015

RSA SecurID Token User Guide February 12, 2015 RSA SecurID Token User Guide Page i Table of Contents Section I How to request an RSA SecurID token... 1 Section II Setting your RSA SecurID PIN... 6 Section III Setting up PuTTY on your Windows workstation

More information

Electronic Questionnaires for Investigations Processing (e-qip)

Electronic Questionnaires for Investigations Processing (e-qip) January 2016 Electronic Questionnaires for Investigations Processing (e-qip) Login Instructions for first-time users OR users that have had their accounts reset Step 1 Access the e-qip Login screen at

More information

GetLibraryUserOrderList

GetLibraryUserOrderList GetLibraryUserOrderList Webservice name: GetLibraryUserOrderList Adress: https://www.elib.se/webservices/getlibraryuserorderlist.asmx WSDL: https://www.elib.se/webservices/getlibraryuserorderlist.asmx?wsdl

More information

BackupAgent LabTech Integration Installation and Usage

BackupAgent LabTech Integration Installation and Usage BackupAgent LabTech Integration Installation and Usage Overview This integration was designed and developed to provide a deployment and monitoring solution for BackupAgent within the LabTech Control Center.

More information

Installing the ASP.NET VETtrak APIs onto IIS 5 or 6

Installing the ASP.NET VETtrak APIs onto IIS 5 or 6 Installing the ASP.NET VETtrak APIs onto IIS 5 or 6 2 Installing the ASP.NET VETtrak APIs onto IIS 5 or 6 3... 3 IIS 5 or 6 1 Step 1- Install/Check 6 Set Up and Configure VETtrak ASP.NET API 2 Step 2 -...

More information

Email Migration Manual (For Outlook 2010)

Email Migration Manual (For Outlook 2010) Email Migration Manual (For Outlook 2010) By SYSCOM (USA) May 13, 2013 Version 2.2 1 Contents 1. How to Change POP3/SMTP Setting for Outlook 2010... 3 2. How to Login to Webmail... 10 3. How to Change

More information

Protection! A d m i n i s t r a t o r G u i d e. v 1. O. S a l e s F o r c e C o n n e c t o r. Protect your investments with Protection!

Protection! A d m i n i s t r a t o r G u i d e. v 1. O. S a l e s F o r c e C o n n e c t o r. Protect your investments with Protection! jproductivity LLC Protect your investments with Protection! Protection! tm S a l e s F o r c e C o n n e c t o r v 1. O A d m i n i s t r a t o r G u i d e http://www.jproductivity.com Revision 336-8/10/2011

More information

Prestashop Ship2MyId Module. Configuration Process

Prestashop Ship2MyId Module. Configuration Process Prestashop Ship2MyId Module Configuration Process Ship2MyID Module Version : v1.0.2 Compatibility : PrestaShop v1.5.5.0 - v1.6.0.14 1 P a g e Table of Contents 1. Module Download & Setup on Store... 4

More information

Setup Guide for Magento and BlueSnap

Setup Guide for Magento and BlueSnap Setup Guide for Magento and BlueSnap This manual is meant to show you how to connect your Magento store with your newly created BlueSnap account. It will show step-by-step instructions. For any further

More information

Accessing the Media General SSL VPN

Accessing the Media General SSL VPN Launching Applications and Mapping Drives Remote Desktop Outlook Launching Web Applications Full Access VPN Note: To access the Media General VPN, anti-virus software must be installed and running on your

More information

Email Client configuration and migration Guide Setting up Thunderbird 3.1

Email Client configuration and migration Guide Setting up Thunderbird 3.1 Email Client configuration and migration Guide Setting up Thunderbird 3.1 1. Open Mozilla Thunderbird. : 1. On the Edit menu, click Account Settings. 2. On the Account Settings page, under Account Actions,

More information

Using Voltage SecureMail

Using Voltage SecureMail Using Voltage SecureMail Using Voltage SecureMail Desktop Based on the breakthrough Identity-Based Encryption technology, Voltage SecureMail makes sending a secure email as easy as sending it without encryption.

More information

SQL Server 2005: Web Services

SQL Server 2005: Web Services SQL Server 2005: Web Services Table of Contents SQL Server 2005: Web Services...3 Lab Setup...4 Exercise 1 Create HTTP Endpoints...5 Exercise 2 Consume HTTP Endpoints...8 SQL Server 2005: Web Services

More information

Ipswitch Client Installation Guide

Ipswitch Client Installation Guide IPSWITCH TECHNICAL BRIEF Ipswitch Client Installation Guide In This Document Installing on a Single Computer... 1 Installing to Multiple End User Computers... 5 Silent Install... 5 Active Directory Group

More information

Cox Managed CPE Services. RADIUS Authentication for AnyConnect VPN Version 1.3 [Draft]

Cox Managed CPE Services. RADIUS Authentication for AnyConnect VPN Version 1.3 [Draft] Cox Managed CPE Services RADIUS Authentication for AnyConnect VPN Version 1.3 [Draft] September, 2015 2015 by Cox Communications. All rights reserved. No part of this document may be reproduced or transmitted

More information

ClientAce WPF Project Example

ClientAce WPF Project Example Technical Note ClientAce WPF Project Example 1. Introduction Traditional Windows forms are being replaced by Windows Presentation Foundation 1 (WPF) forms. WPF forms are fundamentally different and designed

More information

R i o L i n x s u p p o r t @ r i o l i n x. c o m 1 / 3 0 / 2 0 1 2

R i o L i n x s u p p o r t @ r i o l i n x. c o m 1 / 3 0 / 2 0 1 2 XTRASHARE INSTALLATION GUIDE This is the XtraShare installation guide Development Guide How to develop custom solutions with Extradium for SharePoint R i o L i n x s u p p o r t @ r i o l i n x. c o m

More information

Sage 100 ERP. ebusiness Web Services Installation and Reference Guide

Sage 100 ERP. ebusiness Web Services Installation and Reference Guide Sage 100 ERP ebusiness Web Services Installation and Reference Guide 2012 Sage Software, Inc. All rights reserved. Sage, the Sage logos, and the Sage product and service names mentioned herein are registered

More information

Using ilove SharePoint Web Services Workflow Action

Using ilove SharePoint Web Services Workflow Action Using ilove SharePoint Web Services Workflow Action This guide describes the steps to create a workflow that will add some information to Contacts in CRM. As an example, we will use demonstration site

More information

Web Services API Developer Guide

Web Services API Developer Guide Web Services API Developer Guide Contents 2 Contents Web Services API Developer Guide... 3 Quick Start...4 Examples of the Web Service API Implementation... 13 Exporting Warehouse Data... 14 Exporting

More information

Training module 2 Installing VMware View

Training module 2 Installing VMware View Training module 2 Installing VMware View In this second module we ll install VMware View for an End User Computing environment. We ll install all necessary parts such as VMware View Connection Server and

More information

How to Configure Web Authentication on a ProCurve Switch

How to Configure Web Authentication on a ProCurve Switch An HP ProCurve Networking Application Note How to Configure Web Authentication on a ProCurve Switch Contents 1. Introduction... 2 2. Prerequisites... 2 3. Network diagram... 2 4. Configuring the ProCurve

More information

JobScheduler Web Services Executing JobScheduler commands

JobScheduler Web Services Executing JobScheduler commands JobScheduler - Job Execution and Scheduling System JobScheduler Web Services Executing JobScheduler commands Technical Reference March 2015 March 2015 JobScheduler Web Services page: 1 JobScheduler Web

More information

TrueEdit Remote Connection Brief

TrueEdit Remote Connection Brief MicroPress Server Configuration Guide for Remote Applications Date Issued: February 3, 2009 Document Number: 45082597 TrueEdit Remote Connection Brief Background TrueEdit Remote (TER) is actually the same

More information

INTRODUCTION TO ATRIUM... 2 SYSTEM REQUIREMENTS... 2 TECHNICAL DETAILS... 2 LOGGING INTO ATRIUM... 3 SETTINGS... 4 NAVIGATION PANEL...

INTRODUCTION TO ATRIUM... 2 SYSTEM REQUIREMENTS... 2 TECHNICAL DETAILS... 2 LOGGING INTO ATRIUM... 3 SETTINGS... 4 NAVIGATION PANEL... INTRODUCTION TO ATRIUM... 2 SYSTEM REQUIREMENTS... 2 TECHNICAL DETAILS... 2 LOGGING INTO ATRIUM... 3 SETTINGS... 4 CONTROL PANEL... 4 ADDING GROUPS... 6 APPEARANCE... 7 BANNER URL:... 7 NAVIGATION... 8

More information

Secure Transfers. Contents. SSL-Based Services: HTTPS and FTPS 2. Generating A Certificate 2. Creating A Self-Signed Certificate 3

Secure Transfers. Contents. SSL-Based Services: HTTPS and FTPS 2. Generating A Certificate 2. Creating A Self-Signed Certificate 3 Contents SSL-Based Services: HTTPS and FTPS 2 Generating A Certificate 2 Creating A Self-Signed Certificate 3 Obtaining A Signed Certificate 4 Enabling Secure Services 5 A Note About Ports 5 Connecting

More information

Q Lately I've been hearing a lot about WS-Security. What is it, and how is it different from other security standards?

Q Lately I've been hearing a lot about WS-Security. What is it, and how is it different from other security standards? MSDN Home > MSDN Magazine > September 2002 > XML Files: WS-Security, WebMethods, Generating ASP.NET Web Service Classes WS-Security, WebMethods, Generating ASP.NET Web Service Classes Aaron Skonnard Download

More information

ResPAK Internet Module

ResPAK Internet Module ResPAK Internet Module This document provides an overview of the ResPAK Internet Module which consists of the RNI Web Services application and the optional ASP.NET Reservations web site. The RNI Application

More information

Using IBM dashdb With IBM Embeddable Reporting Service

Using IBM dashdb With IBM Embeddable Reporting Service What this tutorial is about In today's mobile age, companies have access to a wealth of data, stored in JSON format. Leading edge companies are making key decision based on that data but the challenge

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

Onset Computer Corporation

Onset Computer Corporation Onset, HOBO, and HOBOlink are trademarks or registered trademarks of Onset Computer Corporation for its data logger products and configuration/interface software. All other trademarks are the property

More information

MicrosoftDynam ics GP 2015. TenantServices Installation and Adm inistration Guide

MicrosoftDynam ics GP 2015. TenantServices Installation and Adm inistration Guide MicrosoftDynam ics GP 2015 TenantServices Installation and Adm inistration Guide Copyright Copyright 2014 Microsoft Corporation. All rights reserved. Limitation of liability This document is provided as-is.

More information

Workflow Conductor Widgets

Workflow Conductor Widgets Workflow Conductor Widgets Workflow Conductor widgets are the modular building blocks used to create workflows in Workflow Conductor Studio. Some widgets define the flow, or path, of a workflow, and others

More information

4. SSL-VPN Connection

4. SSL-VPN Connection 4. SSL-VPN Connection Guide of Configuring INAZUMA Certified Systems INAZUMA Head Office of Sony Agenda Contents Explanation Scope on this document Overview 0. Getting Started Please be sure to read this

More information

Sending an Email Message from a Process

Sending an Email Message from a Process Adobe Enterprise Technical Enablement Sending an Email Message from a Process In this topic, you will learn how the Email service can be used to send email messages from a process. Objectives After completing

More information

Sentral servers provide a wide range of services to school networks.

Sentral servers provide a wide range of services to school networks. Wazza s QuickStart Publishing iweb Sites to a Sentral Server Background Mac OS X, Sentral, iweb 09 Sentral servers provide a wide range of services to school networks. A Sentral server provides a publishing

More information

MapRoad - Pavement Management System (PMS) Local Government Management Agency (LGMA)

MapRoad - Pavement Management System (PMS) Local Government Management Agency (LGMA) Project Title: Client: Project Work Package: MapRoad - Pavement Management System (PMS) Local Government Management Agency (LGMA) Support / Project Management Document Title: MapRoad - PMS - Ticket Tracker

More information

A Sample OFBiz application implementing remote access via RMI and SOAP Table of contents

A Sample OFBiz application implementing remote access via RMI and SOAP Table of contents A Sample OFBiz application implementing remote access via RMI and SOAP Table of contents 1 About this document... 2 2 Introduction... 2 3 Defining the data model... 2 4 Populating the database tables with

More information

ObserveIT Ticketing Integration Guide

ObserveIT Ticketing Integration Guide ObserveIT Ticketing Integration Guide Contents 1 Purpose of this Document... 2 2 Overview and Architecture... 2 3 Web Services Integration... 3 4 Customizing a New Ticketing System... 4 5 Appendix: Web

More information

CICS Web Service Security. Anthony Papageorgiou IBM CICS Development March 13, 2012 Session: 10282

CICS Web Service Security. Anthony Papageorgiou IBM CICS Development March 13, 2012 Session: 10282 Web Service Security Anthony Papageorgiou IBM Development March 13, 2012 Session: 10282 Agenda Web Service Support Overview Security Basics and Terminology Pipeline Security Overview Identity Encryption

More information

Pervasive Data Integrator. Oracle CRM On Demand Connector Guide

Pervasive Data Integrator. Oracle CRM On Demand Connector Guide Pervasive Data Integrator Oracle CRM On Demand Connector Guide Pervasive Software Inc. 12365 Riata Trace Parkway Building B Austin, Texas 78727 USA Telephone: (512) 231-6000 or (800) 287-4383 Fax: (512)

More information

Capturx for SharePoint 2.0: Notification Workflows

Capturx for SharePoint 2.0: Notification Workflows Capturx for SharePoint 2.0: Notification Workflows 1. Introduction The Capturx for SharePoint Notification Workflow enables customers to be notified whenever items are created or modified on a Capturx

More information

Zanibal Plug-in For Microsoft Outlook Installation & User Guide Version 1.1

Zanibal Plug-in For Microsoft Outlook Installation & User Guide Version 1.1 Zanibal Plug-in For Microsoft Outlook Installation & User Guide Version 1.1 Zanibal LLC Phone: +1-408-887-0480, +234-1-813-1744 Email: support@zanibal.com www.zanibal.com Copyright 2012, Zanibal LLC. All

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

Marcum LLP MFT Guide

Marcum LLP MFT Guide MFT Guide Contents 1. Logging In...3 2. Installing the Upload Wizard...4 3. Uploading Files Using the Upload Wizard...5 4. Downloading Files Using the Upload Wizard...8 5. Frequently Asked Questions...9

More information

PHP Integration Kit. Version 2.5.1. User Guide

PHP Integration Kit. Version 2.5.1. User Guide PHP Integration Kit Version 2.5.1 User Guide 2012 Ping Identity Corporation. All rights reserved. PingFederate PHP Integration Kit User Guide Version 2.5.1 December, 2012 Ping Identity Corporation 1001

More information

Windows Intune Walkthrough: Windows Phone 8 Management

Windows Intune Walkthrough: Windows Phone 8 Management Windows Intune Walkthrough: Windows Phone 8 Management This document will review all the necessary steps to setup and manage Windows Phone 8 using the Windows Intune service. Note: If you want to test

More information

How to Make a Working Contact Form for your Website in Dreamweaver CS3

How to Make a Working Contact Form for your Website in Dreamweaver CS3 How to Make a Working Contact Form for your Website in Dreamweaver CS3 Killer Contact Forms Dreamweaver Spot With this E-Book you will be armed with everything you need to get a Contact Form up and running

More information

Installation and Configuration Guide

Installation and Configuration Guide Installation and Configuration Guide BlackBerry Resource Kit for BlackBerry Enterprise Service 10 Version 10.2 Published: 2015-11-12 SWD-20151112124827386 Contents Overview: BlackBerry Enterprise Service

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

OPENID AUTHENTICATION SECURITY

OPENID AUTHENTICATION SECURITY OPENID AUTHENTICATION SECURITY Erik Lagercrantz and Patrik Sternudd Uppsala, May 17 2009 1 ABSTRACT This documents gives an introduction to OpenID, which is a system for centralised online authentication.

More information

INFORMATION SYSTEMS SERVICE NETWORKS AND TELECOMMUNICATIONS SECTOR. User Guide for the RightFax Fax Service. Web Utility

INFORMATION SYSTEMS SERVICE NETWORKS AND TELECOMMUNICATIONS SECTOR. User Guide for the RightFax Fax Service. Web Utility INFORMATION SYSTEMS SERVICE NETWORKS AND TELECOMMUNICATIONS SECTOR User Guide for the RightFax Fax Service Web Utility August 2011 CONTENTS 1. Accessing the Web Utility 2. Change Password 3. Web Utility:

More information

This document summarizes the steps of deploying ActiveVOS on the IBM WebSphere Platform.

This document summarizes the steps of deploying ActiveVOS on the IBM WebSphere Platform. Technical Note Overview This document summarizes the steps of deploying ActiveVOS on the IBM WebSphere Platform. Legal Notice The information in this document is preliminary and is subject to change without

More information

Sop U. SOAP over JMS with. Configuring soapui to test TIBCO SOAP over JMS. - Seshasai Kotipalli

Sop U. SOAP over JMS with. Configuring soapui to test TIBCO SOAP over JMS. - Seshasai Kotipalli Sop U Configuring soapui to test TIBCO SOAP over JMS - Seshasai Kotipalli SOAP over JMS with Summary 1 Introduction... 3 2 Installation... 4 3 Hermes Configuration... 5 4 Configuring JMS endpoints in soapui...

More information

How to set up Outlook Anywhere on your home system

How to set up Outlook Anywhere on your home system How to set up Outlook Anywhere on your home system The Outlook Anywhere feature for Microsoft Exchange Server 2007 allows Microsoft Office Outlook 2007 and Outlook 2003 users to connect to their Outlook

More information

SharePoint Integration Framework Developers Cookbook

SharePoint Integration Framework Developers Cookbook Sitecore CMS 6.3 to 6.6 and SIP 3.2 SharePoint Integration Framework Developers Cookbook Rev: 2013-11-28 Sitecore CMS 6.3 to 6.6 and SIP 3.2 SharePoint Integration Framework Developers Cookbook A Guide

More information

Iowa Immunization Registry Information System (IRIS) Web Services Data Exchange Setup. Version 1.1 Last Updated: April 14, 2014

Iowa Immunization Registry Information System (IRIS) Web Services Data Exchange Setup. Version 1.1 Last Updated: April 14, 2014 Iowa Immunization Registry Information System (IRIS) Web Services Data Exchange Setup Version 1.1 Last Updated: April 14, 2014 Table of Contents SSL Certificate Creation... 3 Option 1: Complete the Provider

More information

Opacus Outlook Addin v3.x User Guide

Opacus Outlook Addin v3.x User Guide Opacus Outlook Addin v3.x User Guide Connecting to your SugarCRM Instance Before you can use the plugin you must first configure it to communicate with your SugarCRM instance. In order to configure the

More information

Configuring Thunderbird for Flinders Mail at home.

Configuring Thunderbird for Flinders Mail at home. Configuring Thunderbird for Flinders Mail at home. Downloading Thunderbird can be downloaded from the Mozilla web site located at http://www.mozilla.org/download.html This web site also contains links

More information

Introduction to Building Windows Store Apps with Windows Azure Mobile Services

Introduction to Building Windows Store Apps with Windows Azure Mobile Services Introduction to Building Windows Store Apps with Windows Azure Mobile Services Overview In this HOL you will learn how you can leverage Visual Studio 2012 and Windows Azure Mobile Services to add structured

More information

WebLogic Server 6.1: How to configure SSL for PeopleSoft Application

WebLogic Server 6.1: How to configure SSL for PeopleSoft Application WebLogic Server 6.1: How to configure SSL for PeopleSoft Application 1) Start WebLogic Server... 1 2) Access Web Logic s Server Certificate Request Generator page.... 1 3) Fill out the certificate request

More information