WHITEPAPER Reference Architectures for Portal-based Rich Internet Applications

Size: px
Start display at page:

Download "WHITEPAPER Reference Architectures for Portal-based Rich Internet Applications"

Transcription

1 Authr: Sven Rieger Created n: Versin: 1.0 Rich Internet (RIAs) are HTML5-based applicatins with a desktp-like lk&feel which run inside a web brwser. The Micrsft Office applicatins Wrd, Excel, PwerPint and OneNte accessible via utlk.cm (as Office 365) are well-knwn examples. RIAs make yu think yu were using a desktp applicatin. As they are delivered by way f a web brwser, they als run n mbile devices such as tablets r smartphnes. This high degree f flexibility is quite an advantage, fr instance fr engineering systems r visualizatins. The applicatins are prvided n a web server r, in case f hybrid applicatins, n the crrespnding platfrms. In a hybrid applicatin, the HTML5 applicatin runs inside a natively implemented framewrk, which barely can be differentiated if at all frm a desktp applicatin r native app. Platfrm-independence is anther majr benefit f HTML5-based implementatins. As all cmmn platfrms supprt HTML and JavaScript, the applicatin can run n varius platfrms withut any prting effrt. Platfrm-dependent implementatins are required nly fr calling platfrm-specific functins, fr example t access hardware units such as a camera, Bluetth r similar. If an applicatin f this kind cnsists f several mdules like e.g. visualizatin and reprting, it is apprpriate t use a prtal-based apprach. The basic idea behind it is that the applicatin is made up f a framewrk called the prtal, int which the mdules are integrated. Figure 1 shws an example UI. Upn lgging n, the user can select frm a chice f different applicatin mdules. Figure 1: Rich Internet Applicatin (RIA) Realized Using M&M Cmpnents 1 / 8

2 use use use Data Exchange WHITEPAPER Structure Prtal-based applicatins basically have the same structure. Therefre, it makes sense t define a reference architecture fr them. Figure 2 shws the structure f the crrespnding M&M reference architecture. Usually, such an applicatin is split int the Rich Internet Applicatin (RIA) and the server. The HTML5-based RIA runs inside the client brwser and delivers the UI fr the prtal applicatin. The server prvides the crrespnding interfaces fr access t data surces like the database. Rich Internet Applicatin (RIA) Custm Applicatin M&M Cmpnents Server Cmmunicatin Qxd Server Server Interface Business Lgic Data Access Lgic Database Service Interface Other Surce Figure 2: Rich Internet Applicatin Reference Architecture Overview 2 / 8

3 HTML5 Rich Internet Applicatin What des the architecture n the client side lk like? The architecture described here is based n the Qxd framewrk develped by 1&1. Qxd is as JavaScript framewrk fr building Rich Internet. In additin t a library fr the graphi cal user interface (GUI) Qxd als prvides a framewrk fr bject-riented JavaScript prgramming. Custm Applicatin Prtal Mdule 1 Presentatin Business Lgic Cmmunicatin Mdule n Presentatin Business Lgic Cmmunicatin Server Cmmunicatin Figure 3: Custm Applicatin Basic Structure Figure 3 shws the basic structure f an individual prtal-based applicatin. Instead f the knwn data access layer the Server Cmmunicatin layer cnnects t the server and encapsulates the cmmunicatin infrastructure. The central Cmmunicatin layer is used by all mdules. The mdules are independent f each ther. Each mdule has its wn thin Cmmunicatin layer cmmunicating with the server via the Server Cmmunicatin layer. In rder that the applicatin has the same lk&feel as a desktp applicatin, it is necessary t minimize remte access t the server. Fr this reasn, the individual mdules have a business lgic layer, which hsts the entire business lgic and can run n the client side as well. Inside the Presentatin layer the MVC pattern is deplyed. 3 / 8

4 M&M Cmpnents Applicatin Prtal Mdule 1... Mdule n M&M Cmpnents mm.prtal mm.cre mm.ui Figure 4: Prtal Structure with M&M Cmpnents M&M Cmpnents were develped using Qxd. They are intended t make repeatedly used cmpnents available in a library. M&M Cmpnents cmprise bth infrastructure cmpnents fr creating prtal-based applicatins and UI cmpnents such as a ribbn, tl windws r an SVG cmpnent. The latter can be used, fr example, fr prcess visualizatin. Figure 4 shws a prtal applicatin design based n M&M Cmpnents. The gray-clred cmpnents are specific t each prtal applicatin. They are based n the M&M Cmpnents' basic implementatin which determines the basic structure. The mm.prtal package prvides a basic framewrk fr prtal-based applicatins, independent f the graphical representatin. Hw the prtal and the mdules are displayed depends n the implementatin f the mdule and prtal renderers. General basic functins such as server cmmunicatin are prvided by the mm.cre pack age. Server The server prvides the data and functins requiring central prcessing, amng them access t a central database r t ther cmmnly used resurces. The server architecture and design differ frm ne applicatin t anther. This is especially due t the fact that data prvided by the server may cme frm different data surces. Figure 2 shws what the architecture f such a server may lk like. The Server Interface is the interface f the server t the HTML5 RIA. The Business Lgic and Data Access Lgic are subrdinated t it. As can be seen in Figure 2, the data may cme, fr example, frm a database, a service r any ther data surce. It is als pssible that a server receives data frm several data surces and merges them at runtime. This is part f the Server Business Lgic, which shuld nt be 4 / 8

5 cnfunded with the Client Business Lgic. The Server Business Lgic is intended fr cnditining the data s that they cmply with the cmmunicatin interface t the client. Basically, the server technlgy base can be selected as required. Whether the server is implemented as a part f an existing applicatin r as a stand-alne applicatin must be decided individually fr each case. Hwever, it is imprtant that a server capable f delivering the necessary data t the HTML5 applicatin is available. In an already realized prject the server has been implemented n a Micrsft.Net framewrk using C#. In this apprach, the server is a kind f middleware cllecting and cnditining data frm ther data surces and prviding them t the RIA. An architecture similar t that shwn in Figure 2 has been used fr this. Embedded device as server It is als pssible t use an embedded device e.g. a field device (sensr) as the server. In this case, a web server, which delivers the HTML page and the JavaScript files, must be available in the device. The applicatin itself runs in the client brwser. In rder t allw displaying the embedded device's current data, the embedded device must als prvide an interface t the HTML5 applicatin t access the data. Client-server cmmunicatin It must be taken int accunt fr client-server cmmunicatin that it was riginally nt intended t make calls frm the server t the client. Hwever, this is essential fr RIAs, as a client must be able t respnd t data changes frm the server. Current prcess values that are t be displayed by the client are an example. Varius technlgies are available: WebSckets, Server Sent Events and Lng Plling. The Micrsft SignalR library cmbines this chice f technlgies and selects the apprpriate technlgy supprted by the respective brwser. On the client side SignalR ffers the crrespnding JavaScript implementatin, whereas a C# library is available fr the server side. Fr the client side cmmunicatin yu shuld additinally take int accunt that the number f simultaneusly pen links in the brwser is limited. In this architecture the limitatin prblem is slved by using the central Cmmunicatin layer. Only ne link is pened and can be used by all mdules. Basis fr hybrid apps As already discussed abve, there is n majr difference between an HTML5 -based applicatin and a cnventinal desktp applicatin frm the user's pint f view. A small, platfrm-specific frame applicatin makes the HTML5 applicatin lk like a native applicatin. In a Windws envirnment such an applicatin will use Chrmium. A native app fr mbile devices can be built using Crdva. As cmpared t applicatins running in the brwser, a native frame applicatin prvides ne majr benefit: access t a hardware unit like a camera is pssible. Bth Crdva and Chrmium ffer the crrespnding functins and can als be enhanced with wn functins. 5 / 8

6 Summary and cnclusin The reference architecture described in this paper prvides a basic framewrk architecture fr prtal-based Rich Internet (RIAs). When develping a new RIA, this basic framewrk must be filled with applicatin-specific functin blcks such as access t data surces. The functin blck design and implementatin, hwever, are nt prvided by the reference architecture. Nevertheless, the reference architecture facilitates the building prcess as it defines the frame. The apprach t prvide the lgical structures withut actually defining the graphical user interface makes the architecture quite flexible. The display f the graphical user interface is defined by implementing renderers fr the prtal and fr the mdules. SignalR facilitates cmmunicatin between HTML5 applicatins and Micrsft.NET based servers. Hw back calls frm the server t the HTML5 applicatins are executed is selected by SignalR n the basis f the envirnment given at runtime. An HTML5 applicatin can als be deplyed as a native applicatin using Chrmium r Crdva. This ffers the pprtunity t access the crrespnding hardware unit, e.g. a camera. Own functins that can be called frm the JavaScript side are als pssible. Technlgies used Technlgy / Cmpnent Qxd SignalR Chrmium Crdva URL Benefits and limitatins Benefits Limitatins Deplyment n desktps r mbile devices and inside web brwsers Familiar desktp lk&feel n the basis f platfrm independent web technlgies M&M Cmpnents prvide basic framewrk and cmpnents. Access t hardware interfaces nly pssible when using apprpriate wrappers. Brwser incmpatibility prblems (minimized by Qxd) 6 / 8

7 Use cases Prtal-based applicatins with desktp lk&feel with multiple runtime envirnments (desktp, mbile devices and web brwsers) Fr example prcess visualizatin, field device parameterizatin and diagnstics, engineering systems, plant reprting r similar. 7 / 8

8 M&M Cmpany Prfile M&M Sftware stands fr innvatin, cmpetency and quality. Being mre than 25 years in business, M&M has gained the reputatin as a reliable partner fr many renwned custmers wrldwide. Our vast industry knw-hw is reflected in a wide range f innvative and unique sftware slutins that we have develped fr and tgether with ur custmers in the factry - and prcess autmatin, maritime technlgy, mechanical eng ineering, building autmatin and energy technlgy. M&M is the cmpetent service prvider fr all matters cncerning sftware prducts in the industrial autmatin. Our service prtfli includes Management & Technlgy Cnsulting, Sftware Develpment, Quality Assurance, IT Operatins & Services and Sftware Maintenance & Supprt. We mainly fcus n slutins fr Human Machine Interfaces (HMI), device integratin, engineering systems and web applicatins. The cmpany s headquarter is in St. Gergen in Germany s Black Frest regin. Our subsidiary in Suzhu near Shanghai/China was established in There we d nt nly serve the upcming markets in Asia, but als ffer ffshre develpment services t ur custmers in Eurpe and America in prven M&M quality t significant price advantages. At the end f 2012 M&M established its subsidiary in Hanver. This lcatin enables us t serve ur custmers in the nrth f Germany even better. M&M Sftware GmbH +49(0)7724/ Industriestr. 5 Fax +49(0)7724/ St. Gergen inf@mm-sftware.cm GERMANY Internet: 8 / 8 Registered Office: St.Gergen, Germany Registry Curt: Freiburg HRB Directrs: Erwin Mueller, Klaus Huebschle, Andreas Berngen

The AccuSpeechMobile solution is a fully mobile voice-enabling software solution, that noninvasively. existing mobile enterprise wide applications.

The AccuSpeechMobile solution is a fully mobile voice-enabling software solution, that noninvasively. existing mobile enterprise wide applications. 1. Questin: Yu say that yu have an innvative mbile apprach t deplying vice prductivity t enterprise applicatins. Hw is AccuSpeechMbile different frm existing vice architectures? Answer: When ne lks at

More information

Level 1 Technical. RealPresence Web Suite and Web Suite Pro. Contents

Level 1 Technical. RealPresence Web Suite and Web Suite Pro. Contents Level 1 Technical RealPresence Web Suite and Web Suite Pr Cntents 1 - Glssary... 2 2 Features... 3 RealPresence Platfrm integratin... 3 RealPresence Web Suite Sftware... 3 Sftware Keys... 3 3 - Web Client

More information

Gateway Agent - First Amendment to the High Level Design Document

Gateway Agent - First Amendment to the High Level Design Document Gateway Agent - First Amendment t the High Level Design Dcument Scpe The Gateway Agent HLD thrugh update 1 assumes that nly the Cntrl App, while cnnected t the prximal netwrk, can initiate new clud services.

More information

Best Practices for Optimizing Performance and Availability in Virtual Infrastructures

Best Practices for Optimizing Performance and Availability in Virtual Infrastructures Best Practices fr Optimizing Perfrmance and Availability in Virtual Infrastructures www.nimsft.cm Best Practices fr Optimizing Perfrmance and Availability in Virtual Infrastructures PAGE 2 Table f Cntents

More information

Intel Hybrid Cloud Management Portal Update FAQ. Audience: Public

Intel Hybrid Cloud Management Portal Update FAQ. Audience: Public Intel Hybrid Clud Management Prtal Update FAQ Audience: Public Purpse: Prepare fr the launch f the Intel Hybrid Clud Platfrm multi-user/multi-tier update Versin: Final FAQs What s new in the Intel Hybrid

More information

Case Study Best mcommerce marketplace system

Case Study Best mcommerce marketplace system Case Study Best mcmmerce marketplace system www.brainvire.cm 2015 Brainvire Inftech Pvt. Ltd Page 1 f 1 Client Requirement The client is ne f the mst experienced merchandize selling cmpany wners wh has

More information

Feature Guide. Virto Commerce Platform

Feature Guide. Virto Commerce Platform Feature Guide Virt Cmmerce Platfrm Fr mre infrmatin abut Virt Cmmerce, visit virtcmmerce.cm r call + 1 323 570 5588 t speak t a representative. Virt Cmmerce Platfrm: Fundatin fr Yur Business Virt Cmmerce

More information

Integrating With incontact dbprovider & Screen Pops

Integrating With incontact dbprovider & Screen Pops Integrating With incntact dbprvider & Screen Pps incntact has tw primary pints f integratin. The first pint is between the incntact IVR (script) platfrm and the custmer s crprate database. The secnd pint

More information

How Does Cloud Computing Work?

How Does Cloud Computing Work? Hw Des Clud Cmputing Wrk? Carl Mazzanti, CEO, emazzanti Technlgies IT Supprt and Clud Cmputing Services fr Small Business Hbken, NJ and NYC, 201-360- 4400 Owner [Pick the date] Hw des Clud Cmputing Wrk?

More information

Table of Contents. This document is for informational purposes only. MICROSOFT MAKES NO WARRANTIES, EXPRESS OR IMPLIED, IN THIS SUMMARY.

Table of Contents. This document is for informational purposes only. MICROSOFT MAKES NO WARRANTIES, EXPRESS OR IMPLIED, IN THIS SUMMARY. Table f Cntents Tp Pricing and Licensing Questins... 2 Why shuld custmers be excited abut Micrsft SQL Server 2012?... 2 What are the mst significant changes t the pricing and licensing fr SQL Server?...

More information

Professional Leaders/Specialists

Professional Leaders/Specialists Psitin Prfile Psitin Lcatin Reprting t Jb family Band BI/Infrmatin Manager Wellingtn Prfessinal Leaders/Specialists Band I Date February 2013 1. POSITION PURPOSE The purpse f this psitin is t: Lead and

More information

Delivering Business Value Through IT Cost Transparency Using IT CMF

Delivering Business Value Through IT Cost Transparency Using IT CMF Office f the CIO Delivering Business Value Thrugh IT Cst Transparency Using IT CMF Sharad Jshi Vice President, IT Business Management March 24 th, 2015 Abut the Depsitry Trust and Clearing Crpratin (DTCC)

More information

Gartner Magic Quadrant Salesforce Automation 2009

Gartner Magic Quadrant Salesforce Automation 2009 Gartner Magic Quadrant Salesfrce Autmatin 2009 Sage CRM Slutins Opinin Brief Released July 24, 2009 Q. What is the Gartner Magic Quadrant (GMQ) fr SFA? A. The Gartner Magic Quadrant fr SFA is an analyst

More information

Case Study. Sonata develops. comprehensive BI Application for a leading provider of Animal Nutrition Solutions. Ananthakrishnan

Case Study. Sonata develops. comprehensive BI Application for a leading provider of Animal Nutrition Solutions. Ananthakrishnan Case Study Ananthakrishnan Snata develps J Architect, Snata Sftware cmprehensive BI Applicatin fr a leading prvider f Animal Nutritin Slutins Snata Sftware Limited www.snata-sftware.cm www.snata-sftware.cm

More information

Licensing the Core Client Access License (CAL) Suite and Enterprise CAL Suite

Licensing the Core Client Access License (CAL) Suite and Enterprise CAL Suite Vlume Licensing brief Licensing the Cre Client Access License (CAL) Suite and Enterprise CAL Suite Table f Cntents This brief applies t all Micrsft Vlume Licensing prgrams. Summary... 1 What s New in This

More information

Port Manager. Microsoft Dynamics CRM for Ports

Port Manager. Microsoft Dynamics CRM for Ports Prt Manager Micrsft Dynamics CRM fr Prts February 2015 Overview Celedn Partners Prt Manager encapsulates the functinality f many prt related prcesses int an easy t learn and easy t use tl. The slutin leverages

More information

Innovate faster with a cloud-enabled enterprise. Dirk Basenach, SAP SE, HANA Cloud Platform November 2 nd, 2015

Innovate faster with a cloud-enabled enterprise. Dirk Basenach, SAP SE, HANA Cloud Platform November 2 nd, 2015 Innvate faster with a clud-enabled enterprise Dirk Basenach, SAP SE, HANA Clud Platfrm Nvember 2 nd, 2015 Innvate r die Mre than 60% f CEOs expect 15-50% f their earnings grwth in the next 5 years t cme

More information

CSC IT practix Recommendations

CSC IT practix Recommendations CSC IT practix Recmmendatins CSC Healthcare 28th January 2014 Versin 3 www.csc.cm/glbalhealthcare Cntents 1 Imprtant infrmatin 3 2 IT Specificatins 4 2.1 Wrkstatins... 4 2.2 Minimum Server with 1-5 wrkstatins

More information

The Importance Advanced Data Collection System Maintenance. Berry Drijsen Global Service Business Manager. knowledge to shape your future

The Importance Advanced Data Collection System Maintenance. Berry Drijsen Global Service Business Manager. knowledge to shape your future The Imprtance Advanced Data Cllectin System Maintenance Berry Drijsen Glbal Service Business Manager WHITE PAPER knwledge t shape yur future The Imprtance Advanced Data Cllectin System Maintenance Cntents

More information

LaunchPad is your personal cloud desktop giving access to school from anywhere.

LaunchPad is your personal cloud desktop giving access to school from anywhere. LaunchPad Persnal Clud Desktp Persnal Clud Desktp fr educatin ClassLink LaunchPad is the first K-12 persnal clud desktp that gives teachers and students access t all their applicatins and files fr anywhere,

More information

Getting Started Guide

Getting Started Guide AnswerDash Resurces http://answerdash.cm Cntextual help fr sales and supprt Getting Started Guide AnswerDash is cmmitted t helping yu achieve yur larger business gals. The utlined pre-launch cnsideratins

More information

iclarity is web based software that allows both staff and partners (customers and suppliers) real time access to the systems.

iclarity is web based software that allows both staff and partners (customers and suppliers) real time access to the systems. iclarity CRM and Case Management Slutins Framewrk Hrizn Sftware Slutins (HSS) has develped and evlved its iclarity CRM and Case Management Slutins framewrk with rapid develpment and ease f deplyment high

More information

White Paper for Mobile Workforce Management and Monitoring Copyright 2014 by Patrol-IT Inc. www.patrol-it.com

White Paper for Mobile Workforce Management and Monitoring Copyright 2014 by Patrol-IT Inc. www.patrol-it.com White Paper fr Mbile Wrkfrce Management and Mnitring Cpyright 2014 by Patrl-IT Inc. www.patrl-it.cm White Paper fr Mbile Wrkfrce Management and Mnitring Cpyright 2014 by Patrl-IT Inc. www.patrl-it.cm 2

More information

Succession Planning & Leadership Development: Your Utility s Bridge to the Future

Succession Planning & Leadership Development: Your Utility s Bridge to the Future Successin Planning & Leadership Develpment: Yur Utility s Bridge t the Future Richard L. Gerstberger, P.E. TAP Resurce Develpment Grup, Inc. 4625 West 32 nd Ave Denver, CO 80212 ABSTRACT A few years ag,

More information

Egency Operatins Plans

Egency Operatins Plans Agency Operatins Plan 2015-17 Agency: Nrth Dakta Public Emplyees Retirement System (NDPERS) Line f Business: (ptinal) The Public Emplyees Retirement System is the administratr f several emplyee benefit

More information

White Paper. SharePoint and the Consumerization of IT: Considerations for BYOD Success. Authors: Aseem Pandit and Prateek Bhargava

White Paper. SharePoint and the Consumerization of IT: Considerations for BYOD Success. Authors: Aseem Pandit and Prateek Bhargava White Paper SharePint and the Cnsumerizatin f IT: Cnsideratins fr BYOD Success Authrs: Aseem Pandit and Prateek Bhargava The Evlutin f IT Cnsumerizatin & BYOD BYOD refers t the plicy f permitting emplyees

More information

WEB APPLICATION SECURITY TESTING

WEB APPLICATION SECURITY TESTING WEB APPLICATION SECURITY TESTING Cpyright 2012 ps_testware 1/7 Intrductin Nwadays every rganizatin faces the threat f attacks n web applicatins. Research shws that mre than half f all data breaches are

More information

Support Services. v1.19 / 2015-07-02

Support Services. v1.19 / 2015-07-02 Supprt Services v1.19 / 2015-07-02 Intrductin - Table f Cntents 1 Intrductin... 3 2 Definitins... 4 3 Supprt Prgram Feature Overview... 5 4 SLA fr the Supprt Services... 6 4.1 Standard Supprt... 6 4.2

More information

Installation Guide Marshal Reporting Console

Installation Guide Marshal Reporting Console Installatin Guide Installatin Guide Marshal Reprting Cnsle Cntents Intrductin 2 Supprted Installatin Types 2 Hardware Prerequisites 2 Sftware Prerequisites 3 Installatin Prcedures 3 Appendix: Enabling

More information

Knowledge Base Article

Knowledge Base Article Knwledge Base Article Crystal Matrix Interface Cmparisn TCP/IP vs. SDK Cpyright 2008-2012, ISONAS Security Systems All rights reserved Table f Cntents 1: INTRODUCTION... 3 1.1: TCP/IP INTERFACE OVERVIEW:...

More information

Configuring, Monitoring and Deploying a Private Cloud with System Center 2012 Boot Camp

Configuring, Monitoring and Deploying a Private Cloud with System Center 2012 Boot Camp Cnfiguring, Mnitring and Deplying a Private Clud with System Center 2012 Bt Camp Length: 5 Days Technlgy: Micrsft System Center 2012 Delivery Methd: Instructr-led Hands-n Audience Prfile This curse is

More information

Lumension Connect: Online Customer Community FAQs

Lumension Connect: Online Customer Community FAQs Lumensin Cnnect: Online Custmer Cmmunity FAQs Cpyright 2009, Lumensin Lumensin Cnnect: Online Custmer Cmmunity FAQs Table f Cntents Lumensin Cnnect:... 1 Online Custmer Cmmunity FAQs... 1 What is Lumensin

More information

R091: Award Contract to FDM Software Ltd. for a Computer Aided Fire Dispatch (CAD) and Integrated Fire Records Management System (RMS)

R091: Award Contract to FDM Software Ltd. for a Computer Aided Fire Dispatch (CAD) and Integrated Fire Records Management System (RMS) Crprate NO: R091 Reprt COUNCIL DATE: April 19, 2004 REGULAR COUNCIL TO: Mayr and Cuncil DATE: April 2 nd 2004 FROM: Fire Chief FILE: 1360-20 SUBJECT: Award Cntract t FDM Sftware Ltd. fr a Cmputer Aided

More information

Junos Pulse Instructions for Windows and Mac OS X

Junos Pulse Instructions for Windows and Mac OS X Juns Pulse Instructins fr Windws and Mac OS X When yu pen the Juns client fr the first time yu get the fllwing screen. This screen shws yu have n cnnectins. Create a new cnnectin by clicking n the + icn.

More information

SBClient and Microsoft Windows Terminal Server (Including Citrix Server)

SBClient and Microsoft Windows Terminal Server (Including Citrix Server) SBClient and Micrsft Windws Terminal Server (Including Citrix Server) Cntents 1. Intrductin 2. SBClient Cmpatibility Infrmatin 3. SBClient Terminal Server Installatin Instructins 4. Reslving Perfrmance

More information

Improved Data Center Power Consumption and Streamlining Management in Windows Server 2008 R2 with SP1

Improved Data Center Power Consumption and Streamlining Management in Windows Server 2008 R2 with SP1 Imprved Data Center Pwer Cnsumptin and Streamlining Management in Windws Server 2008 R2 with SP1 Disclaimer The infrmatin cntained in this dcument represents the current view f Micrsft Crpratin n the issues

More information

1)What hardware is available for installing/configuring MOSS 2010?

1)What hardware is available for installing/configuring MOSS 2010? 1)What hardware is available fr installing/cnfiguring MOSS 2010? 2 Web Frnt End Servers HP Prliant DL 380 G7 2 quad cre Intel Xen Prcessr E5620, 2.4 Ghz, Memry 12 GB, 2 HP 146 GB drives RAID 5 2 Applicatin

More information

Customer no.: enter customer no. Contract no.: enter contract no.

Customer no.: enter customer no. Contract no.: enter contract no. Annex Versin: 2.0 Specificatin f services E-mail and telephne supprt by and between (client) and secunet Security Netwrks AG Krnprinzenstrasse 30 45128 Essen Germany (secunet r cntractr) Custmer n.: enter

More information

JADU UNIVERSE SPECIALIST CLOUD SERVICES: DEVELOPMENT

JADU UNIVERSE SPECIALIST CLOUD SERVICES: DEVELOPMENT JADU UNIVERSE SPECIALIST CLOUD SERVICES: DEVELOPMENT Sftware develpment fr gvernment digital services, web applicatins and payment transactins, by Jadu Jadu Limited Universe Huse 1 Merus Curt Leicester

More information

MITEL OPEN INTEGRATION GATEWAY (OIG): END- CUSTOMER DEVELOPMENT & LICENSING

MITEL OPEN INTEGRATION GATEWAY (OIG): END- CUSTOMER DEVELOPMENT & LICENSING MITEL OPEN INTEGRATION GATEWAY (OIG): END- CUSTOMER DEVELOPMENT & LICENSING JULY, 2014 The infrmatin cnveyed in this dcument is cnfidential and prprietary t Mitel and is intended slely fr Mitel emplyees

More information

Build the cloud OpenStack Installation & Configuration Integration with existing tools and processes Cloud Migration

Build the cloud OpenStack Installation & Configuration Integration with existing tools and processes Cloud Migration Slutin Brief OpenStack Services OVERVIEW OnX understands clud adptin challenges f glbal enterprise cmpanies and helps Enterprises adpt OpenStack slutins thrugh targeted services. We ffer vertical industry

More information

Integrate Marketing Automation, Lead Management and CRM

Integrate Marketing Automation, Lead Management and CRM Clsing the Lp: Integrate Marketing Autmatin, Lead Management and CRM Circular thinking fr marketers 1 (866) 372-9431 www.clickpintsftware.cm Clsing the Lp: Integrate Marketing Autmatin, Lead Management

More information

Online Learning Portal best practices guide

Online Learning Portal best practices guide Online Learning Prtal Best Practices Guide best practices guide This dcument prvides Micrsft Sftware Assurance Benefit Administratrs with best practices fr implementing e-learning thrugh the Micrsft Online

More information

ACTIVITY MONITOR Real Time Monitor Employee Activity Monitor

ACTIVITY MONITOR Real Time Monitor Employee Activity Monitor ACTIVITY MONITOR Real Time Mnitr Emplyee Activity Mnitr This pwerful tl allws yu t track any LAN, giving yu the mst detailed infrmatin n what, hw and when yur netwrk users perfrmed. Whether it is a library

More information

Licensing Windows Server 2012 for use with virtualization technologies

Licensing Windows Server 2012 for use with virtualization technologies Vlume Licensing brief Licensing Windws Server 2012 fr use with virtualizatin technlgies (VMware ESX/ESXi, Micrsft System Center 2012 Virtual Machine Manager, and Parallels Virtuzz) Table f Cntents This

More information

risk2value System Requirements

risk2value System Requirements aveds business slutins gmbh risk2value System Requirements March 2014 aveds business slutins gmbh Page 1 RISK2VALUE SYSTEM REQUIREMENTS aveds risk2value is based n Micrsft-Technlgy. This dcument gives

More information

On the way to Industrie 4.0 The Digital Enterprise

On the way to Industrie 4.0 The Digital Enterprise Hannver Messe Trade Fair 2015 On the way t Industrie 4.0 The Digital Enterprise Summary Influence f digitalizatin Industry faces new defining trends and challenges, bth nw and in the future. Siemens has

More information

Deployment Overview (Installation):

Deployment Overview (Installation): Cntents Deplyment Overview (Installatin):... 2 Installing Minr Updates:... 2 Dwnlading the installatin and latest update files:... 2 Installing the sftware:... 3 Uninstalling the sftware:... 3 Lgging int

More information

MaaS360 Cloud Extender

MaaS360 Cloud Extender MaaS360 Clud Extender Installatin Guide Cpyright 2012 Fiberlink Cmmunicatins Crpratin. All rights reserved. Infrmatin in this dcument is subject t change withut ntice. The sftware described in this dcument

More information

What's New. Sitecore CMS 6.6 & DMS 6.6. A quick guide to the new features in Sitecore 6.6. Sitecore CMS 6.6 & DMS 6.6 What's New Rev: 2012-10-22

What's New. Sitecore CMS 6.6 & DMS 6.6. A quick guide to the new features in Sitecore 6.6. Sitecore CMS 6.6 & DMS 6.6 What's New Rev: 2012-10-22 Sitecre CMS 6.6 & DMS 6.6 What's New Rev: 2012-10-22 Sitecre CMS 6.6 & DMS 6.6 What's New A quick guide t the new features in Sitecre 6.6 Sitecre is a registered trademark. All ther brand and prduct names

More information

Data Abstraction Best Practices with Cisco Data Virtualization

Data Abstraction Best Practices with Cisco Data Virtualization White Paper Data Abstractin Best Practices with Cisc Data Virtualizatin Executive Summary Enterprises are seeking ways t imprve their verall prfitability, cut csts, and reduce risk by prviding better access

More information

Copernicus & Big Data: A Perspective from the European EO Services Industry. Geoff Sawyer: EARSC Secretary General

Copernicus & Big Data: A Perspective from the European EO Services Industry. Geoff Sawyer: EARSC Secretary General Cpernicus & Big Data: A Perspective frm the Eurpean EO Services Industry. Geff Sawyer: EARSC Secretary General What is EARSC? EARSC is a trade assciatin (NPO), funded in 1989, which represents cmpanies:

More information

Performance Test Modeling with ANALYTICS

Performance Test Modeling with ANALYTICS Perfrmance Test Mdeling with ANALYTICS Jeevakarthik Kandhasamy Perfrmance test Lead Cnsultant Capgemini Financial Services USA jeevakarthik@gmail.cm Abstract Websites and web/mbile applicatins have becme

More information

ACTIVITY MONITOR. Live view of remote desktops. You may easily have a look at any user s desktop.

ACTIVITY MONITOR. Live view of remote desktops. You may easily have a look at any user s desktop. Web Develpment Offshre Develpment Outsurcing SEO ACTIVITY MONITOR This pwerful tl allws yu t track any LAN, giving yu the mst detailed infrmatin n what, hw and when yur netwrk users perfrmed. Whether it

More information

XenApp and XenDesktop: Application Virtualization and Desktop Virtualization are Better Together

XenApp and XenDesktop: Application Virtualization and Desktop Virtualization are Better Together XenApp and XenDesktp July 2008 XenApp and XenDesktp: Applicatin Virtualizatin and Desktp Virtualizatin are Better Tgether This dcument is designed t help Citrix XenApp custmers understand hw and when Citrix

More information

2008 BA Insurance Systems Pty Ltd

2008 BA Insurance Systems Pty Ltd 2008 BA Insurance Systems Pty Ltd BAIS have been delivering insurance systems since 1993. Over the last 15 years, technlgy has mved at breakneck speed. BAIS has flurished in this here tday, gne tmrrw sftware

More information

METU. Computer Engineering

METU. Computer Engineering METU Cmputer Engineering CENG 491 Cmputer Engineering Design I AKAMAI SYSTEMS Members f the Team: Ahmet Emin Tsun e141801@metu.edu.tr Uğur Can Tekin e134800@metu.edu.tr Hasan İşler e134758@metu.edu.tr

More information

Licensing Windows Server 2012 R2 for use with virtualization technologies

Licensing Windows Server 2012 R2 for use with virtualization technologies Vlume Licensing brief Licensing Windws Server 2012 R2 fr use with virtualizatin technlgies (VMware ESX/ESXi, Micrsft System Center 2012 R2 Virtual Machine Manager, and Parallels Virtuzz) Table f Cntents

More information

Customer Service Description

Customer Service Description Page: 1 f 10 Hewlett-Packard Cmpany HP Services Slutin Center Custm Prjects Prgram http://www.hp.cm/hps/ perfrmance & availability sftware services per event supprt & cnsulting Custmer Service Descriptin

More information

Design & Development of ADMS VA (Archived Data Management System Virginia) North American Travel Monitoring Exhibition & Conference June 27-30, 2004

Design & Development of ADMS VA (Archived Data Management System Virginia) North American Travel Monitoring Exhibition & Conference June 27-30, 2004 Design & Develpment f ADMS VA (Archived Data Management System Virginia) Nrth American Travel Mnitring Exhibitin & Cnference June 27-30, 2004 Presented by: Clleen Sheerin Open Rads Cnsulting, Inc. Presentatin

More information

D11.6 Project Web Site Report

D11.6 Project Web Site Report Grant Agreement Number 216487 Integrated Cgnitive Assistive & Dmtic Cmpanin Rbtic Systems fr Ability & Security Cllabrative Prject ICT-2007.7.1 ICT and ageing published by the CmpaninAble Cnsrtium Versin:

More information

The AppSec How-To: Choosing a SAST Tool

The AppSec How-To: Choosing a SAST Tool The AppSec Hw-T: Chsing a SAST Tl Surce Cde Analysis Made Easy GIVEN THE WIDE RANGE OF SOURCE CODE ANALYSIS TOOLS, SECURITY PROFESSIONALS, AUDITORS AND DEVELOPERS ALIKE ARE FACED WITH THE QUESTION: Hw

More information

Mobile Workforce. Improving Productivity, Improving Profitability

Mobile Workforce. Improving Productivity, Improving Profitability Mbile Wrkfrce Imprving Prductivity, Imprving Prfitability White Paper The Business Challenge Between increasing peratinal cst, staff turnver, budget cnstraints and pressure t deliver prducts and services

More information

Data Warehouse Scope Recommendations

Data Warehouse Scope Recommendations Rensselaer Data Warehuse Prject http://www.rpi.edu/datawarehuse Financial Analysis Scpe and Data Audits This dcument describes the scpe f the Financial Analysis data mart scheduled fr delivery in July

More information

Firewall/Proxy Server Settings to Access Hosted Environment. For Access Control Method (also known as access lists and usually used on routers)

Firewall/Proxy Server Settings to Access Hosted Environment. For Access Control Method (also known as access lists and usually used on routers) Firewall/Prxy Server Settings t Access Hsted Envirnment Client firewall settings in mst cases depend n whether the firewall slutin uses a Stateful Inspectin prcess r ne that is cmmnly referred t as an

More information

Oakland County Department of Information Technology Project Scope and Approach

Oakland County Department of Information Technology Project Scope and Approach Oakland Cunty Department f Infrmatin Technlgy Prject Scpe and Apprach Prject Name: Web-Based Permanency Database Prject ID: DB1314PD Leadership Grup: Curts Department: Circuit Curt Divisin: Family Prject

More information

Standardization or Harmonization? You need Both

Standardization or Harmonization? You need Both Standardizatin r? Yu need Bth Albrecht Richen and Ansgar Steinhrst Recently the CFO f a majr cnsumer electrnics cmpany stated, We dn t need standardizatin f ur wrldwide prcesses, we need harmnizatin. Is

More information

COE: Hybrid Course Request for Proposals. The goals of the College of Education Hybrid Course Funding Program are:

COE: Hybrid Course Request for Proposals. The goals of the College of Education Hybrid Course Funding Program are: COE: Hybrid Curse Request fr Prpsals The gals f the Cllege f Educatin Hybrid Curse Funding Prgram are: T supprt the develpment f effective, high-quality instructin that meets the needs and expectatins

More information

CorasWorks v11 Essentials Distance Learning

CorasWorks v11 Essentials Distance Learning CrasWrks v11 Essentials Curse Outline CrasWrks distance learning training is designed t help students leverage the CrasWrks platfrm t either build cllabrative applicatins r extend and enhance existing

More information

Creating automated reports using VBS AN 44

Creating automated reports using VBS AN 44 Creating autmated reprts using VBS AN 44 Applicatin Nte t the KLIPPEL R&D and QC SYSTEM Publishing measured results is imprtant t custmers and clients. While the KLIPPEL database cntains all infrmatin

More information

Case Study. Portal Upgrade and Management services to a US based Fast Food Chain. Ananthakrishnan J Architect, Sonata Software

Case Study. Portal Upgrade and Management services to a US based Fast Food Chain. Ananthakrishnan J Architect, Sonata Software Case Study Ananthakrishnan J Architect, Snata Sftware Prtal Upgrade and services t a US based Fast Fd Chain Snata Sftware Limited www.snata-sftware.cm www.snata-sftware.cm Snata s SharePint Migratin and

More information

1 GETTING STARTED. 5/7/2008 Chapter 1

1 GETTING STARTED. 5/7/2008 Chapter 1 5/7/2008 Chapter 1 1 GETTING STARTED This chapter intrduces yu t the web-based UIR menu system. Infrmatin is prvided abut the set up necessary t assign users permissin t enter and transmit data. This first

More information

Mobile Application Developer Track

Mobile Application Developer Track Ministry f Cmmunicatins and Infrmatin Technlgy Infrmatin Technlgy Institute Mbile Applicatin Develper Track System Develpment Department Intake 33 SDITI.EGYPT@gmail.cm Mbile Develper Track Histry Mbile

More information

QBT - Making business travel simple

QBT - Making business travel simple QBT - Making business travel simple In business travel, cmplexity csts. S, we ffer less f it. We adpt the latest technlgy and make it simple, transparent and highly persnal. S yu get mre f what yu need

More information

USF Remote Desktop Gateway

USF Remote Desktop Gateway USF Remte Desktp Gateway Fr Hme Cmputers and Laptps Running Windws XP The Remte Desktp Gateway (RDG) allws access t yur USF campus cmputer frm remte lcatins while adding an additinal layer f security t

More information

SERVICES BEST PRACTICES

SERVICES BEST PRACTICES SERVICES SERVICES SERVICES BEST PRACTICES WHEN TO ENGAGE US Nt every study requires advanced prgramming and executin. Nt every team needs skills that are called upn nly infrequently. That s why CfMC partners

More information

ERP CONSULTING IT OUTSOURCING

ERP CONSULTING IT OUTSOURCING ERP CONSULTING IT OUTSOURCING IT Services www.bakertilly.pl ERP SYSTEMS ERP systems are mature tls managing resurces in every area f the cmpany management. The chice f this tl and a way f its implementatin

More information

Defining Sales Campaign Automation How e-mail, the Killer App, is best applied to marketing

Defining Sales Campaign Automation How e-mail, the Killer App, is best applied to marketing Defining Sales Campaign Autmatin Hw e-mail, the Killer App, is best applied t marketing Summary: Cmpanies tday are steadily adpting strategies and technlgies t reach prspects, custmers, and partners thrugh

More information

THE CUSTOMER SUPPORT KNOWLEDGE BASE FAQ

THE CUSTOMER SUPPORT KNOWLEDGE BASE FAQ THE CUSTOMER SUPPORT KNOWLEDGE BASE FAQ What is the Knwledge Base? - The Knwledge Base (r KB) is a searchable database in which different dcument types f technical dcumentatin are aggregated. These vary

More information

HP ExpertOne. HP2-T21: Administering HP Server Solutions. Table of Contents

HP ExpertOne. HP2-T21: Administering HP Server Solutions. Table of Contents HP ExpertOne HP2-T21: Administering HP Server Slutins Industry Standard Servers Exam preparatin guide Table f Cntents Overview 2 Why take the exam? 2 HP ATP Server Administratr V8 certificatin 2 Wh shuld

More information

2008-2011 CSU STANISLAUS INFORMATION TECHNOLOGY PLAN SUMMARY

2008-2011 CSU STANISLAUS INFORMATION TECHNOLOGY PLAN SUMMARY 2008-2011 CSU STANISLAUS INFORMATION TECHNOLOGY PLAN SUMMARY OFFICE OF INFORMATION TECHNOLOGY AUGUST 2008 Executive Summary The mst recent CSU Stanislaus infrmatin technlgy (IT) plan was issued in 2003.

More information

NC3A SOA Techwatch Day Call for Presentations

NC3A SOA Techwatch Day Call for Presentations NC3A SOA Techwatch Day Call fr Presentatins 1 February 2012 Hsted at NATO C3 Agency, The Hague, The Netherlands By NC3A Chief Technlgy Office (CTO) David Burtn Chief Technlgy fficer Versin 1, 1 December

More information

ALM in the Cloud an Overview of Oracle Developer Cloud Service. Introduction. By Dana Singleterry

ALM in the Cloud an Overview of Oracle Developer Cloud Service. Introduction. By Dana Singleterry ALM in the Clud an Overview f Oracle Develper Clud Service Intrductin By Dana Singleterry In recent years the wrld f applicatin develpment has adpted new methdlgies that aim t imprve the quality and speed

More information

To transform information into knowledge- a firm must expend additional resources to discover, patterns, rules, and context where the knowledge works

To transform information into knowledge- a firm must expend additional resources to discover, patterns, rules, and context where the knowledge works Chapter 15- Managing Knwledge Knwledge Management Landscape Knwledge management systems- supprt the creatin, capture, strage, and disseminatin f firm expertise and knwledge, have becme ne f the fastest-grwing

More information

Interworks Cloud Platform Citrix CPSM Integration Specification

Interworks Cloud Platform Citrix CPSM Integration Specification Citrix CPSM Integratin Specificatin Cntents 1. Intrductin... 2 2. Activatin f the Integratin Layer... 3 3. Getting the Services Definitin... 4 3.1 Creating a Prduct Type per Lcatin... 5 3.2 Create Instance

More information

G-CLOUD FRAMEWORK SERVICE DEFINITION. Solution Architecture for Cloud Service. Copyright: 2014 6point6 Ltd

G-CLOUD FRAMEWORK SERVICE DEFINITION. Solution Architecture for Cloud Service. Copyright: 2014 6point6 Ltd G-CLOUD FRAMEWORK SERVICE DEFINITION Slutin Architecture fr Clud Service Cpyright: 2014 6pint6 Ltd G-Clud Service Definitin Slutin Architecture fr Clud Service 1. SERVICE OVERVIEW 6pint6 is an innvative

More information

Service Request Form

Service Request Form New Prfessinal Services Order Frm Editable PDF Service Request Frm If yu have any questins while filling ut this frm, please cntact yur CDM, email Prfessinal Services at PS@swipeclck.cm, r call 888-223-3250

More information

Company Pierce Washington (www.piercewashington.com) is a full service ebusiness consulting firm, with offices in San Francisco and Chicago.

Company Pierce Washington (www.piercewashington.com) is a full service ebusiness consulting firm, with offices in San Francisco and Chicago. Systems Business Analyst Business Analyst San Francisc, CA, United States Cmpany Pierce Washingtn (www.piercewashingtn.cm) is a full service ebusiness cnsulting firm, with ffices in San Francisc and Chicag.

More information

How To Write Insurance Quotation Software For Gthaer Vericherungen Insurance Prducts

How To Write Insurance Quotation Software For Gthaer Vericherungen Insurance Prducts Gthaer Versicherungen bases its insurance qutatin sftware n the b+m Generative Develpment Prcess and the b+m ArchitectureWare prduct line Field f Business Insurance slutins fr the banking sectr. Applicatin

More information

Legacy EMR Data Conversions

Legacy EMR Data Conversions Legacy EMR Data Cnversins Agenda Abut us Drivers fr EMR Replacement Things t Cnsider Tp 5 Reasns EMR Cnversins Fail Optins fr Legacy EMR Cnversin Case Study Abut Us Health efrmatics is a healthcare IT

More information

Basics of Supply Chain Management

Basics of Supply Chain Management The Champlain Valley APICS Chapter is a premier prfessinal assciatin fr supply chain and peratins management and wrking tgether with the APICS rganizatin the leading prvider f research, educatin and certificatin

More information

How To Use Citrix Xendesktp 4 With Flexcast

How To Use Citrix Xendesktp 4 With Flexcast Citrix XenDesktp 4: The clear chice fr desktp virtualizatin Citrix pineered desktp and applicatin delivery ver 20 years ag, and in recent years, we have been rapidly innvating with ur industry leading

More information

Introduction to Mindjet MindManager Server

Introduction to Mindjet MindManager Server Intrductin t Mindjet MindManager Server Mindjet Crpratin Tll Free: 877-Mindjet 1160 Battery Street East San Francisc CA 94111 USA Phne: 415-229-4200 Fax: 415-229-4201 mindjet.cm 2013 Mindjet. All Rights

More information

Partnership for better solutions DATALAB DEVELOPER PROGRAM

Partnership for better solutions DATALAB DEVELOPER PROGRAM Partnership fr better slutins DATALAB DEVELOPER PROGRAM July 2008 - June 2009 Stran 1 d 7 1. Intrductin Datalab PANTHEON ERP is in use with ver 4000 cmpanies in Central and Eastern Eurpe. Fast grwth f

More information

Serv-U Distributed Architecture Guide

Serv-U Distributed Architecture Guide Serv-U Distributed Architecture Guide Hrizntal Scaling and Applicatin Tiering fr High Availability, Security, and Perfrmance Serv-U Distributed Architecture Guide v14.0.1.0 Page 1 f 16 Intrductin Serv-U

More information

Wholesale IaaS. How to beat AWS and make money while doing it. WHD.Australia 2013

Wholesale IaaS. How to beat AWS and make money while doing it. WHD.Australia 2013 Whlesale IaaS Hw t beat AWS and make mney while ding it WHD.Australia 203 AUGUST 203 Overview Fcus n AWS / AWS EC2 & EBS Gartner Magic Quadrant Clud August 203 What is the frmula that AWS EC2 gt right?

More information

Managing Access and Help Protect Corporate Email Data on Mobile Devices with Enterprise Mobile Suite

Managing Access and Help Protect Corporate Email Data on Mobile Devices with Enterprise Mobile Suite Managing Access and Help Prtect Crprate Email Data n Mbile Devices with Enterprise Mbile Suite Last updated: 7/15/15 Balancing prductivity and security Emplyees want t be able t use their wn devices t

More information

Leveraging Microsoft Dynamics CRM as an Enterprise Development Platform

Leveraging Microsoft Dynamics CRM as an Enterprise Development Platform West Virginia Infrmatin Technlgy Summit 2009 Leveraging Micrsft Dynamics CRM as an Enterprise Develpment Platfrm Hw t Stay Ahead f the Alligatrs Gerge White, Chief Infrmatin Officer Pennsylvania Office

More information

Diagnosis and Troubleshooting

Diagnosis and Troubleshooting Diagnsis and Trubleshting DataDirect Cnnect Series ODBC Drivers Intrductin This paper discusses the diagnstic tls that are available t cnfigure and trublesht yur ODBC envirnment and prvides a trubleshting

More information

Cognosys Proposal for Hospital Management System. Health Care Cloud Solutions August 3, 2012

Cognosys Proposal for Hospital Management System. Health Care Cloud Solutions August 3, 2012 Cgnsys Prpsal fr Hspital System Health Care Clud Slutins August 3, 2012 Cgnsys Services: Building Futuristic Hspitals Drive tward yur gals f cst reductins and increased prductivity in rder t enhance yur

More information