RPGMail. Easily send directly from RPG! Krengel Technology Inc. by Aaron Bartell. Copyright Aaron Bartell 2011

Size: px
Start display at page:

Download "RPGMail. Easily send directly from RPG! Krengel Technology Inc. by Aaron Bartell. Copyright Aaron Bartell 2011"

Transcription

1 RPGMail Easily send directly from RPG! Copyright Aaron Bartell 2011 by Aaron Bartell Krengel Technology Inc.

2 Joke Of The Day Found in employee handbook SURGERY: Operations are now banned. As long as you are an employee here, you need all your organs. You should not consider removing anything. We hired you intact. To have something removed constitutes a breach of employment.

3 Abstract Learn how to easily send from your iseries using open source software RPGMail. Make your boss happy and take this code home to gain immediate RPG Summit ROI. Not only will you have a free utility (RPGMail) to put on your iseries after leaving this session but you will also get a full understanding of how the guts work in conjunction with Sun's JavaMail API's to send directly to your mail server (i.e. Microsoft Exchange), completely by-passing the problematic iseries MSF (Mail Server Framework). Don't miss this one!

4 MowYourLawn.com Inception: Free and Open SourceTools RPGMail 3352 downloads since RPG Chart Engine 1248 downloads since RPG To Desktop 768 downloads since ( control System i SVN Client(source 342 downloads since

5 Addiction Dear Andy: How have you been? Your mother and I are fine. We miss you. Please sign off your computer and come downstairs for something to eat. Love, Dad.

6 RPGMail What,Why,How? What: A set of RPG sub procedures (say service program) that utilize the JavaMail API's from Sun to send s with ease from your iseries RPG program without limitations on the amount of addresses or attachments. Why: IBM s MSF (Mail Server Framework) is/was problematic in that it just stopped working with a whole bunch of s queued and waiting to be sent out. One approach to fixing this problem was to clear/restart the MSF. How: I took my first Java class at the local technical college and developed RPGMail shortly after. After learning how to use Eclipse and reading different tutorials on JavaMail, I waded my way through the creation of a Java wrapper to JavaMail to simplify the use at that level. I then added an RPG wrapper to make it easy to use for other RPG developers in my shop.

7 Requirements OS/400 V5R1 ( info RPG Compiler (to recompile example programs with your 5722JV1 *COMPATIBLE Java Developer Kit 1.4 You need to have access to your own SMTP server (i.e. Microsoft Exchange). At least a small sense of adventure! You are, after all, using Java!

8 Installation 1. Unzip the downloaded file to c:\temp (or the directory of your choice). 2. Issue the AS/400 command: ( AUT(*ALL CRTSAVF FILE(QGPL/RPGMAIL) 3. FTP the file RPGMAIL.SAVF from your PC to the AS/400 in BINARY mode into the save file RPGMAIL in library QGPL. 4. Issue the AS/400 commands. ( LIB(RPGMAIL CRTLIB ( SAVF(QGPL/RPGMAIL RSTOBJ OBJ(*ALL) SAVLIB(RPGMAIL) DEV(*SAVF) CPYTOIMPF FROMFILE(RPGMAIL/QSOURCE MYTEXTFILE) TOSTMF('/home/mytextfile.txt') ( MBROPT(*REPLACE ( DTAFMT(*FIXED STMFCODPAG(*PCASCII) RCDDLM(*CRLF) ADDLIBLE RPGMAIL 5. Copy the *.jar files included with the download to IFS folder /java/. Use a Windows drive mapping, FTP, or WDSC RSE to do this. 6. Change source members T1_RPGMAIL and T2_RPGMAIL in RPGMAIL/QSOURCE to have valid addresses and SMTP host/port, and then recompile and run.

9 Uses For RPGMail 1. Send notification s upon receiving an order. 2. Notify customer of order getting shipped and include carrier and tracking number. 3. Send s to programming staff if critical processes don t complete. 4. Send out s to existing customers about discounts and specials you may be having (i.e. mass ing). Be careful with this because of spam laws and getting your IP address on black lists. 5. reports that have been created on the iseries.

10 Sending Basic H spec thread(*serialize) is necessary in Java situations.

11 Attachments and File as Body

12 RPG Guts Prime the Java environment. Note that this only needs to be called once per job. Calling it again will simply have no affect. What is a CLASSPATH you ask? Very similar to a library list.

13 RPG Guts contd Create/Instantiate the RPGMail.class Java object for later use in our RPG code.

14 RPG Guts contd This shows how most of the remaining API s work. They receive in the RPGMail.class object instance, along with other parameters, and turn around to call the corresponding Java prototype.

15 RPG Guts contd RPGMail_send is the only API that receives information back from the Java class. A Java object of type java.lang.string is returned from RPGMail.class. If the process was successful the String will be empty, otherwise it will be occupied with an error (most likely occupied with what s called a stack trace). This was put in place because when errors occur in Java they aren t recorded in an extended fashion within the OS/400 job log.

16 Java Guts Example Java program that shows how to make use of the RPGMail.class object. The JavaMail API by itself wasn t able to be quickly implemented in other Java programs so an additional Java wrapper (RPGMail.java) was added to wrap up the ugliness. Look similar to the RPG example?

17 Java Guts contd Here are three Java methods from RPGMail.java, showing what the Java wrapper looks like.

18 Java Jump-start for RPG'ers I wrote an article for IBMSystemsMag.com that guides you through the general concepts of modifying RPGMail as if you were a complete noob to the process. You can see the article by going to In the search box on site you can enter my name and you should find the article. The article is titled Roll The Tape A Java Jump-start video tutorial for RPG'ers. Or you can view the digital version of the magazine by going to the following URL:

19 Future Enhancements address validation. Check to see if attachments exists on RPG end before attempting to send. High Priority s. Encryption?? Authenticate to remote SMTP server Modify infrastructure to have RPG layer talk to data queues with Java on the other side. Make process a lot faster and wouldn t have ANY Java in the RPG source code. Anybody want to help?!

20 Troubleshooting Problem Message.... : Java exception received when calling Java method. Cause..... : RPG procedure RPGMAIL_SE in program RPGMAIL/ RPGMAILSV received Java exception "java.lang.nosuchmethoderror: append (Ljava/lang/StringBuffer;)Ljava/lang/StringBuffer;" when calling method "send" with signature "()V" in class "com.mowyourlawn.rpgmail.rpgmail". Solution This means that a previous JDK is being chosen to run the code (most likely JDK 1.3) and you need to tell the iseries that you instead want to use JDK1.4. To do this you need to create the following file in the IFS: /QIBM/ UserData/Java400/SystemDefault.properties Once it has been created, open it and place the following line of text in it: java.version=1.4 Save the file and exit. Sign off and back on again. Re-run your RPGMail program.

21 Troubleshooting contd Are other Java applications installed on your iseries? May be that their.jar files are loaded into the shared Java directory: /qibm/ userdata/java400/ext and causing conflicts with your.jar files. Make sure the mail/smtp server allows relaying from your iseries IP address. You can only start one JVM per OS/400 job and once started you cannot modify the CLASSPATH (among other startup variables). This could pose a problem if you have other Java processes that run BEFORE RPGMail and then RPGMail will be unable to add the necessary.jar files to the CLASSPATH. Make sure all your DNS stuff is setup correctly on both the iseries and network devices. Don t use IFS QDLS for attachments or bodies.

22 Other Open Source Java Utilities Try one of these guys out for yourself to see what you can do! (Graphical charts) (Excel Spreadsheets) (PDF creation) (Reports) (check out for a ( project start to this ( Reporting )

23 Other Open Source Sites

24 We have reached the end! Aaron Bartell ( ) lead developer of RPG-XML Suite and owner of and check out his latest effort at

www.orati-systems.com

www.orati-systems.com www.orati-systems.com Table of Contents Summary Features Requirements Installation and configuration Rebuild and deploy Java Debugging Summary isftp is an open source toolset developed by Orati Systems

More information

RPG Chart Engine. Exploit the power of open source java from RPG. Krengel Technology Inc. Leverage Java from your RPG to save time and money!

RPG Chart Engine. Exploit the power of open source java from RPG. Krengel Technology Inc. Leverage Java from your RPG to save time and money! Exploit the power of open source java from RPG Leverage Java from your RPG to save time and money! RPG Chart Engine Copyright Aaron Bartell 2011 by Aaron Bartell Krengel Technology Inc. aaronbartell@mowyourlawn.com

More information

SDK Code Examples Version 2.4.2

SDK Code Examples Version 2.4.2 Version 2.4.2 This edition of SDK Code Examples refers to version 2.4.2 of. This document created or updated on February 27, 2014. Please send your comments and suggestions to: Black Duck Software, Incorporated

More information

When are Web Services Right?

When are Web Services Right? When are Web Services Right? Presented in Bovine style. No cows were hurt in the making of this presentation. Copyright Aaron Bartell 2008 by Aaron Bartell aaronbartell@mowyourlawn.com Abstract You can

More information

Users Guide. FTP/400 File Transfer API and Remote Command Server Version 1.00. By RJS Software Systems, Inc.

Users Guide. FTP/400 File Transfer API and Remote Command Server Version 1.00. By RJS Software Systems, Inc. FTP/400 File Transfer API and Remote Command Server Version 1.00 Users Guide By RJS Software Systems, Inc. RJS Software Systems P.O. Box 19408 Minneapolis, MN 55419 (612) 822-0412 Voice (612) 822-1364

More information

Textura CMS Interface Setup Manual. Version 1.1

Textura CMS Interface Setup Manual. Version 1.1 Textura CMS Interface Setup Manual Version 1.1 January 4, 2007 This user manual contains confidential information of Textura, LLC and is protected by all applicable patents, copyright, trademark trade

More information

SequeLink Server Installation Instructions for the iseries

SequeLink Server Installation Instructions for the iseries SequeLink Server Installation Instructions for the iseries Requirements This document describes installation of SequeLink Server for the iseries. Throughout this document, the term iseries refers to the

More information

CREATE!FORM SERVER FOR ISERIES V6R1 INSTALLATION

CREATE!FORM SERVER FOR ISERIES V6R1 INSTALLATION T ECHNICAL NOTE Product: Create!form Server 2.8 Last modified: February 2, 2009 5:49 pm Created by: Development Inside this note: Installing Create!form Server 2.8 CREATE!FORM SERVER FOR ISERIES V6R1 INSTALLATION

More information

24x7 Scheduler Multi-platform Edition 5.2

24x7 Scheduler Multi-platform Edition 5.2 24x7 Scheduler Multi-platform Edition 5.2 Installing and Using 24x7 Web-Based Management Console with Apache Tomcat web server Copyright SoftTree Technologies, Inc. 2004-2014 All rights reserved Table

More information

Installation and Administration Guide

Installation and Administration Guide Installation and Administration Guide Product Version: 2.5.0 Publication date: 7/21/2011 Copyright 2008-2011, LINOMA SOFTWARE LINOMA SOFTWARE is a division of LINOMA GROUP, Inc. Table of Contents Introduction...

More information

Rational Developer for IBM i (RDi) Introduction to RDi

Rational Developer for IBM i (RDi) Introduction to RDi IBM Software Group Rational Developer for IBM i (RDi) Introduction to RDi Featuring: Creating a connection, setting up the library list, working with objects using Remote Systems Explorer. Last Update:

More information

VTLBackup4i. Backup your IBM i data to remote location automatically. Quick Reference and Tutorial. Version 02.00

VTLBackup4i. Backup your IBM i data to remote location automatically. Quick Reference and Tutorial. Version 02.00 VTLBackup4i Backup your IBM i data to remote location automatically Quick Reference and Tutorial Version 02.00 Manufacture and distributed by VRTech.Biz LTD Last Update:16.9.2013 Contents 1. About VTLBackup4i...

More information

Installing GFI MailEssentials

Installing GFI MailEssentials Installing GFI MailEssentials Introduction to installing GFI MailEssentials This chapter shows you how to install and configure GFI MailEssentials. GFI MailEssentials can be installed in two ways: Installation

More information

Sample copy. Introduction To WebLogic Server Property of Web 10.3 Age Solutions Inc.

Sample copy. Introduction To WebLogic Server Property of Web 10.3 Age Solutions Inc. Introduction To WebLogic Server Property of Web 10.3 Age Solutions Inc. Objectives At the end of this chapter, participants should be able to: Understand basic WebLogic Server architecture Understand the

More information

Magic Submitter Questions and Answers

Magic Submitter Questions and Answers Magic Submitter Questions and Answers Contents Troubleshooting... 3 1. Where can I found educational materials on how to use Magic Submitter?... 3 2. Problems with Magic Submitter registration... 3 3.

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

Software Version: 9.8

Software Version: 9.8 X - A n a l y s i s Installation & Upgrade Guide Software Version: 9.8 T h i s p r o d u c t r e q u i r e s a s e c u r i t y c o d e t o a c t i v a t e i t. F o r S e c u r i t y C o d e, p l e a s

More information

EVALUATION ONLY. WA2088 WebSphere Application Server 8.5 Administration on Windows. Student Labs. Web Age Solutions Inc.

EVALUATION ONLY. WA2088 WebSphere Application Server 8.5 Administration on Windows. Student Labs. Web Age Solutions Inc. WA2088 WebSphere Application Server 8.5 Administration on Windows Student Labs Web Age Solutions Inc. Copyright 2013 Web Age Solutions Inc. 1 Table of Contents Directory Paths Used in Labs...3 Lab Notes...4

More information

Installation and Administration Guide

Installation and Administration Guide Installation and Administration Guide Product Version: 4.0.0 Publication date: 11/29/2011 Copyright 2007-2011, LINOMA SOFTWARE LINOMA SOFTWARE is a division of LINOMA GROUP, Inc. Table of Contents Introduction...

More information

Help. F-Secure Online Backup

Help. F-Secure Online Backup Help F-Secure Online Backup F-Secure Online Backup Help... 3 Introduction... 3 What is F-Secure Online Backup?... 3 How does the program work?... 3 Using the service for the first time... 3 Activating

More information

Whitepaper - WebSphere Development Studio for iseries V5R2

Whitepaper - WebSphere Development Studio for iseries V5R2 Whitepaper - WebSphere Development Studio for V5R2 David Slater Worldwide Market Manager Application Development IBM The first release of WebSphere Development Studio for represented a major shift in the

More information

ERserver. iseries. Printing

ERserver. iseries. Printing ERserver iseries Printing ERserver iseries Printing Copyright International Business Machines Corporation 1998, 2001. All rights reserved. US Government Users Restricted Rights Use, duplication or disclosure

More information

Troubleshooting / FAQ

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

More information

Author: Ryan J Adams. Overview. Policy Based Management. Terminology

Author: Ryan J Adams. Overview. Policy Based Management. Terminology Author: Ryan J Adams Overview We will cover what Policy Based Management is and how you can leverage its power to better manage your environment. With PBM we'll see what it can and cannot do to help you

More information

Robot CONSOLE 6 User Guide

Robot CONSOLE 6 User Guide Robot CONSOLE 6 User Guide Copyright Information Copyright HelpSystems, LLC. All rights reserved. Robot is a division of HelpSystems. www.helpsystems.com/robot U.S.: +1 952-933-0609 Outside the U.S.: +44

More information

DigiDelivery Client Quick Start

DigiDelivery Client Quick Start DigiDelivery Client Quick Start Installing the DigiDelivery Client To download and install the DigiDelivery client software: 1 Launch your Web browser and navigate to www.digidesign.com/digidelivery/clients.

More information

70-685 Q&A. DEMO Version

70-685 Q&A. DEMO Version Pro: Windows 7, Enterprise Desktop Support Technician Q&A DEMO Version Copyright (c) 2010 Chinatag LLC. All rights reserved. Important Note Please Read Carefully For demonstration purpose only, this free

More information

Sendspace Wizard Desktop Tool Step-By-Step Guide

Sendspace Wizard Desktop Tool Step-By-Step Guide Sendspace Wizard Desktop Tool Step-By-Step Guide Copyright 2007 by sendspace.com This publication is designed to provide accurate and authoritative information for users of sendspace, the easy big file

More information

GoAnywhere Director to GoAnywhere MFT Upgrade Guide. Version: 5.0.1 Publication Date: 07/09/2015

GoAnywhere Director to GoAnywhere MFT Upgrade Guide. Version: 5.0.1 Publication Date: 07/09/2015 GoAnywhere Director to GoAnywhere MFT Upgrade Guide Version: 5.0.1 Publication Date: 07/09/2015 Copyright 2015 Linoma Software. All rights reserved. Information in this document is subject to change without

More information

1 Download & Installation... 4. 1 Usernames and... Passwords

1 Download & Installation... 4. 1 Usernames and... Passwords Contents I Table of Contents Part I Document Overview 2 Part II Document Details 3 Part III EventSentry Setup 4 1 Download & Installation... 4 Part IV Configuration 4 1 Usernames and... Passwords 5 2 Network...

More information

Apache Directory Studio. User's Guide

Apache Directory Studio. User's Guide Apache Directory Studio User's Guide Apache Directory Studio: User's Guide Version 1.5.2.v20091211 Copyright 2006-2009 Apache Software Foundation Licensed to the Apache Software Foundation (ASF) under

More information

Installation & Configuration Guide Version 1.0. TekSMTP Version 1.0 - Installation & Configuration Guide

Installation & Configuration Guide Version 1.0. TekSMTP Version 1.0 - Installation & Configuration Guide TekSMTP Installation & Configuration Guide Version 1.0 2013 KaplanSoft - http://www.kaplansoft.com/ 1 Document Revision 1.0 http://www.kaplansoft.com/ TekSMTP is built by Yasin KAPLAN Read Readme.txt for

More information

How To Install An Aneka Cloud On A Windows 7 Computer (For Free)

How To Install An Aneka Cloud On A Windows 7 Computer (For Free) MANJRASOFT PTY LTD Aneka 3.0 Manjrasoft 5/13/2013 This document describes in detail the steps involved in installing and configuring an Aneka Cloud. It covers the prerequisites for the installation, the

More information

Microsoft Live@edu. The next generation platform for student collaboration and communication

Microsoft Live@edu. The next generation platform for student collaboration and communication Microsoft Live@edu The next generation platform for student collaboration and communication Introducing Microsoft Live@edu. It s free, familiar, reliable Windows Live Hotmail with your organization s name

More information

IceBreak FileShare. Quick Guide. File sharing with workflow management

IceBreak FileShare. Quick Guide. File sharing with workflow management IceBreak FileShare Quick Guide File sharing with workflow management on IBM i 2 IceBreak FileShare Content IceBreak FileShare... 3 Features... 4 Requirements... 6 Limitations... 6 Test sites... 6 Install

More information

FileMaker 8. Installing FileMaker 8 ODBC and JDBC Client Drivers

FileMaker 8. Installing FileMaker 8 ODBC and JDBC Client Drivers FileMaker 8 Installing FileMaker 8 ODBC and JDBC Client Drivers 2004-2005 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark

More information

WebSphere MQ FTP client Version 1.3

WebSphere MQ FTP client Version 1.3 Version 1.3 July 13 th, 2003 Arjan van Vught e-business Hosting Watsonweg 2 1423 ND Uithoorn The Netherlands avv@nl.ibm.com Property of IBM Take Note! Before using this report be sure to read the general

More information

1. GridGain In-Memory Accelerator For Hadoop. 2. Hadoop Installation. 2.1 Hadoop 1.x Installation

1. GridGain In-Memory Accelerator For Hadoop. 2. Hadoop Installation. 2.1 Hadoop 1.x Installation 1. GridGain In-Memory Accelerator For Hadoop GridGain's In-Memory Accelerator For Hadoop edition is based on the industry's first high-performance dual-mode in-memory file system that is 100% compatible

More information

Shipbeat Magento Module. Installation and user guide

Shipbeat Magento Module. Installation and user guide Shipbeat Magento Module Installation and user guide This guide explains how the Shipbeat Magento Module is installed, used and uninstalled from your Magento Community Store. If you have questions or need

More information

How To Run A Hello World On Android 4.3.3 (Jdk) On A Microsoft Ds.Io (Windows) Or Android 2.7.3 Or Android 3.5.3 On A Pc Or Android 4 (

How To Run A Hello World On Android 4.3.3 (Jdk) On A Microsoft Ds.Io (Windows) Or Android 2.7.3 Or Android 3.5.3 On A Pc Or Android 4 ( Developing Android applications in Windows Below you will find information about the components needed for developing Android applications and other (optional) software needed to connect to the institution

More information

SmartWatch Eco/Eco Compact

SmartWatch Eco/Eco Compact SmartWatch Eco/Eco Compact Digital Video Recorders SmartWatch Eco SmartWatch Eco Compact Mobile Application Installation & Operation Manual Table of Contents Introduction...3 Installation and Operation

More information

Blue Touch Online FAQs for Software Downloads

Blue Touch Online FAQs for Software Downloads P a g e 1 Blue Touch Online FAQs for Software Downloads About the Download Service Blue Touch Online FAQs for Software Downloads... 1 What is the Download Service?... 2 What version of Internet Explorer

More information

ABB solar inverters. User s manual ABB Remote monitoring portal

ABB solar inverters. User s manual ABB Remote monitoring portal ABB solar inverters User s manual ABB Remote monitoring portal List of related manuals Title ABB Remote monitoring portal User s manual NETA-01 Ethernet adapter module User s manual Code (English) 3AUA0000098904

More information

Getting Started with PRTG Network Monitor 2012 Paessler AG

Getting Started with PRTG Network Monitor 2012 Paessler AG Getting Started with PRTG Network Monitor 2012 Paessler AG All rights reserved. No parts of this work may be reproduced in any form or by any means graphic, electronic, or mechanical, including photocopying,

More information

DSI File Server Client Documentation

DSI File Server Client Documentation Updated 11/23/2009 Page 1 of 10 Table Of Contents 1.0 OVERVIEW... 3 1.0.1 CONNECTING USING AN FTP CLIENT... 3 1.0.2 CONNECTING USING THE WEB INTERFACE... 3 1.0.3 GETTING AN ACCOUNT... 3 2.0 TRANSFERRING

More information

Table of contents Introduction. 11-About it. 12-Prerequisites. 13-Installation

Table of contents Introduction. 11-About it. 12-Prerequisites. 13-Installation by Giovanni B. Perotti (Italy) 1. 2. 3. 4. 5. Table of contents Introduction 11. About it 12. Prerequisites 13. Installation Set up 21. Defining an image catalog 22. Defining a virtual tape drive 23. Loading

More information

Networking File Transfer Protocol

Networking File Transfer Protocol System i Networking File Transfer Protocol Version 5 Release 4 System i Networking File Transfer Protocol Version 5 Release 4 Note Before using this information and the product it supports, read the information

More information

DocuShare Installation Guide

DocuShare Installation Guide DocuShare Installation Guide Publication date: May 2009 This document supports DocuShare Release 6.5/DocuShare CPX Release 6.5 Prepared by: Xerox Corporation DocuShare Business Unit 3400 Hillview Avenue

More information

BusinessLink Software Support

BusinessLink Software Support BusinessLink Software Support V2R5 Upgrade Instructions Existing SSL Installations SSL Certificate Conversion Pre-Upgrade Table of Contents Overview... 1 Requirements For Certificate Conversion... 1 OS/400

More information

Application Notes for Packaging and Deploying Avaya Communications Process Manager Sample SDK Web Application on a JBoss Application Server Issue 1.

Application Notes for Packaging and Deploying Avaya Communications Process Manager Sample SDK Web Application on a JBoss Application Server Issue 1. Avaya Solution & Interoperability Test Lab Application Notes for Packaging and Deploying Avaya Communications Process Manager Sample SDK Web Application on a JBoss Application Server Issue 1.0 Abstract

More information

IBM i Version 7.2. Systems management Advanced job scheduler

IBM i Version 7.2. Systems management Advanced job scheduler IBM i Version 7.2 Systems management Advanced job scheduler IBM i Version 7.2 Systems management Advanced job scheduler Note Before using this information and the product it supports, read the information

More information

8.7. NET SatisFAXtion Email Gateway Installation Guide. For NET SatisFAXtion 8.7. Contents

8.7. NET SatisFAXtion Email Gateway Installation Guide. For NET SatisFAXtion 8.7. Contents NET SatisFAXtion Email Gateway Installation Guide For NET SatisFAXtion 8.7 Contents Install Microsoft Virtual SMTP Server 2 XP and 2003 2 2008 and 2008 R2 2 Windows 7 2 Upgrade Path 2 Configure Microsoft

More information

Deploying BitDefender Client Security and BitDefender Windows Server Solutions

Deploying BitDefender Client Security and BitDefender Windows Server Solutions Deploying BitDefender Client Security and BitDefender Windows Server Solutions Quick Install Guide Copyright 2010 BitDefender; 1. Installation Overview Thank you for selecting BitDefender Business Solutions

More information

Magaya Software Installation Guide

Magaya Software Installation Guide Magaya Software Installation Guide MAGAYA SOFTWARE INSTALLATION GUIDE INTRODUCTION Introduction This installation guide explains the system requirements for installing any Magaya software, the steps to

More information

JAVA WEB START OVERVIEW

JAVA WEB START OVERVIEW JAVA WEB START OVERVIEW White Paper May 2005 Sun Microsystems, Inc. Table of Contents Table of Contents 1 Introduction................................................................. 1 2 A Java Web Start

More information

Mobile View Software User s Manual

Mobile View Software User s Manual Mobile View Software User s Manual Version 3.7.1 / 3.7.2 Table of Contents 1. Overview...2 1.1 System Requirement...2 1.2 Limitation...2 2. Install the Mobile View Software...3 2.1 Installation on a JAVA

More information

Getting started with OWASP WebGoat 4.0 and SOAPUI.

Getting started with OWASP WebGoat 4.0 and SOAPUI. Getting started with OWASP WebGoat 4.0 and SOAPUI. Hacking web services, an introduction. Version 1.0 by Philippe Bogaerts Philippe.Bogaerts@radarhack.com www.radarhack.com Reviewed by Erwin Geirnaert

More information

ERserver. iseries. Secure Sockets Layer (SSL)

ERserver. iseries. Secure Sockets Layer (SSL) ERserver iseries Secure Sockets Layer (SSL) ERserver iseries Secure Sockets Layer (SSL) Copyright International Business Machines Corporation 2000, 2002. All rights reserved. US Government Users Restricted

More information

How to export a spool file from an AS/400 and export to a Windows PC

How to export a spool file from an AS/400 and export to a Windows PC How to export a spool file from an AS/400 and export to a Windows PC This instruction manual is intended for customers working with AS/400 host systems and Lexmark printers capable of printing from an

More information

FEATURE COMPARISON BETWEEN WINDOWS SERVER UPDATE SERVICES AND SHAVLIK HFNETCHKPRO

FEATURE COMPARISON BETWEEN WINDOWS SERVER UPDATE SERVICES AND SHAVLIK HFNETCHKPRO FEATURE COMPARISON BETWEEN WINDOWS SERVER UPDATE SERVICES AND SHAVLIK HFNETCHKPRO Copyright 2005 Shavlik Technologies. All rights reserved. No part of this document may be reproduced or retransmitted in

More information

TANDBERG MANAGEMENT SUITE 10.0

TANDBERG MANAGEMENT SUITE 10.0 TANDBERG MANAGEMENT SUITE 10.0 Installation Manual Getting Started D12786 Rev.16 This document is not to be reproduced in whole or in part without permission in writing from: Contents INTRODUCTION 3 REQUIREMENTS

More information

MS Enterprise Library 5.0 (Logging Application Block)

MS Enterprise Library 5.0 (Logging Application Block) International Journal of Scientific and Research Publications, Volume 4, Issue 8, August 2014 1 MS Enterprise Library 5.0 (Logging Application Block) Anubhav Tiwari * R&D Dept., Syscom Corporation Ltd.

More information

FileMaker 14. ODBC and JDBC Guide

FileMaker 14. ODBC and JDBC Guide FileMaker 14 ODBC and JDBC Guide 2004 2015 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and FileMaker Go are trademarks of FileMaker,

More information

Frequently Asked Questions: Cisco Jabber 9.x for Android

Frequently Asked Questions: Cisco Jabber 9.x for Android Frequently Asked Questions Frequently Asked Questions: Cisco Jabber 9.x for Android Frequently Asked Questions (FAQs) 2 Setup 2 Basics 4 Connectivity 8 Calls 9 Contacts and Directory Search 14 Voicemail

More information

PaperCut Payment Gateway Module - RBS WorldPay Quick Start Guide

PaperCut Payment Gateway Module - RBS WorldPay Quick Start Guide PaperCut Payment Gateway Module - RBS WorldPay Quick Start Guide This guide is designed to supplement the Payment Gateway Module documentation and provides a guide to installing, setting up and testing

More information

User Guide. Copyright 2003 Networks Associates Technology, Inc. All Rights Reserved.

User Guide. Copyright 2003 Networks Associates Technology, Inc. All Rights Reserved. Copyright 2003 Networks Associates Technology, Inc. All Rights Reserved. Table of Contents Getting Started... 4 New Features... 4 System Requirements... 4 Configuring Microsoft Internet Explorer... 4 Configuring

More information

SMTP POP3 SETUP FOR EMC DOCUMENTUM eroom

SMTP POP3 SETUP FOR EMC DOCUMENTUM eroom White Paper SMTP POP3 SETUP FOR EMC DOCUMENTUM eroom Abstract This white paper explains how to setup SMTP POP3 on Internet Information Services (IIS). This guide also explains about how to install and

More information

WS_FTP: The smarter way to transfer files

WS_FTP: The smarter way to transfer files WS_FTP: The smarter way to transfer files DATA WEB PAGES IMAGES VIDEO GRAPHICS WS_FTP: A Complete and Secure Data Management Solution The files that you transfer every day over the Internet are vulnerable

More information

Net Services: File System Monitor

Net Services: File System Monitor Net Services: File System Monitor Settings for ExtremeZ-IP file server volumes...1 Setup of the Net Services server...2 Configuring and testing the Net Services server...3 Installing File System Monitor...4

More information

Avalanche Remote Control User Guide. Version 4.1.3

Avalanche Remote Control User Guide. Version 4.1.3 Avalanche Remote Control User Guide Version 4.1.3 ii Copyright 2012 by Wavelink Corporation. All rights reserved. Wavelink Corporation 10808 South River Front Parkway, Suite 200 South Jordan, Utah 84095

More information

LOG MANAGEMENT Update Log Setup Screen Update Log Options Use Update Log to track edits, adds and deletes Accept List Cancel

LOG MANAGEMENT Update Log Setup Screen Update Log Options Use Update Log to track edits, adds and deletes Accept List Cancel Log Management - Page 22-1 LOG MANAGEMENT There are various log options throughout ZonePro. A log file is a file that store information about changes that have been made while using ZonePro. Log files

More information

Copyright International Business Machines Corporation 2001. All rights reserved. US Government Users Restricted Rights Use, duplication or disclosure

Copyright International Business Machines Corporation 2001. All rights reserved. US Government Users Restricted Rights Use, duplication or disclosure iseries DNS iseries DNS Copyright International Business Machines Corporation 2001. All rights reserved. US Government Users Restricted Rights Use, duplication or disclosure restricted by GSA ADP Schedule

More information

The Auditors Agree!!! SafeNet/i Solves the Need

The Auditors Agree!!! SafeNet/i Solves the Need News Release Auditing IBM i Back Door User Access: BNC National Bank solves new audit requirement with SafeNet/i A New Audit Requirement Like most IBM i shops, BNC National Bank in Bismarck, North Dakota

More information

Mobile application development J2ME U N I T I I

Mobile application development J2ME U N I T I I Mobile application development J2ME U N I T I I Overview J2Me Layered Architecture Small Computing Device requirements Run Time Environment Java Application Descriptor File Java Archive File MIDlet Programming

More information

Configuration Guide. BlackBerry Enterprise Service 12. Version 12.0

Configuration Guide. BlackBerry Enterprise Service 12. Version 12.0 Configuration Guide BlackBerry Enterprise Service 12 Version 12.0 Published: 2014-12-19 SWD-20141219132902639 Contents Introduction... 7 About this guide...7 What is BES12?...7 Key features of BES12...

More information

Android Development Tools for Eclipse

Android Development Tools for Eclipse Android Development Tools for Eclipse Sanjay Shah Khirulnizam Abd Rahman Chapter No. 1 "Installing Eclipse, ADT, and SDK" In this package, you will find: A Biography of the author of the book A preview

More information

Witango Application Server 6. Installation Guide for OS X

Witango Application Server 6. Installation Guide for OS X Witango Application Server 6 Installation Guide for OS X January 2011 Tronics Software LLC 503 Mountain Ave. Gillette, NJ 07933 USA Telephone: (570) 647 4370 Email: support@witango.com Web: www.witango.com

More information

Pendragon Forms Industrial

Pendragon Forms Industrial Pendragon Forms Industrial Version 7 Installation & Reference Guide for Android Devices Contents What Is Pendragon Forms Industrial?... 2 Installing Pendragon Forms Industrial... 2 Installing Pendragon

More information

IOIO for Android Beginners Guide Introduction

IOIO for Android Beginners Guide Introduction IOIO for Android Beginners Guide Introduction This is the beginners guide for the IOIO for Android board and is intended for users that have never written an Android app. The goal of this tutorial is to

More information

Installing GFI MailEssentials

Installing GFI MailEssentials Installing GFI MailEssentials Introduction to installing GFI MailEssentials This chapter explains the procedure on how to install and configure GFI MailEssentials. GFI MailEssentials can be installed in

More information

CompleteView Admin Console Users Guide. Version 3.0.0 Revised: 02/15/2008

CompleteView Admin Console Users Guide. Version 3.0.0 Revised: 02/15/2008 CompleteView Admin Console Users Guide Version 3.0.0 Revised: 02/15/2008 Table Of Contents Configuration... 3 Starting the Admin Console... 3 Adding a Server... 4 Monitoring Server Status... 6 Menus...

More information

Using Microsoft Expression Web to Upload Your Site

Using Microsoft Expression Web to Upload Your Site Using Microsoft Expression Web to Upload Your Site Using Microsoft Expression Web to Upload Your Web Site This article briefly describes how to use Microsoft Expression Web to connect to your Web server

More information

Introduction to Eclipse

Introduction to Eclipse Introduction to Eclipse Overview Eclipse Background Obtaining and Installing Eclipse Creating a Workspaces / Projects Creating Classes Compiling and Running Code Debugging Code Sampling of Features Summary

More information

Minecraft Server Dashboard Users Guide

Minecraft Server Dashboard Users Guide Minecraft Server Dashboard Users Guide navhaxs Minecraft Server Dashboard simplifies your server management experience by replacing all the manual editing of configuration files and console commands with

More information

Netwrix Auditor for Windows Server

Netwrix Auditor for Windows Server Netwrix Auditor for Windows Server Quick-Start Guide Version: 7.0 7/7/2015 Legal Notice The information in this publication is furnished for information use only, and does not constitute a commitment from

More information

How to set up SQL Source Control. The short guide for evaluators

How to set up SQL Source Control. The short guide for evaluators How to set up SQL Source Control The short guide for evaluators Content Introduction Team Foundation Server & Subversion setup Git setup Setup without a source control system Making your first commit Committing

More information

Netwrix Auditor for Exchange

Netwrix Auditor for Exchange Netwrix Auditor for Exchange Quick-Start Guide Version: 8.0 4/22/2016 Legal Notice The information in this publication is furnished for information use only, and does not constitute a commitment from Netwrix

More information

Installation and Administration Guide

Installation and Administration Guide Installation and Administration Guide BlackBerry Enterprise Transporter for BlackBerry Enterprise Service 12 Version 12.0 Published: 2014-11-06 SWD-20141106165936643 Contents What is BES12?... 6 Key features

More information

Configuration Guide BES12. Version 12.1

Configuration Guide BES12. Version 12.1 Configuration Guide BES12 Version 12.1 Published: 2015-04-22 SWD-20150422113638568 Contents Introduction... 7 About this guide...7 What is BES12?...7 Key features of BES12... 8 Product documentation...

More information

STIDistrict Server Replacement

STIDistrict Server Replacement STIDistrict Server Replacement Major Steps Defined This document addresses how to migrate data and applications from an existing STIDistrict (SQL) Server to a new machine. There will be 8 major steps:

More information

Security Service tools user IDs and passwords

Security Service tools user IDs and passwords System i Security Service tools user IDs and passwords Version 5 Release 4 System i Security Service tools user IDs and passwords Version 5 Release 4 Note Before using this information and the product

More information

Error Code Quick Reference Guide Updated 01/28/2015

Error Code Quick Reference Guide Updated 01/28/2015 Error Code Quick Reference Guide Updated 01/28/2015 Note: this list includes all error codes that may appear in TestNav across all states and some may not apply to Minnesota. 1/28/15 v.1.0 2 TestNav 7

More information

ADOBE DRIVE CC USER GUIDE

ADOBE DRIVE CC USER GUIDE ADOBE DRIVE CC USER GUIDE 2 2013 Adobe Systems Incorporated. All rights reserved. Adobe Drive CC User Guide Adobe, the Adobe logo, Creative Cloud, Creative Suite, Illustrator, InCopy, InDesign, and Photoshop

More information

IsItUp Quick Start Manual

IsItUp Quick Start Manual IsItUp - When you need to know the status of your network Taro Software Inc. Website: www.tarosoft.com Telephone: 703-405-4697 Postal address: 8829 110th Lane, Seminole Fl, 33772 Electronic mail: Contact1@tarosoft.com

More information

How to set up a multifunction device or application to send email using Office 365

How to set up a multifunction device or application to send email using Office 365 How to set up a multifunction device or application to send email using Office 365 Exchange Online 232 out of 424 rated this helpful Applies to: Exchange Online Topic Last Modified: 2015 10 14 You can

More information

8.6. NET SatisFAXtion Email Gateway Installation Guide. For NET SatisFAXtion 8.6. Contents

8.6. NET SatisFAXtion Email Gateway Installation Guide. For NET SatisFAXtion 8.6. Contents NET SatisFAXtion Email Gateway Installation Guide For NET SatisFAXtion 8.6 Contents 1.0 - Install Microsoft Virtual SMTP Server 2 XP and 2003 2 2008 and 2008 R2 2 Windows 7 2 Upgrade Path 2 Configure Microsoft

More information

Registry Tuner. Software Manual

Registry Tuner. Software Manual Registry Tuner Software Manual Table of Contents Introduction 1 System Requirements 2 Frequently Asked Questions 3 Using the Lavasoft Registry Tuner 5 Scan and Fix Registry Errors 7 Optimize Registry

More information

Configuration Guide BES12. Version 12.3

Configuration Guide BES12. Version 12.3 Configuration Guide BES12 Version 12.3 Published: 2016-01-19 SWD-20160119132230232 Contents About this guide... 7 Getting started... 8 Configuring BES12 for the first time...8 Configuration tasks for managing

More information

Installing Java. Table of contents

Installing Java. Table of contents Table of contents 1 Jargon...3 2 Introduction...4 3 How to install the JDK...4 3.1 Microsoft Windows 95... 4 3.1.1 Installing the JDK... 4 3.1.2 Setting the Path Variable...5 3.2 Microsoft Windows 98...

More information

Client Access Express for Windows - Setup

Client Access Express for Windows - Setup iseries Client Access Express for Windows - Setup Version 5 Release 1 Modification 0 SC41-5507-02 iseries Client Access Express for Windows - Setup Version 5 Release 1 Modification 0 SC41-5507-02 Note

More information