DEV-11: Architecting Your Application in OpenEdge® 10

Slides:



Advertisements
Similar presentations
Server Access The REST of the Story David Cleary
Advertisements

Apache Struts Technology
DEV-2: Getting Started with OpenEdge® Architect – Part I
DEV-13: You've Got a Problem, Here’s How to Find It
Integrating SOA and the Application Development Framework Shaun O’Brien Principal Product Manager – Oracle JDeveloper / ADF.
SOA with Progress Philipp Walther Consultant. © 2007 Progress Software Corporation2 Agenda  SOA  Enterprise Service Bus (ESB)  The Progress SOA Portfolio.
28/1/2001 Seminar in Databases in the Internet Environment Introduction to J ava S erver P ages technology by Naomi Chen.
John Sadd Progress Fellow and OpenEdge Evangelist
What’s new in Progress Developer Studio for OpenEdge 11.0?
ARCH-6: UML Modeling with Enterprise Architect Phillip Magnay Technical Architect.
IBM Proof of Technology Discovering the Value of SOA with WebSphere Process Integration © 2005 IBM Corporation SOA on your terms and our expertise WebSphere.
C8: Enterprise Integration Patterns in Sonic ™ ESB Stefano Picozzi Solutions Architect.
SOA-06: Get On the Bus with the OpenEdge ® Adapter for Sonic ESB ® David Cleary Principal Software Engineer, Progress.
1 The Problem Do you have: A legacy ABL system with millions of Lines of ABL Code? Years and years of modifications to your ABL code? System documentation.
DEV-07: Increasing Productivity with Tools for Business Logic Gikas Principal Software Engineer.
SOA-12: Integrate over the Web with OpenEdge® Web Services
DEV-2: Making OpenEdge ® Architect Work For You David Lund Product Readiness.
Using JavaBeans and Custom Tags in JSP Lesson 3B / Slide 1 of 37 J2EE Web Components Pre-assessment Questions 1.The _____________ attribute of a JSP page.
INT-11: It’s Monday Morning, Do You Know Where Your Service Has Been? Service Management with Sonic ™ and Actional Marv Stone Progress Software.
ARCH-03: Implementing the OpenEdge™ Reference Architecture – Part 1 John Sadd Progress Fellow and OpenEdge Evangelist.
Object-Oriented Programming and the Progress ABL Tomáš Kučera Principal Solution Engineer / EMEA Power Team.
DEV-5: Introduction to WebSpeed ® Stephen Ferguson Sr. Training Program Manager.
DEV-05: Ratcheting up your OpenEdge™ Development Productivity Sunil S Belgaonkar Principal Software Engineer.
ARCH-4: The Presentation Layer in the OpenEdge® Reference Architecture Frank Beusenberg Senior Technical Consultant.
SOA-14: Deploying your SOA Application David Cleary Principal Software Engineer.
INT-5: Integrate over the Web with OpenEdge® Web Services
SOA-26: Extending Your Application with OpenEdge ® Web Services John Sadd OpenEdge Evangelist.
DEV-16: Leveraging the Power of Advanced GUI Power is nothing without control Erwin in ‘t VeldCCS Tony VertentenIntris Eric DebeijProgress Roland de PijperProgress.
DEV-8: OpenEdge® Architect – Extensibility & Third Party Integration Sunil Belgaonkar Principal Software Engineer Architect Phillip Magnay.
SOA-02: Sonic SOA Products Overview Luis Maldonado Technical Product Manager Sonic Software.
ARCH-07: Implementing the OpenEdge™ Reference Architecture – Part 2
ARCH-7: A Class-Based Implementation of the OpenEdge® Reference Architecture John Sadd Fellow and OpenEdge Evangelist Applied Technology.
ARCH-11: Building your Presentation with Classes John Sadd Fellow and OpenEdge Evangelist Sasha Kraljevic Principal TSE.
INT-9: Implementing ESB Processes with OpenEdge ® and Sonic ™ David Cleary Principal Software Engineer.
A7: Architecting Your Application in OpenEdge ® 10 Mike Ormerod Applied Architect.
ARCH-7: Integrate this! SonicMQ® and the OpenEdge® Reference Architecture Christian Stiller Technical Architect.
ARCH-5: Service Interfaces in Practice Christian Stiller Technical Architect.
MOVE-15: Leveraging Business Entities, Data Access Objects and ProDataSets with a Progress Dynamics® or ADM2 GUI Peter Judge Principal Software Engineer.
Christian Stiller Technical Account Manager SOA-23: Enterprise Integration Patterns in Sonic ™ ESB.
A2: Making OpenEdge ® Architect Work For You Susan Houniet Senior Solution Consultant.
Introduction To DBMS.
Rob Straight, Principal Product Manager
Working in the Forms Developer Environment
N-Tier Architecture.
MVC Architecture, Symfony Framework for PHP Web Apps
Introduction to Advanced Java Programming
DEV-25: You've Got a Problem, Here’s How to Find It
SOA-40: Getting Rejected on the Bus
Design and Maintenance of Web Applications in J2EE
Service-centric Software Engineering
COMP-10: Managing OpenEdge® Development with the Roundtable® TSMS
Tools of Software Development
ARCH-1: Application Architecture made Simple
C6: Introducing Native Invocation with the OpenEdge® Adapter for Sonic™ ESB Chris James Senior Consultant.
Systems Analysis and Design
DEV-08: Exploring Object-oriented Programming
Rob Straight, Principal Product Manager
Prepared by Peter Boško, Luxembourg June 2012
The ultimate in data organization
Object Oriented Analysis and Design
Dev 11: Embracing OpenEdge® Architect
ARCH-2: OpenEdge Reference Architecture (OERA) Latest Thinking
Use Case Analysis – continued
Lab 2: Information Retrieval
ARCH-14: Power Your Organisation with OpenEdge
SOA-09: Conducting Business with OpenEdge® and SonicMQ®
CSPA Templates for sharing services
CSPA Templates for sharing services
Software Architecture & Design
Presentation transcript:

DEV-11: Architecting Your Application in OpenEdge® 10 John Sadd OpenEdge Evangelist

Goals of the Session (Re-)Introduce the OpenEdge Reference Architecture as a set of practical guidelines Make sure you are aware of key OpenEdge 10 features Map features to their benefit in designing (changes to) your application DEV-11: Architecting Your Application in OpenEdge 10

Agenda What’s Your Starting Point? Using the OERA to Help You Adapt ProDataSets and Your Architecture Opening Your Application to the World Using Classes in Your Application Other Areas of Support DEV-11: Architecting Your Application in OpenEdge 10

One procedure to do everything DEFINE VARIABLE cCarBrand AS CHARACTER NO-UNDO. DEFINE VARIABLE cCarModel AS CHARACTER NO-UNDO. CREATE Car. Update CarBrand CarModel CarStyle CarColor CarFuel CarEngine CarVIN WITH FRAME UpdFrame. Car.CarID = GUID(GENERATE-UUID). CASE CarBrand: WHEN "Hinda" THEN FIND Dealer WHERE Dealer.DealerName MATCHES "*#1*". … FIND BaseCode WHERE Category = "style“ AND Description = CarStyle. Car.BaseCodeStyleID = BaseCode.BaseCodeID. IF Dealer.DealerName MATCHES "*#1*" THEN Car.CarDescription = cCarColor + " " +… ELSE IF Dealer.DealerName MATCHES "*#2*" THEN Car.CarDescription = cCarBrand + " " +… DEV-11: Architecting Your Application in OpenEdge 10

So what happens when the UI requirements change? Update CarBrand CarModel CarStyle CarColor CarFuel CarEngine CarVIN WITH FRAME UpdFrame. Extracting and changing UI references Identifying what elements were displayed, created or updated and in what order Extracting implicit business logic DEV-11: Architecting Your Application in OpenEdge 10

One procedure to do everything DEFINE VARIABLE cCarBrand AS CHARACTER NO-UNDO. DEFINE VARIABLE cCarModel AS CHARACTER NO-UNDO. CREATE Car. Update CarBrand CarModel CarStyle CarColor CarFuel CarEngine CarVIN WITH FRAME UpdFrame. Car.CarID = GUID(GENERATE-UUID). CASE CarBrand: WHEN "Hinda" THEN FIND Dealer WHERE Dealer.DealerName MATCHES "*#1*". … FIND BaseCode WHERE Category = "style“ AND Description = CarStyle. Car.BaseCodeStyleID = BaseCode.BaseCodeID. IF Dealer.DealerName MATCHES "*#1*" THEN Car.CarDescription = cCarColor + " " +… ELSE IF Dealer.DealerName MATCHES "*#2*" THEN Car.CarDescription = cCarBrand + " " +… DEV-11: Architecting Your Application in OpenEdge 10

What happens as your logic grows? CASE CarBrand: WHEN "Hinda" THEN FIND Dealer WHERE Dealer.DealerName MATCHES "*#1*". Adding a brand or a dealership Many places in the code to change Finding them all Being sure they all work the same way Effects of this on testing DEV-11: Architecting Your Application in OpenEdge 10

One procedure to do everything DEFINE VARIABLE cCarBrand AS CHARACTER NO-UNDO. DEFINE VARIABLE cCarModel AS CHARACTER NO-UNDO. CREATE Car. Update CarBrand CarModel CarStyle CarColor CarFuel CarEngine CarVIN WITH FRAME UpdFrame. Car.CarID = GUID(GENERATE-UUID). CASE CarBrand: WHEN "Hinda" THEN FIND Dealer WHERE Dealer.DealerName MATCHES "*#1*". … FIND BaseCode WHERE Category = "style“ AND Description = CarStyle. Car.BaseCodeStyleID = BaseCode.BaseCodeID. IF Dealer.DealerName MATCHES "*#1*" THEN Car.CarDescription = cCarColor + " " +… ELSE IF Dealer.DealerName MATCHES "*#2*" THEN Car.CarDescription = cCarBrand + " " +… DEV-11: Architecting Your Application in OpenEdge 10

How does your database schema affect your application code? FIND BaseCode WHERE Category = "style“ AND Description = CarStyle. Car.BaseCodeStyleID = BaseCode.BaseCodeID. Schema complexities Many places in the code Schema changes Relational keys DEV-11: Architecting Your Application in OpenEdge 10

One procedure to do everything DEFINE VARIABLE cCarBrand AS CHARACTER NO-UNDO. DEFINE VARIABLE cCarModel AS CHARACTER NO-UNDO. CREATE Car. Update CarBrand CarModel CarStyle CarColor CarFuel CarEngine CarVIN WITH FRAME UpdFrame. Car.CarID = GUID(GENERATE-UUID). CASE CarBrand: WHEN "Hinda" THEN FIND Dealer WHERE Dealer.DealerName MATCHES "*#1*". … FIND BaseCode WHERE Category = "style“ AND Description = CarStyle. Car.BaseCodeStyleID = BaseCode.BaseCodeID. IF Dealer.DealerName MATCHES "*#1*" THEN Car.CarDescription = CarColor + " " +… ELSE IF Dealer.DealerName MATCHES "*#2*" THEN Car.CarDescription = cCarBrand + " " +… DEV-11: Architecting Your Application in OpenEdge 10

What happens to business logic variants? IF Dealer.DealerName MATCHES "*#1*" THEN Car.CarDescription = cCarColor + " " +… ELSE IF Dealer.DealerName MATCHES "*#2*" THEN Car.CarDescription = cCarBrand + " " +… Duplicating and extending the logic When the code gets out of control Maintaining each variant DEV-11: Architecting Your Application in OpenEdge 10

Agenda What’s Your Starting Point? Using the OERA to Help You Adapt ProDataSets and Your Architecture Opening Your Application to the World Using Classes in Your Application Other Areas of Support DEV-11: Architecting Your Application in OpenEdge 10

OpenEdge Reference Architecture Presentation Business Components Data Access Data Sources Common Infrastructure Enterprise Services Update CarBrand IF DealerName MATCHES … CREATE CAR… FIND DEALER WHERE… Open Edge Reference Architecture (OERA) provides a guideline of how a Web service can fit into the framework of an application. A Web service definition is one type of physical implementation for the logical definition of a Service Oriented Architecture (SOA). DEV-11: Architecting Your Application in OpenEdge 10

OpenEdge Reference Architecture RUN Inventory_Service Presentation Business Components Data Access Data Sources Common Infrastructure Enterprise Services AUDIT-CONTROL… IF CAN-DO… Open Edge Reference Architecture (OERA) provides a guideline of how a Web service can fit into the framework of an application. A Web service definition is one type of physical implementation for the logical definition of a Service Oriented Architecture (SOA). DEV-11: Architecting Your Application in OpenEdge 10

Basic principles for agility and reuse Do each job once and only once! Let each component do only one job and one type of job! Tackle one part of the problem at a time! Common Infrastructure Business Components DEV-11: Architecting Your Application in OpenEdge 10

Starting the split User Interface and Business Logic Or Client and Server Data Definitions User Interface Client-Side Logic Authentication Business Logic Database Access Schema Defs Client Server DEV-11: Architecting Your Application in OpenEdge 10

Continuing the split Sharing definitions Identifying the user What data for the UI What data for the business logic Data Definitions User Interface Client-Side Logic Client Authentication Business Logic Database Access Schema Defs Server DEV-11: Architecting Your Application in OpenEdge 10

Common Infrastructure Completing the split Presentation Business Components Data Access Data Sources Common Infrastructure Enterprise Services Data Definitions User Interface Client-Side Logic Authentication Business Logic Database Access Schema Defs DEV-11: Architecting Your Application in OpenEdge 10

Agenda What’s Your Starting Point? Using the OERA to Help You Adapt ProDataSets and Your Architecture Opening Your Application to the World Using Classes in Your Application Other Areas of Support DEV-11: Architecting Your Application in OpenEdge 10

ProDataSet™ bridges the gap from client to server Presentation Master Detail ProDataSet Business Components Holds any relational data instance Data relationships Before-and-after versions of changes Input and output data elements Authentication and other data, too Transports all this as a single data object A Document Message in enterprise terms DEV-11: Architecting Your Application in OpenEdge 10

ProDataSet holds the logical data definition Business Components Master Detail ProDataSet Data Access Lets you separate the logical from the physical data definitions Eliminate schema complexities from logic Shield logic from schema changes Hold calculated fields and other values DEV-11: Architecting Your Application in OpenEdge 10

Remember that complex schema definition? Data Access Keep this in the Data Access object FIND CarBrand WHERE CarBrandName = cCarBrand. FIND CarModel WHERE CarModel.CarModelName = cCarModel. FIND BaseCode WHERE Category = "style" AND BaseCodeDescription = cCarStyle. cBaseCodeStyleID = BaseCode.BaseCodeID. FIND BaseCode WHERE Category = "color" AND BaseCodeDescription = cCarColor. cBaseCodeColorID = BaseCode.BaseCodeID. FIND BaseCode WHERE Category = "fuel" AND BaseCodeDescription = cCarFuel. cBaseCodeFuelID = BaseCode.BaseCodeID. FIND BaseCode WHERE BaseCode.BaseCodeCategory = "engine" AND BaseCodeDescription = cCarEngine. cBaseCodeEngineID = BaseCode.BaseCodeID. DEV-11: Architecting Your Application in OpenEdge 10

Logical data definition is in temp-tables and ProDataSets Presentation DEFINE TEMP-TABLE ttCarInfo FIELD CarBrand AS CHARACTER FIELD CarModel AS CHARACTER FIELD CarStyle AS CHARACTER FIELD CarColor AS CHARACTER FIELD CarFuel AS CHARACTER FIELD CarEngine AS CHARACTER FIELD CarVIN AS CHARACTER FIELD CarDesc AS CHARACTER FIELD CarDealer AS CHARACTER FIELD CarIsAvail AS LOGICAL FIELD CarAdded AS DATE. DEFINE DATASET dsCarInfo FOR ttCarInfo. Usable business data winds up here Business Components Including calculated fields And fields dependent on specific business logic DEV-11: Architecting Your Application in OpenEdge 10

Wrap your code and data as a service How much code? Big enough for one request Small enough to promote reuse How much data? Enough to get the job done… Not so much as to take over somebody else’s business logic! Can be expressed as a ProDataSet DEV-11: Architecting Your Application in OpenEdge 10

In short: ProDataSets and Your Application Architecture Document Messages between parts of your application Organize the data a component uses Define the scope of a service Data your user interface uses Logical schema versus physical data Data shared with another application Presentation Business Components Data Access Data Sources Common Infrastructure Enterprise Services Master Detail ProDataSet DEV-11: Architecting Your Application in OpenEdge 10

Agenda What’s Your Starting Point? Using the OERA to Help You Adapt ProDataSets and Your Architecture Opening Your Application to the World Using Classes in Your Application Other Areas of Support DEV-11: Architecting Your Application in OpenEdge 10

How else can you use a business service? As a component to call from .NET™ As a component to call from Java™ As a component to expose as a Web service As a step in a Sonic™ ESB process DEV-11: Architecting Your Application in OpenEdge 10

Sharing data with a .NET application… Master Detail .NET DataSet Presentation .NET Presentation Layer Master Detail ProDataSet Business Components OpenEdge preserves all the data, All the relationships, All the changes to data, All transparently for you DEV-11: Architecting Your Application in OpenEdge 10

Sharing data with a Java application… Master Detail Java SDO Presentation Java Presentation Layer Master Detail ProDataSet Business Components OpenEdge preserves all the data, All the relationships, All the changes to data, All transparently for you DEV-11: Architecting Your Application in OpenEdge 10

Exposing your service as a Web service Enterprise Services DEV-11: Architecting Your Application in OpenEdge 10

Running Web services from your application Run Web services as if they were ABL procedures OpenEdge utility generates syntax to paste into your application Parameters converted DEV-11: Architecting Your Application in OpenEdge 10

ProDataSets as Web service parameters Convert a ProDataSet (or temp-table) to XML in a single WRITE-XML method Also WRITE-XMLSCHEMA Pass a ProDataSet as a parameter directly to a Web service Converts XML to a ProDataSet (or temp-table) with or without schema READ-XML and READ-XMLSCHEMA Likewise, receive a parameter directly from a Web service DEV-11: Architecting Your Application in OpenEdge 10

Integrating Web services into your Business Components RUN SomebodysService on hWebService (INPUT DATASET dsCarInfo, OUTPUT DATASET dsResultSet). XML Master Detail ProDataSet Business Components Somebody’s Web service DEV-11: Architecting Your Application in OpenEdge 10

Breaking up your services into maintainable, reusable units Two business logic variants in one procedure Separate that into two distinct services CASE CarBrand: WHEN "Hinda" THEN FIND Dealer WHERE Dealer.DealerName MATCHES "*#1*". /* ManageAmericanCars.p */ ASSIGN ttCarInfo.CarDealer = "#2" ttCarInfo.CarDesc = ttCarInfo.CarBrand + " " + ttCarInfo.CarModel + " " + … ttCarInfo.CarIsAvail = YES ttCarInfo.CarAdded = TODAY. /* ManageForeignCars.p */ ASSIGN ttCarInfo.CarDealer = "#1" ttCarInfo.CarDesc = ttCarInfo.CarColor + " " + ttCarInfo.CarBrand + " " + … ttCarInfo.CarIsAvail = NO ttCarInfo.CarAdded = TODAY. DEV-11: Architecting Your Application in OpenEdge 10

Integrating your services into Sonic processes Content-Based Routing DEV-11: Architecting Your Application in OpenEdge 10

Running ABL procedures from Sonic ABL annotations describe the procedure and its parameters OpenEdge Architect or ProxyGen can generate the annotations for you Also creates the special-format descriptor file DEV-11: Architecting Your Application in OpenEdge 10

The OpenEdge Architect editor integrated into Sonic Workbench @openapi.openedge.export FILE (type="ESB", esboeFilename="%FILENAME%", useReturnValue="false", writeDataSetBeforeImage="false", executionMode="external"). DEV-11: Architecting Your Application in OpenEdge 10

In short: OpenEdge supports you in opening your services to the world ProDataSets as Document Messages As parameters to .NET or Java applications Run Web services from your application Expose your ABL procedures as Web services Make your services part of Sonic ESB processes Presentation .NET or Java Enterprise Services Master Detail ProDataSet Business Components DEV-11: Architecting Your Application in OpenEdge 10

Agenda What’s Your Starting Point? Using the OERA to Help You Adapt ProDataSets and Your Architecture Opening Your Application to the World Using Classes in Your Application Common Infrastructure Support DEV-11: Architecting Your Application in OpenEdge 10

Support for classes in ABL: Inheritance Architecture is about isolating common behavior and eliminating redundancy Classes provide inheritance Common business object behavior Common infrastructure support Common support of all kinds Bus. Comp. Super Class Business Components Car Class Dealer Class DEV-11: Architecting Your Application in OpenEdge 10

Inheritance in classes You can define a class with data and methods Then you can define a subclass that inherits, overrides, and extends the standard behavior. CLASS Car: /* Source file Car.cls */ METHOD PUBLIC LOGICAL ReserveCar (INPUT pcCarId AS CHARACTER). /* Do reserve work for all cars. */ END METHOD. END CLASS. CLASS AmericanCar INHERITS Car: /* Source file AmericanCar.cls */ METHOD PUBLIC OVERRIDE LOGICAL ReserveCar (INPUT pcCarId AS CHARACTER). SUPER:ReserveCar(INPUT pcCarId). /* Do reserve work for American cars. */ END METHOD. END CLASS. DEV-11: Architecting Your Application in OpenEdge 10

Support for classes: strong typing Enforcing consistency and correctness Classes provide strong object typing to assist A variable holds a reference to a specific class The compiler verifies that all references are correct …even cross-checking many classes Interface files also represent programming contracts to enforce Instance of Car Class Instance of Dealer Class DEV-11: Architecting Your Application in OpenEdge 10

Strong typing in classes MyProc.p SomeProc: Here’s some procedural code: Will it work at runtime? Who knows? Here’s some class-based code: The compiler makes sure it will! DEFINE VARIABLE hProc AS HANDLE. RUN MyProc.p PERSISTENT SET hProc. RUN SomeProc IN hProc(INPUT 5). ? MyProc.p SomeFunc: DEFINE VARIABLE rCar AS CLASS Car. rCar = NEW Car(). rCar:SomeMethod(INPUT 5). Car.cls SomeMethod: DEV-11: Architecting Your Application in OpenEdge 10

Under Development D I S C L A I M E R This talk includes information about potential future products and/or product enhancements. What I am going to say reflects our current thinking, but the information contained herein is preliminary and subject to change. Any future products we ultimately deliver may be materially different from what is described here. D I S C L A I M E R DEV-11: Architecting Your Application in OpenEdge 10

Classes for the Advanced UI in OE 10.2 Use .NET controls (both Microsoft and third party) as if they were native to ABL Controls are expressed as objects Use ABL classes to build a UI with them Visual Designer in OpenEdge Architect Integrate these new classes with other ABL classes or procedures DEV-11: Architecting Your Application in OpenEdge 10

In short: Using Classes in Your Architecture Consider the practical benefits of using classes Definitional inheritance Strong type checking More compiler support for finding errors Using and extending Advanced UI controls DEV-11: Architecting Your Application in OpenEdge 10

Agenda What’s Your Starting Point? Using the OERA to Help You Adapt ProDataSets and Your Architecture Opening Your Application to the World Using Classes in Your Application Other Areas of Support DEV-11: Architecting Your Application in OpenEdge 10

Other Areas of Support Auditing Authentication Structured error handling Don’t just think about the feature! Think about how it contributes to architecture DEV-11: Architecting Your Application in OpenEdge 10

In Summary Consider the OpenEdge Reference Architecture as a set of practical guidelines Make sure you are aware of key OpenEdge 10 features Map features to their benefit in designing (changes to) your application DEV-11: Architecting Your Application in OpenEdge 10

For More Information, go to… PSDN <URL> to item or category related to session topic Progress eLearning Community: Title Documentation: DEV-11: Architecting Your Application in OpenEdge 10

Relevant Exchange Sessions Session-ID: Session Title DEV-11: Architecting Your Application in OpenEdge 10

? Questions DEV-11: Architecting Your Application in OpenEdge 10

Thank You DEV-11: Architecting Your Application in OpenEdge 10

DEV-11: Architecting Your Application in OpenEdge 10

Common Infrastructure OERA component slide Presentation Enterprise Services Common Infrastructure Business Components Data Access Data Sources DEV-11: Architecting Your Application in OpenEdge 10