soapui Client Testing ecrv Web Services with soapui 1 9/20/2012 First edition soapui-x ecrv Development Team

Size: px
Start display at page:

Download "soapui Client Testing ecrv Web Services with soapui 1 9/20/2012 First edition soapui-x32-4.0.1 ecrv Development Team"

Transcription

1 soapui Client Testing ecrv Web Services with soapui Revision Status Index Rev. Date Description Prepared 1 9/20/2012 First edition soapui-x ecrv Development Team 2 3/8/2013 Added notes on where to find other wsdl s ecrv Development Team 3 9/19/2014 Recommend soapui version 5 ecrv Development Team

2 CONTENTS Preface... 2 What is soapui?... 2 soapui Tutorial P a g e

3 PREFACE WHAT IS SOAPUI? soapui is an open source web service testing tool for service-oriented architectures (SOA). Its functionality covers web service inspection, invoking, development, simulation and mocking, and functional, load and compliance testing. To learn more about soapui visit We recommend that you download and install the version, 5.0.0, for your testing purposes at this time: Click the link Download SoapUI-x exe will automatically start the process. When a dialog bar appears in the bottom of the download page, click Run button to run it or Save button to save SoapUIx exe file and run it by double-clicking on the saved file. You'll see the following starting screen. Click Next to continue. A setup wizard will walk you through the SoapUI installation. SOAPUI TUTORIAL Below is the initial screen of the soapui application. To create a new project, right click on Projects in the Navigator pane and select New Soap Project from the menu as shown in Figure 1. 2 P a g e

4 Figure 1 A new project dialog box appears, requesting a project name and a Web Services Description Language (wsdl) location along with other options as shown in Figure 2. You may assign it any project name you like - for this tutorial, which will be testing our ecrv sandbox, we will enter ecrv Sandbox DownloadService for the project name. Paste in, or browse to, the wsdl location you wish to access in this case, we will be requesting data from the wsdl located at Verify that the Create Requests box is checked and click OK. To use a different region or wsdl for testing please refer to the API documentation or the web service home page for the URL to the wsdl. Figure 2 3 P a g e

5 The soap project is now created and you should have a project structure similar to that shown in Figure 3 (expand the Projects tree structure by clicking the + in front of the Download operation to see Request 1). At this point, we have a sample request (Request 1) for each Download operation ( Download or DownloadPar). Figure 3 The next step is to set up the authentication piece of the request. To access the security configuration, right click the project name and click the Show Project View menu option as displayed in Figure 3. 4 P a g e

6 On selection, you will see the project view with the tabs Overview, TestSuites, WS-Security Configurations and Security Scan Defaults as shown in Figure 4. Figure 4 5 P a g e

7 Click on the WS-Security Configurations tab to access the security settings. On the sub-tab Outgoing WS-Security Configurations, click the plus sign icon just beneath the sub-tab name to add a new outgoing WSS (Web Services Security) configuration (circled and highlighted in Figure 5). Figure 5 A dialog box should appear, requesting a unique configuration name we entered ecrv security for this example (Figure 6). Figure 6 6 P a g e

8 After you have created your configuration entry, you will need to add WSS entries for timestamp and username. To add a WSS Entry, click the plus sign icon highlighted in Figure 7. Figure 7 When asked for the type of entry to be added, click the drop-down arrow on the right of the entry box, select a type (we will choose to add a timestamp entry first, Figure 8) and click OK. Figure 8 7 P a g e

9 Your timestamp entry is now available to be configured. Enter a value in the Time To Live entry which will specify how long this message will be valid - we entered 300 seconds for this example. This means that if our request needs more than 5 minutes (300 seconds) to retrieve our ecrv(s), parameters will need to be changed to complete the process successfully. Figure 9 Now add another WSS Entry, this time selecting Username for the type (Figure 10), then click OK. Figure 10 8 P a g e

10 As requested, enter your ecrv user ID and password (hidden by placeholder dots in the box). Verify that the Add Nonce box is checked (necessary for security purposes), uncheck the Add Created box (click in box) and select PasswordText for the password type (Figure 11 shows these tasks completed). Figure 11 9 P a g e

11 Next, right click on Request 1 of Download in the project tree and click the Show Request Editor menu (Figure 12). Figure 12 This displays the actual request text (Figure 13) in the request editor. We can now proceed to establish an authentication configuration and modify this request text to meet our needs. Figure P a g e

12 First, we will assign ecrv security, the outgoing security configuration we configured earlier (Figures 5 11), to this request. On opening Request 1 in the editor (Figure 13), you may need to maximize the editor window, making the tab names near the bottom visible. Click on the first tab, named Auth. If No Authorization is displayed, change it to Add New Authorization from the drop-down list (see Figure 14). A dialog box should appear (see Figure 15). Click OK button. Figure 14 Figure P a g e

13 The Auth tab gives you the option to select an Outgoing WSS configuration from a list of existing configurations produced by clicking the drop-down arrow on the right of the box (Figure 16) we ll select the configuration we created earlier, ecrv security. Figure 16 Now, we need to modify the actual XML body of our request (Request 1 of Download) to contain a valid type and CrvId. Locate the following line of code in your request editor window: <dow:crvid type="?">?</dow:crvid> The type refers to the version of an ecrv you wish to retrieve. Valid types are: O C M S - Original - County - Municipality/City - State 12 P a g e

14 If we want to get information from the County version of an ecrv, as we will do in our example, the first? in the line of XML code will be replaced (simply edit in the editor window as you would any text file) with a C (MUST use capital letters, since case-sensitive) as follows: <dow:crvid type="c">?</dow:crvid> To enter a valid CrvID, the second? (between the > < signs) will be replaced with a legitimate ecrv ID #, such as 2539 in our example. The xml code line now reads as follows: <dow:crvid type="c">2539</dow:crvid> Your completely modified request should look similar to that shown in the left pane of the request editor below (Figure 17). Figure 17 This completes the creation of a simple Web Services request which may be used to retrieve information from a specific version (designated by the type supplied) of one specific ecrv (designated by the ecrv ID # supplied) via the soapui client. If you click on the green play button (circled and highlighted in Figure 17), you will receive your results as displayed in the right pane of the request editor (Figure 17). 13 P a g e

15 If the requested ecrv does not exist, this response will contain an error similar to that shown in Figure 18. To review, the left side of the request (Request 1) pane displays highlighted code requesting the County version of the ecrv with an ID of 1. The right side of the request pane shows the error message returned if not found. Figure 18 To retrieve information from multiple ecrvs in one request (up to 100 at a time), simply copy the single line of XML code we edited in our example (<dow:crvid type="?">?</dow:crvid>), and enter the type and ID for each new ecrv requested, 1 per copied line as shown below. <soapenv:envelope xmlns:soapenv=" xmlns:dow=" <soapenv:header/> <soapenv:body> <dow:downloadrequest> <!--1 to 100 repetitions:--> <dow:crvid type="c">2536</dow:crvid> <dow:crvid type="c">2537</dow:crvid> <dow:crvid type="c">2538</dow:crvid> <dow:crvid type="c">2539</dow:crvid> </dow:downloadrequest> </soapenv:body> </soapenv:envelope> 14 P a g e

16 Finally, remember to save your project. To do so, right click on the project (ecrv Sandbox DownloadService in our example) and click the Save Project As menu option (Figure 19). Figure 19 Click the Save button at the bottom of the pop-up dialog box (Figure 20). By accepting the values provided in the Save In, File Name and Files of Type fields, your project will automatically open the next time you open soapui. Figure P a g e

DESKTOP CLIENT CONFIGURATION GUIDE BUSINESS EMAIL

DESKTOP CLIENT CONFIGURATION GUIDE BUSINESS EMAIL DESKTOP CLIENT CONFIGURATION GUIDE BUSINESS EMAIL Version 2.0 Updated: March 2011 Contents 1. Mac Email Clients... 3 1.1 Configuring Microsoft Outlook 2011... 3 1.2 Configuring Entourage 2008... 4 1.3.

More information

1. Open Thunderbird. If the Import Wizard window opens, select Don t import anything and click Next and go to step 3.

1. Open Thunderbird. If the Import Wizard window opens, select Don t import anything and click Next and go to step 3. Thunderbird The changes that need to be made in the email programs will be the following: Incoming mail server: newmail.one-eleven.net Outgoing mail server (SMTP): newmail.one-eleven.net You will also

More information

Instructions for Configuring a SAS Metadata Server for Use with JMP Clinical

Instructions for Configuring a SAS Metadata Server for Use with JMP Clinical Instructions for Configuring a SAS Metadata Server for Use with JMP Clinical These instructions describe the process for configuring a SAS Metadata server to work with JMP Clinical. Before You Configure

More information

The Coast to Coast AM Podcast for itunes 11

The Coast to Coast AM Podcast for itunes 11 The Coast to Coast AM Podcast for itunes 11 System Requirements In order to run itunes 11, please see the system requirements at http://www.apple.com/itunes/download/. A Note on Downloading Directly to

More information

The Rush 24/7 Podcast for itunes 11

The Rush 24/7 Podcast for itunes 11 The Rush 24/7 Podcast for itunes 11 System Requirements In order to run itunes 11, please see the system requirements at http://www.apple.com/itunes/download/. A Note on Downloading Directly to Mobile

More information

Set Up E-mail Setup with Microsoft Outlook 2007 using POP3

Set Up E-mail Setup with Microsoft Outlook 2007 using POP3 Page 1 of 14 Help Center Set Up E-mail Setup with Microsoft Outlook 2007 using POP3 Learn how to configure Outlook 2007 for use with your 1&1 e-mail account using POP3. Before you begin, you will need

More information

Email client configuration guide. Business Email

Email client configuration guide. Business Email Email client configuration guide Business Email August 2013 Contents 1. Mac Email Clients 1.1 Downloading Microsoft Outlook (Professional Plan Users) 1.2 Configuring Microsoft Outlook (Full Exchange Server

More information

Document Revision Date: August 14, 2014. Create a New Data Protection Policy in the Symantec.cloud Management Portal

Document Revision Date: August 14, 2014. Create a New Data Protection Policy in the Symantec.cloud Management Portal Document Revision Date: August 14, 2014 Create a New Data Protection Policy in the Symantec.cloud Management Portal Create a New Data Protection Policy i Contents Configure Data Protection Settings in

More information

Email Update Instructions

Email Update Instructions 1 Email Update Instructions Contents Email Client Settings The Basics... 3 Outlook 2013... 4 Outlook 2007... 6 Outlook Express... 7 Windows Mail... 8 Thunderbird 3... 9 Apple Mail... 10 2 Email Client

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

How to Set Up Your. Email Account

How to Set Up Your. Email Account How to Set Up Your Email Account Contents Outlook 2002 (Office XP)... 3 Outlook 2003 (Office 2003)... 6 Outlook 2007 (Office 2007)... 10 Outlook 2010 (Office 2010)... 14 Outlook Account Setup Page 2 HOW

More information

EBOX Digital Content Management System (CMS) User Guide For Site Owners & Administrators

EBOX Digital Content Management System (CMS) User Guide For Site Owners & Administrators EBOX Digital Content Management System (CMS) User Guide For Site Owners & Administrators Version 1.0 Last Updated on 15 th October 2011 Table of Contents Introduction... 3 File Manager... 5 Site Log...

More information

PC Agent Quick Start. Open the Agent. Autonomy Connected Backup. Version 8.8. Revision 0

PC Agent Quick Start. Open the Agent. Autonomy Connected Backup. Version 8.8. Revision 0 T E C H N I C A L N O T E Autonomy Connected Backup Version 8.8 PC Agent Quick Start Revision 0 Use this document as a quick reference for common Connected Backup PC Agent tasks. If the Agent is not on

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 Update Instructions

Email Update Instructions Email Update Instructions Table of Contents Email Client Settings The Basics... 2 Outlook 2013... 2 Outlook 2007... 4 Outlook Express... 6 Windows Mail... 7 Thunderbird 3... 9 Apple Mail... 11 1 Email

More information

Installation Guides - Information required for connection to the Goldfields Institute s (GIT) Wireless Network

Installation Guides - Information required for connection to the Goldfields Institute s (GIT) Wireless Network Installation Guides - Information required for connection to the Goldfields Institute s (GIT) Wireless Network Wireless Network Names and Credentials There are two wireless networks operating at the Goldfields

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

QAS Small Business for Salesforce CRM

QAS Small Business for Salesforce CRM INTRODUCTION This document provides an overview of integrating and configuring QAS for Salesforce CRM. It will take you through the standard integration and configuration process and also provides an appendix

More information

ibank Quick Start Guide

ibank Quick Start Guide ibank Quick Start Guide An introductory tutorial for ibank 3, a personal financial management application. 2008 IGG Software, LLC Overview This tutorial will cover these basic program concepts: 1 2 3 4

More information

TAMUS Terminal Server Setup BPP SQL/Alva

TAMUS Terminal Server Setup BPP SQL/Alva We have a new method of connecting to the databases that does not involve using the Texas A&M campus VPN. The new way of gaining access is via Remote Desktop software to a terminal server running here

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

1. After installing you can launch the program by clicking on the Start button and then select Programs, then WS_FTP LE, and then WS_FTP LE.

1. After installing you can launch the program by clicking on the Start button and then select Programs, then WS_FTP LE, and then WS_FTP LE. Section 1.0 How-To: Connecting to Warrnambool on The Web Using WS-FTP LE. This program can be downloaded from http://download.com.com/3000-2160-10018456.html 1. After installing you can launch the program

More information

Email Update Instructions

Email Update Instructions 1 Email Update Instructions Contents Email Client Settings The Basics... 3 Outlook 2013... 4 Outlook 2007... 6 Outlook Express... 8 Windows Mail... 9 Thunderbird 3... 10 Apple Mail... 11 2 Email Client

More information

Email Client Configuration Guide

Email Client Configuration Guide Email Client Configuration Guide Table of Contents Email Configuration...3 Email settings...3 IMAP...3 POP...3 SMTP...3 Process Overview...5 Account set up wizards...5 Anatomy of an email address...5 Why

More information

COMMONWEALTH OF PA OFFICE OF ADMINISTRATION. Human Resource Development Division. SAP LSO-AE Desk Guide 15 T H J A N U A R Y, 2 0 1 3

COMMONWEALTH OF PA OFFICE OF ADMINISTRATION. Human Resource Development Division. SAP LSO-AE Desk Guide 15 T H J A N U A R Y, 2 0 1 3 COMMONWEALTH OF PA OFFICE OF ADMINISTRATION Human Resource Development Division SAP LSO-AE Desk Guide 15 T H J A N U A R Y, 2 0 1 3 S A P L S O A U T H O R I N G E N V I R O N M E N T Authoring & Publishing

More information

5. For Display name, Your Full Name or the name you want to appear in the from box when writing or responding to e-mail click Next

5. For Display name, Your Full Name or the name you want to appear in the from box when writing or responding to e-mail click Next Setting up Outlook Express. 1. Open Outlook Express 2. From Tools menu a. Choose Accounts. 3. Click Add button a. Choose Mail 5. For Display name, Your Full Name or the name you want to appear in the from

More information

Cloud Extend Tutorial

Cloud Extend Tutorial Cloud Extend Tutorial Revised May 2012 Tutorial Build a New Guide....................................................... 1 Part One: Properties Dialog............................................. 2 Part

More information

Application. 1.1 About This Tutorial. 1.1.1 Tutorial Requirements. 1.1.2 Provided Files

Application. 1.1 About This Tutorial. 1.1.1 Tutorial Requirements. 1.1.2 Provided Files About This Tutorial 1Creating an End-to-End HL7 Over MLLP Application 1.1 About This Tutorial 1.1.1 Tutorial Requirements 1.1.2 Provided Files This tutorial takes you through the steps of creating an end-to-end

More information

Event Management System (EMS) Room Scheduling Guide

Event Management System (EMS) Room Scheduling Guide Event Management System (EMS) Room Scheduling Guide Tables of Contents How to Request a reservations using EMS... 1 View My Request... 8 Browse Events... 10 Browse Facilities... 14 Browse Spaces... 16

More information

How to install and use the File Sharing Outlook Plugin

How to install and use the File Sharing Outlook Plugin How to install and use the File Sharing Outlook Plugin Thank you for purchasing Green House Data File Sharing. This guide will show you how to install and configure the Outlook Plugin on your desktop.

More information

PaymentNet Federal Card Solutions Cardholder FAQs

PaymentNet Federal Card Solutions Cardholder FAQs PaymentNet Federal Card Solutions It s easy to find the answers to your questions about PaymentNet! June 2014 Frequently Asked Questions First Time Login How do I obtain my login information?... 2 How

More information

ATTENTION: End users should take note that Main Line Health has not verified within a Citrix

ATTENTION: End users should take note that Main Line Health has not verified within a Citrix Subject: Citrix Remote Access using PhoneFactor Authentication ATTENTION: End users should take note that Main Line Health has not verified within a Citrix environment the image quality of clinical cal

More information

Setting up VMware ESXi for 2X VirtualDesktopServer Manual

Setting up VMware ESXi for 2X VirtualDesktopServer Manual Setting up VMware ESXi for 2X VirtualDesktopServer Manual URL: www.2x.com E-mail: info@2x.com Information in this document is subject to change without notice. Companies, names, and data used in examples

More information

WA2087 Programming Java SOAP and REST Web Services - WebSphere 8.0 / RAD 8.0. Student Labs. Web Age Solutions Inc.

WA2087 Programming Java SOAP and REST Web Services - WebSphere 8.0 / RAD 8.0. Student Labs. Web Age Solutions Inc. WA2087 Programming Java SOAP and REST Web Services - WebSphere 8.0 / RAD 8.0 Student Labs Web Age Solutions Inc. 1 Table of Contents Lab 1 - WebSphere Workspace Configuration...3 Lab 2 - Introduction To

More information

Guide to register for and access the Provider Online Reporting application TNPEC-1102-15

Guide to register for and access the Provider Online Reporting application TNPEC-1102-15 Guide to register for and access the Provider Online Reporting application TNPEC-1102-15 Provider Online Reporting overview As a provider in the network, you re committed to providing quality, patient-centered

More information

Connecting To SOM Network Drives With Windows XP

Connecting To SOM Network Drives With Windows XP Connecting To SOM Network Drives With Windows XP The first step to take is to make sure that you are using the UCSF VPN client when you connect. If you do not have a VPN username and password, you will

More information

This tutorial provides detailed instructions to help you download and configure Internet Explorer 6.0 for use with Web Commerce application.

This tutorial provides detailed instructions to help you download and configure Internet Explorer 6.0 for use with Web Commerce application. IE 6.0 Download and Set-up To use the Web Commerce e-commerce service, you need to: Gain access to the Internet Install Microsoft Internet Explorer 6.0 Configure Temporary Internet files in Internet Explorer.

More information

Egnyte Single Sign-On (SSO) Installation for Okta

Egnyte Single Sign-On (SSO) Installation for Okta w w w. e g n y t e. c o m Egnyte Single Sign-On (SSO) Installation for Okta To set up Egnyte so employees can log in using SSO, follow the steps below to configure Okta and Egnyte to work with each other.

More information

Primavera Unifier v9.14 / 2014 EPPM Day Hands On Session Exercise Document

Primavera Unifier v9.14 / 2014 EPPM Day Hands On Session Exercise Document Primavera Unifier v9.14 / 2014 EPPM Day Hands On Session Exercise Document This exercise document is a basic Unifier intro. document, for those people, who would like to gain the first impression around

More information

Set up Outlook for your new student e mail with IMAP/POP3 settings

Set up Outlook for your new student e mail with IMAP/POP3 settings Set up Outlook for your new student e mail with IMAP/POP3 settings 1. Open Outlook. The Account Settings dialog box will open the first time you open Outlook. If the Account Settings dialog box doesn't

More information

Flexible Identity. LDAP Synchronization Agent guide. Bronze. version 1.2

Flexible Identity. LDAP Synchronization Agent guide. Bronze. version 1.2 Flexible Identity Bronze LDAP Synchronization Agent guide version 1.2 publication history Date Description Revision 2014.06.27 initial release 1.0 2014.11.24 rebranding 1.1 2015.04.16 LDAP synchronization

More information

owncloud Configuration and Usage Guide

owncloud Configuration and Usage Guide owncloud Configuration and Usage Guide This guide will assist you with configuring and using YSUʼs Cloud Data storage solution (owncloud). The setup instructions will include how to navigate the web interface,

More information

Remote Viewer Recording Backup

Remote Viewer Recording Backup Remote Viewer Recording Backup Introduction: In this tutorial we will explain how to retrieve your recordings using the Web Service online. Using this method you can backup videos onto your computer using

More information

User guide. Business Email

User guide. Business Email User guide Business Email June 2013 Contents Introduction 3 Logging on to the UC Management Centre User Interface 3 Exchange User Summary 4 Downloading Outlook 5 Outlook Configuration 6 Configuring Outlook

More information

Lenovo Online Data Backup User Guide Version 1.8.14

Lenovo Online Data Backup User Guide Version 1.8.14 Lenovo Online Data Backup User Guide Version 1.8.14 Contents Chapter 1: Installing Lenovo Online Data Backup...5 Downloading the Lenovo Online Data Backup Client...5 Installing the Lenovo Online Data

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 6 Activity 2: Testing a web service for WS-I conformance Prepared for the course team by Neil Simpkins Introduction 1 Configuring the

More information

1. Open the preferences screen by opening the Mail menu and selecting Preferences...

1. Open the preferences screen by opening the Mail menu and selecting Preferences... Using TLS encryption with OS X Mail This guide assumes that you have already created an account in Mail. If you have not, you can use the new account wizard. The new account wizard is in the Accounts window

More information

Uninstall Check Scanning software (Fujitsu S300)

Uninstall Check Scanning software (Fujitsu S300) Uninstall Check Scanning software (Fujitsu S300) Contents What software do you need to remove?... 2 Stop the I2iA and ScanSnap services... 2 Uninstall Active X controls... 4 If you have Internet Explorer

More information

MadCap Software. Upgrading Guide. Pulse

MadCap Software. Upgrading Guide. Pulse MadCap Software Upgrading Guide Pulse Copyright 2014 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document is furnished

More information

Installing TestNav Mac with Apple Remote Desktop

Installing TestNav Mac with Apple Remote Desktop Installing TestNav Mac with Apple Remote Desktop 1 2 3 Getting TestNav Installation from Servicedesk 1.1 Connect to Servicedesk 4 1.2 Download Package to Desktop 7 Installing TestNav 2.1 Add Computers

More information

Booth Gmail Configuration

Booth Gmail Configuration Student email is accessed via a Booth branded Gmail service. Student mailboxes will be accessed via Gmail. Configure Gmail Settings Before you connect Gmail to send and receive Booth Gmail on your mobile

More information

Building A Very Simple Web Site

Building A Very Simple Web Site Sitecore CMS 6.2 Building A Very Simple Web Site Rev 100601 Sitecore CMS 6. 2 Building A Very Simple Web Site A Self-Study Guide for Developers Table of Contents Chapter 1 Introduction... 3 Chapter 2 Building

More information

Email Update Instructions

Email Update Instructions 1 Email Update Instructions Contents Email Client Settings The Basics... 3 Outlook 2013... 4 Outlook 2007... 6 Outlook Express... 7 Windows Mail... 8 Thunderbird 3... 9 Apple Mail... 10 Apple Mail 8.2...

More information

Recommended Browser Setting for MySBU Portal

Recommended Browser Setting for MySBU Portal The MySBU portal is built using Microsoft s SharePoint technology framework, therefore, for the best viewing experience, Southwest Baptist University recommends the use of Microsoft s Internet Explorer,

More information

Cox Business Premium Online Backup USER'S GUIDE. Cox Business VERSION 1.0

Cox Business Premium Online Backup USER'S GUIDE. Cox Business VERSION 1.0 Cox Business Premium Online Backup USER'S GUIDE Cox Business VERSION 1.0 Table of Contents ABOUT THIS GUIDE... 4 DOWNLOADING COX BUSINESS PREMIUM ONLINE BACKUP... 5 INSTALLING COX BUSINESS PREMIUM ONLINE

More information

ArcGIS Business Analyst Premium* ~ Help Guide ~ Revised October 3, 2012

ArcGIS Business Analyst Premium* ~ Help Guide ~ Revised October 3, 2012 ArcGIS Business Analyst Premium* ~ Help Guide ~ Revised October 3, 2012 ArcGIS Business Analyst Premium is an Esri software package that combines GIS analysis and visualization with data to provide a better

More information

1. Tutorial Overview

1. Tutorial Overview RDz Web Services Tutorial 02 Web Services Abteilung Technische Informatik, Institut für Informatik, Universität Leipzig Abteilung Technische Informatik, Wilhelm Schickard Institut für Informatik, Universität

More information

USING MS OUTLOOK. Microsoft Outlook

USING MS OUTLOOK. Microsoft Outlook USING MS OUTLOOK In this tutorial you will learn how to use Microsoft Outlook with your EmailHosting.com account. You will learn how to setup an IMAP account, and also how to move your emails and contacts

More information

Test Automation Integration with Test Management QAComplete

Test Automation Integration with Test Management QAComplete Test Automation Integration with Test Management QAComplete This User's Guide walks you through configuring and using your automated tests with QAComplete's Test Management module SmartBear Software Release

More information

MAPPING THE WEBDRIVE REFERENCE GUIDE

MAPPING THE WEBDRIVE REFERENCE GUIDE MAPPING THE WEBDRIVE REFERENCE GUIDE INTRODUCTION The university WebDrive is a dedicated drive to host all university web content. For help with mapping the WebDrive, please read the instructions below

More information

Microsoft Office 365 with MailDefender

Microsoft Office 365 with MailDefender (PC) for Microsoft Office 365 with MailDefender V1.0 Contents 1 Logging in to the Office 365 Portal... 3 1.1 Outlook Web Access Exchange & Lync... 3 1.2 Team Site SharePoint Online... 3 2 Configuring your

More information

Kepware Technologies KEPServerEX Client Connectivity Guide for GE's Proficy ifix

Kepware Technologies KEPServerEX Client Connectivity Guide for GE's Proficy ifix Kepware Technologies KEPServerEX Client Connectivity Guide for October, 2011 V. 1.105 Kepware Technologies Table of Contents 1. Overview and Requirements... 1 1.1 Installing KEPServerEX... 1 2. Preparing

More information

USING MS OUTLOOK WITH FUSEMAIL

USING MS OUTLOOK WITH FUSEMAIL USING MS OUTLOOK WITH FUSEMAIL In this tutorial you will learn how to use Microsoft Outlook with your FuseMail account. You will learn how to setup an IMAP account, and also how to move your emails and

More information

Peterhouse Computing: Configuring Windows 7 (and Windows Vista) for a wired network connection.

Peterhouse Computing: Configuring Windows 7 (and Windows Vista) for a wired network connection. Peterhouse Computing: Configuring Windows 7 (and Windows Vista) for a wired network connection. Introduction The Peterhouse network uses IEEE802.1x (hereafter.1x ) network authentication to control access

More information

FTP Over SSL (FTPS) Core FTP LE. Installing Core FTP LE"

FTP Over SSL (FTPS) Core FTP LE. Installing Core FTP LE FTP Over SSL (FTPS) Gordon State College has setup FTP Over SSL (also known as FTPS ) to allow students, faculty, and staff to access resources from our Servers from off-campus using an encrypted connection.

More information

How to move email to your new @students.ecu.edu account with MAC Mail

How to move email to your new @students.ecu.edu account with MAC Mail How to move email to your new @students.ecu.edu account with MAC Mail 1. Open Mail, and then do one of the following: If you've never set up any e mail accounts using Mail, the Welcome to Mail page appears.

More information

SAS Task Manager 2.2. User s Guide. SAS Documentation

SAS Task Manager 2.2. User s Guide. SAS Documentation SAS Task Manager 2.2 User s Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2015. SAS Task Manager 2.2: User's Guide. Cary, NC: SAS Institute

More information

How to create pop-up menus

How to create pop-up menus How to create pop-up menus Pop-up menus are menus that are displayed in a browser when a site visitor moves the pointer over or clicks a trigger image. Items in a pop-up menu can have URL links attached

More information

Standard Mailbox Email Software Setup Guide

Standard Mailbox Email Software Setup Guide Standard Mailbox Email Software Setup Guide Standard Mailbox Setup Guide Setting up a Standard mailbox only takes a few minutes. You can set up any email software to receive email from your mailbox. This

More information

State of Indiana Content Management System. Training Manual Version 2.0. Developed by

State of Indiana Content Management System. Training Manual Version 2.0. Developed by State of Indiana Content Management System Training Manual Version 2.0 Developed by Table of Contents Getting Started... 4 Logging In... 5 RedDot Menu... 6 Selecting a Project... 7 Start Page... 8 Creating

More information

Setting up Sharp MX-Color Imagers for Inbound Fax Routing to Email or Network Folder

Setting up Sharp MX-Color Imagers for Inbound Fax Routing to Email or Network Folder Setting up Sharp MX-Color Imagers for Inbound Fax Routing to Email or Network Folder MX-2300, MX-2600, MX-2700, MX-3100, MX-3501, MX-4501, MX-5500, MX-6200, MX-6201, MX-7000, MX-7001, *MX-M850, *MX-M950,

More information

MAC OS X 10.5 Mail Setup

MAC OS X 10.5 Mail Setup MAC OS X 10.5 Mail Setup Automatically Configuring Mail Manually Configuring Mail Changing Mail Settings Automatically Configuring Mail Mail in Mac OS X 10.5 includes the automatically set up account option.

More information

Using SSH Secure Shell Client for FTP

Using SSH Secure Shell Client for FTP Using SSH Secure Shell Client for FTP The SSH Secure Shell for Workstations Windows client application features this secure file transfer protocol that s easy to use. Access the SSH Secure FTP by double-clicking

More information

Build an ArcGIS Online Application

Build an ArcGIS Online Application Build an ArcGIS Online Application Sign into ArcGIS Online for Maryland 1. Open a web browser 2. Go to URL http://maryland.maps.arcgis.com/ 3. Click Sign In in the upper right corner of the web page 4.

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

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

Working with SQL Server Integration Services

Working with SQL Server Integration Services SQL Server Integration Services (SSIS) is a set of tools that let you transfer data to and from SQL Server 2005. In this lab, you ll work with the SQL Server Business Intelligence Development Studio to

More information

3. On the E-mail Accounts wizard window, select Add a new e-mail account, and then click Next.

3. On the E-mail Accounts wizard window, select Add a new e-mail account, and then click Next. To Set Up Your E-mail Account in Microsoft Outlook 2003 1. Open Microsoft Outlook 03 3. On the E-mail Accounts wizard window, select Add a new e-mail account, and then click Next. 4. For your server type,

More information

Setting up Email in Outlook Express

Setting up Email in Outlook Express Setting up Email in Outlook Express If you have more than one email account but need to use a single computer to access them, then Outlook Express can help. To begin, open Outlook Express by double-clicking

More information

TransUnion Direct: Download Digital Certificate Internet Explorer

TransUnion Direct: Download Digital Certificate Internet Explorer TransUnion Direct: Download Digital Certificate Internet Explorer Getting Started What You Need to Know Important: Both the user and the administrator need to be present at the user s PC. The user should

More information

ESET NOD32 Antivirus 4 for Linux Desktop. Quick Start Guide

ESET NOD32 Antivirus 4 for Linux Desktop. Quick Start Guide ESET NOD32 Antivirus 4 for Linux Desktop Quick Start Guide ESET NOD32 Antivirus 4 provides state-of-the-art protection for your computer against malicious code. Based on the ThreatSense scanning engine

More information

WALKABOUT 5215 SUPPLEMENTAL INSTRUCTIONS FOR SETTING UP YOUR USER PROFILE IN DRAGON NATURALLYSPEAKING

WALKABOUT 5215 SUPPLEMENTAL INSTRUCTIONS FOR SETTING UP YOUR USER PROFILE IN DRAGON NATURALLYSPEAKING WALKABOUT 5215 SUPPLEMENTAL INSTRUCTIONS FOR SETTING UP YOUR USER PROFILE IN DRAGON NATURALLYSPEAKING These supplemental instructions provide you with the information you need to configure your Walkabout

More information

Configuring Cisco Unified Communications Manager with Comrex STAC-VIP

Configuring Cisco Unified Communications Manager with Comrex STAC-VIP Configuring Cisco Unified Communications Manager with Comrex STAC-VIP Vortex Communications Ltd, 75 The Grove, Ealing, London W5 5LL, UK Tel: +44 (0)20-8579 2743 * Fax: +44 (0)20-8840 0018 Email: info@vtx.co.uk

More information

QUANTIFY INSTALLATION GUIDE

QUANTIFY INSTALLATION GUIDE QUANTIFY INSTALLATION GUIDE Thank you for putting your trust in Avontus! This guide reviews the process of installing Quantify software. For Quantify system requirement information, please refer to the

More information

MICROSOFT OFFICE 365 EXCHANGE ONLINE CLOUD

MICROSOFT OFFICE 365 EXCHANGE ONLINE CLOUD 6/4/14 Samson V. 1. Configure Outlook 2011 for Exchange Online Step 1 First we need to verify that your Office 2011 is up-to-date. Launch any Office 2011 product (Word, Excel, Outlook) and click on the

More information

The Power Loader GUI

The Power Loader GUI The Power Loader GUI (212) 405.1010 info@1010data.com Follow: @1010data www.1010data.com The Power Loader GUI Contents 2 Contents Pre-Load To-Do List... 3 Login to Power Loader... 4 Upload Data Files to

More information

KeyAdvantage System DMS Integration. Software User Manual

KeyAdvantage System DMS Integration. Software User Manual KeyAdvantage System DMS Integration Software User Manual ii Copyright Disclaimer Trademarks and patents Intended use EMC Directive Regulatory 2013 United Technologies Corporation. All rights reserved.

More information

1. Navigate to Control Panel and click on User Accounts and Family Safety. 2. Click on User Accounts

1. Navigate to Control Panel and click on User Accounts and Family Safety. 2. Click on User Accounts This document will guide you through setting up your outgoing server (SMTP) Microsoft Outlook and Windows Live Mail. There is also a section below that guides you through the manual configuration of your

More information

INSTALLATION DIRECTIONS

INSTALLATION DIRECTIONS BEGIN... INSTALLATION DIRECTIONS How to Download and Install the Simulation Game 1. On the download page (https://ahlei.org/slatehotel/), click the link to download the install files. Windows 2. Make

More information

Hot Spot (Unsecured) Wireless Access Initial Setup and Login for MCC_HOTSPOT

Hot Spot (Unsecured) Wireless Access Initial Setup and Login for MCC_HOTSPOT CLIENT INSTRUCTIONS PRIMARY KNOWLEDGE AREA Hot Spot (Unsecured) Wireless Access Initial Setup and Login for MCC_HOTSPOT Wireless Windows XP service pack 2 Purpose: Wireless Initial Setup sets the parameters

More information

9 Working With DICOM. Configuring the DICOM Option

9 Working With DICOM. Configuring the DICOM Option 9 Working With DICOM DICOM (Digital Imaging and Communications in Medicine) is a format created by NEMA (National Electrical Manufacturers Association) to aid in the distribution and viewing of medical

More information

Email Account Create for Outlook Express

Email Account Create for Outlook Express Email Account Create for Outlook Express Click Start Menu Choose Outlook Express Click Tools menu from Menu Bar and then click Accounts In Internet Account Wizard, Click Add Button and Click Mail. 1 In

More information

CentreWare Web 5.8.107 and higher August 2013 702P01942. Xerox CentreWare Web Identifying and Applying Scanning Firmware Patch

CentreWare Web 5.8.107 and higher August 2013 702P01942. Xerox CentreWare Web Identifying and Applying Scanning Firmware Patch CentreWare Web 5.8.107 and higher August 2013 702P01942 Identifying and Applying Scanning Firmware Patch 2013 Xerox Corporation. All rights reserved. Xerox, Xerox and Design, CentreWare, ColorQube and

More information

Trend Micro PC-cillin Internet Security 2006

Trend Micro PC-cillin Internet Security 2006 Trend Micro PC-cillin Internet Security 2006 I. How to modify Trend Micro PC-cillin Internet Security 2006 to prompt you for applications attempting to access your network and the internet. 1) Right-click

More information

TM Online Storage: StorageSync

TM Online Storage: StorageSync TM Online Storage: StorageSync 1 Part A: Backup Your Profile 1: How to download and install StorageSync? Where to download StorageSync? You may download StorageSync from your e-storage account. Please

More information

MS Outlook 2002/2003. V1.0 BullsEye Telecom Email

MS Outlook 2002/2003. V1.0 BullsEye Telecom Email IMAP Settings Manual Our application allows you to access your email in many different ways. For those of you who do not wish to use the Webmail interface, you may also manage your email and custom folder

More information

Phaser 3635MFP Software Upgrade Process

Phaser 3635MFP Software Upgrade Process Overview Phaser 3635MFP Software Upgrade Process The Software Upgrade feature allows the customer to upgrade the machine software as requested by a Xerox Customer Support Center Representative, without

More information

Creating a New Digital ID or Signature for Adobe Acrobat

Creating a New Digital ID or Signature for Adobe Acrobat Creating a New Digital ID or Signature for Adobe Acrobat If you are not using a third-party digital ID, you can create your own in Adobe Acrobat Professional or in Adobe Reader 9, 10 or X. Follow these

More information

Creating and Using Links and Bookmarks in PDF Documents

Creating and Using Links and Bookmarks in PDF Documents Creating and Using Links and Bookmarks in PDF Documents After making a document into a PDF, there may be times when you will need to make links or bookmarks within that PDF to aid navigation through the

More information

BOTTOM UP THINKING EMAIL SETUP INSTRUCTIONS. Unique businesses require unique solutions CLIENT GUIDE

BOTTOM UP THINKING EMAIL SETUP INSTRUCTIONS. Unique businesses require unique solutions CLIENT GUIDE BOTTOM UP THINKING Unique businesses require unique solutions EMAIL SETUP INSTRUCTIONS CLIENT GUIDE INDEX How to connect a. Deciding on best method (POP or IMAP) Setting up email on devices Webmail a.

More information