ORACLE FUSION MIDDLEWARE
|
|
|
- Lora Merritt
- 9 years ago
- Views:
Transcription
1 ORACLE FUSION MIDDLEWARE
2 Oracle Application Server 10g MapViewer Technical Overview September 2005 Oracle Corporation
3 Topics Overview Main features Concepts APIs Fast start Map Definition Tool OTN utility: Enterpriselevel management of map metadata Web resources
4 MapViewer Overview Map rendering service in Oracle Application Server 10g. Server component; NOT a client viewer Visualizes data managed by Oracle Spatial and Locator. Provides a comprehensive set of APIs: XML and Java-based Enables easy development of client viewers Enterprise-level solution for management of map content and metadata
5 MapViewer Overview Basic Flow of Action Is a J2EE servlet, MapViewer uses a request/response model. Mapping Client 1: Map Request 2: Response Datasource Base map Center & Size Dynamic data Map Viewer Map Image URL Minimum Bounding Rectangle of the Map Oracle Spatial
6 MapViewer Overview Architecture Client Mid-tier Browser/App HTTP Oracle Application Server 10g (or standalone OC4J ) MapViewer JDBC Database Oracle Spatial Mapping Metadata
7 MapViewer Overview - Main Characteristics Map Request Scalable. Stateless. Client MapViewer Result All spatial queries are performed in the db by Oracle Spatial Makes use of JDBC connection pooling and caching Caches Mapping Metadata (basemap/theme/style definitions) Caches geometric and image data in the mid-tier. Easy to setup and configure (with Oracle AS or standalone OC4J)
8 Topics Overview Concepts Main features APIs Fast start Map Definition Tool OTN utility: Enterpriselevel management of map metadata Web resources
9 MapViewer Key Concepts Datasource Map Basemap Theme Style Styled GeoFeature
10 MapViewer Key Concepts Datasource A MapViewer admin defines one or more target databases from which MapViewer will generate maps. These target databases are called Datasources. A datasource always references to a database schema that contains some spatial layers or tables. Every map request MUST specify a datasource Map Request Client sends a map request to MapViewer MapViewer returns a map to client
11 Map = basemap + additional themes + additional features + legend + title + footnote MapViewer Concepts What is a Map? Themes Legend Title
12 MapViewer Concepts: basemap A collection of predefined themes Theme 1: county Theme 2: household income Theme 3: earthquakes
13 Theme = a collection of Geo-Features A geo-feature
14 Theme = a collection of Styled Geo- Features A geo-feature
15 Themes Provide the Data for a Map Request A map request can contain any combination of the following types of themes: Predefined themes implicitly included in a basemap. JDBC themes that provide dynamic SQL queries. Explicitly referenced predefined themes whose definitions are stored in a database. User-supplied individual features (grouped into a single theme at the server-side). Note: you can have at most 1 basemap per map request.
16 A Geo-feature = geometry + attributes + styling information population, sales, Vector data from database or map request Lancaster Feature style (color, marker, line/area pattern or advanced) Label style (font/color)
17 Style : There are 6 types of styles in MapViewer COLOR (applicable to any geometry) MARKER (points) LINE (linestrings) ADVANCED (thematic mapping) AREA (polygons) TEXT (labels)
18 Style Applies to Individual Geometries Each geometry can appear differently when rendered using different styles. For instance: Line Style 1 Line Style 2 Line Style 3
19 MapViewer Key Concepts - Metadata The definitions of base maps, predefined themes and styles are the metadata for mapping: Basemaps Themes Styles All mapping metadata are stored in the database. Three views are automatically created for each database user to store them: user_sdo_maps user_sdo_themes user_sdo_styles
20 Topics Overview Concepts Main Features APIs Fast start Map Definition Tool OTN utility: Enterpriselevel management of map metadata Web resources
21 Key Features in This Release Enhanced Mapping and Visualization Capabilities Enhanced APIs and JDeveloper Integration Enhanced Administrative Functions
22 Enhanced Mapping and Visualization Capabilities Supports complex thematic mapping. Integrated visualization of geo-referenced imagery and vector data. GeoRaster theme & Customizable Image Renderer. Spatial 10g Network and Topology themes Generates maps in SVG and JPEG formats. Improved area/polygon label placement algorithm. Supports seamless browsing of global data using a built-in globular projection (experimental in this release).
23 Enhanced Mapping and Visualization Capabilities continued Multi-threaded geometry loading from database. Automatic caching of geometry and imagery data in MapViewer. Pre-caching of entire themes in memory (eliminates geometry fetching from database for fixed geometry layers) Map legend support Dynamic theme support through JDBC themes. Multiple datasource support. Sticky label support: force a label to appear regardless of conflicts.
24 Enhanced Administrative Functions Restart MapViewer without restarting the container itself. Administrative functions are now secured through a login page. Supports invalidation of cached data by theme. More options/controls in the mapviewerconfig.xml file. Permanent data sources with automatically encrypted passwords can be defined in the mapviewerconfig.xml file.
25 Topics Overview Main features Concepts APIs Fast start Map Definition Tool OTN utility: Enterpriselevel management of map metadata Web resources
26 MapViewer API MapViewer supports 3 API flavors: XML-based : the ultimate API Java thin library : a mapping bean (w/o UI) JSP custom tags : a subset of functions.
27 MapViewer XML API 3 types of XML requests: Map-Request: requesting a map Info-Request: searching for attribute info based on locations Non-Map-Request: for administrative or metadata requests The XML API is the native language to the MapViewer! The XML DTD, examples and usage notes are detailed in MapViewer User s Guide!
28 MapViewer XML API - Map-Request Partial DTD of Map-Request: <!ELEMENT map_request ((box center)?, srs?, legend?, themes?, geofeature*)> <!ATTLIST map_request datasource CDATA #REQUIRED basemap CDATA #IMPLIED width CDATA #IMPLIED height CDATA #IMPLIED antialiasing "FALSE" #IMPLIED format (GIF_STREAM GIF_URL PNG_STREAM PNG_URL) #IMPLIED title CDATA #IMPLIED bgcolor CDATA #IMPLIED bgimage CDATA #IMPLIED > For complete DTD please refer to MapViewer User s guide.
29 MapViewer XML API - Map-Request In XML jargon: A <map_request> element must define a datasource as one of its attributes, and can optionally include a <basemap>, a <center>, list of <theme>s, <style>s and individual <GeoFeature>s as its child-nodes. It may also include a <legend> element.
30 MapViewer XML API
31 MapViewer XML API - Sample Map Response Note that a map named omsmap64.png has been created as result of the map request, and it can be viewed using the URL returned in the map response above.
32 MapViewer XML API - Map-Request for legend only You can request just a legend image using a Map Request that embeds a legend specification only.
33 MapViewer XML API - Response for legend-only map request
34 MapViewer XML API - Info-Request Search/identify non-spatial attributes Search using direct SQL query Search Within Radius Search At Point Search Within Area Search Within Rectangle Search Nearest Neighbor
35 MapViewer XML API - Info-Request : sample Direct SQL query
36 MapViewer XML API - Info-Response MapViewer returns XSQL-like response.
37 MapViewer XML API - Info-Request : sample Search Within Radius
38 MapViewer XML API - When Info Request and Map Request are combined:
39 MapViewer XML API - Non-Map-Requests MapViewer supports following types of admin/metadata requests: Managing Data Sources (add/remove/list/redefine datasources) Listing All predefined base Maps in a datasource Listing predefined Themes (in a datasource, and are part of a base Map) Managing Styles (adding/listing styles) Clearing Metadata Cache for a Data Source Clearing Cache for a predefined theme Restarting the MapViewer instance For details and DTDs please refer to the MapViewer User s Guide.
40 MapViewer XML API The XML API is the most powerful and flexible. You can manually construct a XML map request, and send it to MapViewer using the HTTP protocol from any programming language that supports HTTP connection and messaging. For instance you can even use PL/SQL from inside an Oracle Database to send a map request outside to the MapViewer and have it generate a map. But it is often difficult to directly manipulate XML documents in an application. That s why there is a Java API!
41 MapViewer Java API - Java API An easier to use API than XML. Provides a bean -like interface. Eventually the request is quietly converted into an XML doc. The library is named mvclient.jar, and can be found in the unpacked directory of a MapViewer deployment: mapviewer/web/web- INF/lib A code segment using the lib: import oracle.spatial.mapclient.mapviewer; // this class is ALL you need. MapViewer bean = new MapViewer( ); // sets up a request bean.setdatasource( ca@spatial ); bean.setbasemapname( us_base ); bean.setbackgroundcolor(color.white); bean.setcenterandsize(-122.4, 37.8, 0.5); bean.addjdbctheme( ca@spatial, dyndata, select location from cities where + pop > 50000, location, M.STAR, NULL, NULL, true); bean.run(); //issues the request String mapurl = bean.getgeneratedmapimageurl(); // display the map image bean.zoomin(100,200, 2.0); mapurl = bean.getgeneratedmapimageurl(); // display the zoomed in map image. JavaDoc
42 MapViewer API JSP taglib - Provides a simple set of custom tags Does not include all functions in the Java API or the XML API. Meant as a fast start for beginners. A code segment using the custom tags: The tag library is also in mvclient.jar, its TLD file is MapViewer deployment: mapviewer/web/web- INF/lib
43 Topics Overview Main features Concepts APIs Fast Start Map Definition Tool OTN utility: Enterpriselevel management of map metadata Web resources
44 MapViewer Fast Start How to start if you have never used MapViewer before: Download latest Quick Start kit from the OTN MapViewer page Download the Map Definition Tool (mapdef.jar) utility from OTN under Spatial page. Start up Map Definition Tool to style your existing spatial data. If you do not have any spatial data, download the demo data from OTN, follow instruction to import it into the your database. start up OC4J and navigate to page, and have fun!
45 MapViewer Fast Start Deliverables A J2EE.ear file (includes code, sample config files et al.) shipped with Oracle Application Server. A map definition tool utility to manage mapping metadata (download from OTN only) Can be deployed in a standalone OC4j (Oracle Container for J2EE) or full Oracle Application Server. Configured to run out of the box for new users.
46 MapViewer Fast Start Advanced users can configure the MapViewer to: save generated maps at a different location, with a customizable life-cycle. Also define how the maps should be referenced using URL. output different levels/volumes of logging messages. use global map parameters such as: map title, copyright notes, map logo image. Can customize font, position on map. customize spatial data cache size or turn it off completely. dynamically load custom Image renderers (user classes). predefine known data sources. All by editing the mapviewerconfig.xml file!
47 Topics Overview Main features Concepts APIs Fast start Map Definition Tool OTN utility: Enterpriselevel management of map metadata Web resources
48 Map Definition Tool OTN Utility Recall that Mapping Metadata = definitions of basemaps, predefined themes & styles so that map metadata be shared among many users in an enterprise. Map Definition Tool OTN utility enables enterprise-wide management of map metadata
49 Metadata for Mapping Three views: user_sdo_maps user_sdo_themes user_sdo_styles associated db Mapping Metadata Users customize their maps by modifying contents in these three metadata views. Users modify/manage these views through the Map Definition Tool OTN utility (or directly through SQL).
50 View USER_SDO_MAPS user_sdo_maps (name varchar2, description varchar2, definition CLOB); name uniquely references to a basemap, e.g. us_base definition is an XML document that lists all the themes included in this basemap. A Sample basemap definition doc: <? XML version= 1.0 > <MapDefinition title= elocation Customers > <Theme name= us_state min_scale= 0.5 max_scale= /> <Theme name= us_road_0 min_scale= 0.2 max_scale= /> <Theme name= us_road_1 /> <Theme name= us_parks min_scale= 0.3 max_scale= 0.05 /> <Theme name= us_lakes min_scale= 0.3 max_scale= 0.05 /> </MapDefinition>
51 View USER_SDO_THEMES user_sdo_themes (name varchar2, description varchar2 base_table varchar2, geometry_column varchar2, styling_rules CLOB ); A Sample styling_rules column: <?xml version= 1.0?> <styling_rules> <rule> <features style= m.airport > name like % INTL AIRPORT </features> <label column= substr(name, 1, 3) style= t.airport name > 1 </lable> <rule> </styling_rules>
52 View USER_SDO_THEMES contd. Anatomy of the styling_rules column: An XML doc with root element <styling_rules> and child nodes <rule>s. Each <rule> node has a mandatory <feature> node, and an optional <label> node. The <feature> node specifies features/rows to be included in this theme, using any SQL WHERE clause. It has one attribute style specifying the name of the style used in rendering. The optional <label> node specifies whether the features should be labeled. Any value/sql expression greater than 0 means labeling is required. The column attribute node designates a column in the base table whose values will be used as the label text. The style attribute specifies the text style for labeling. <?xml version= 1.0?> <styling_rules> <rule> <features style= m.airport > name like % INTL AIRPORT </features> <label column= name style= t.airport name > 1 </lable> <rule> </styling_rules>
53 View USER_SDO_STYLES user_sdo_styles (name varchar2, type varchar2 description varchar2, definition CLOB, image BLOB, geometry MDSYS.SDO_GEOMETRY ); All six types of styles are stored in this schema. For details please see the MapViewer User s Guide.
54 Web Resources Oracle Application Server MapViewer site on OTN: Oracle Spatial site on OTN: Oracle Discussion Forum on Spatial/MapViewer:
55 Appendix Screen Shots
56 Screen Shots of Map Definition Tool Managing Color Styles
57 Screen Shots of Map Definition Tool - Marker Styles
58 Screen Shots of Map Definition Tool - Line Styles
59 Screen Shots of Map Definition Tool - Area Styles
60 Screen Shots of Map Definition Tool - Text Styles
61 Screen Shots of Map Definition Tool - Advanced Styles
62 Screen Shots of Map Definition Tool - Themes
63 Screen Shots of Map Definition Tool - basemaps
64 A simple application tracking a ship s locations as it travels from San Francisco to Singapore.
65 Overlaying vector data (roads) on top of an image theme (aerial photos of downtown Boston)
66 Enhanced Mapping and Visualization Capabilities Sample Screenshots A simple floor plan map with automatic label placement. Each pie chart represents household income distribution in each block.
67 A map showing feature identification and location-based queries/searches.
68 JDeveloper with custom MapViewer JSP tags in its component palette, and a map metadata browser in its Connections panel.
69 ORACLE FUSION MIDDLEWARE
Oracle Platform GIS & Location-Based Services. Fred Louis Solution Architect Ohio Valley
Oracle Platform GIS & Location-Based Services Fred Louis Solution Architect Ohio Valley Overview Geospatial Technology Trends Oracle s Spatial Technologies Oracle10g Locator Spatial Oracle Application
Getting Started with Oracle Spatial
Getting Started with Oracle Spatial Tim Armitage Agenda Create database structures Load Spatial Data Index Issue SQL queries Develop simple Oracle Application Server Mapviewer application Oracle Spatial
Documentation of open source GIS/RS software projects
Contract no. Workpackage Delivery Delivery Date 030776 WP1 D1.6 2007-07-02 CASCADOSS Development of a trans-national cascade training programme on Open Source GIS&RS Software for environmental applications
Red Hat Enterprise Portal Server: Architecture and Features
Red Hat Enterprise Portal Server: Architecture and Features By: Richard Li and Jim Parsons March 2003 Abstract This whitepaper provides an architectural overview of the open source Red Hat Enterprise Portal
ORACLE BUSINESS INTELLIGENCE WORKSHOP
ORACLE BUSINESS INTELLIGENCE WORKSHOP Integration of Oracle BI Publisher with Oracle Business Intelligence Enterprise Edition Purpose This tutorial mainly covers how Oracle BI Publisher is integrated with
Oracle Database 10g: Building GIS Applications Using the Oracle Spatial Network Data Model. An Oracle Technical White Paper May 2005
Oracle Database 10g: Building GIS Applications Using the Oracle Spatial Network Data Model An Oracle Technical White Paper May 2005 Building GIS Applications Using the Oracle Spatial Network Data Model
v4.8 Getting Started Guide: Using SpatialWare with MapInfo Professional for Microsoft SQL Server
v4.8 Getting Started Guide: Using SpatialWare with MapInfo Professional for Microsoft SQL Server Information in this document is subject to change without notice and does not represent a commitment on
Deploying Oracle Business Intelligence Publisher in J2EE Application Servers Release 10.1.3.2.0
Oracle Business Intelligence Publisher Deploying Oracle Business Intelligence Publisher in J2EE Application Servers Release 10.1.3.2.0 Part No. B32481-01 December 2006 Introduction Oracle BI Publisher
An Oracle White Paper May 2013. Creating Custom PDF Reports with Oracle Application Express and the APEX Listener
An Oracle White Paper May 2013 Creating Custom PDF Reports with Oracle Application Express and the APEX Listener Disclaimer The following is intended to outline our general product direction. It is intended
Spectrum Technology Platform. Version 9.0. Spectrum Spatial Developer Guide
Spectrum Technology Platform Version 9.0 Spectrum Spatial Developer Guide Contents Chapter 1: Introduction...9 What Is Location Intelligence?...10 What Is the Location Intelligence Module?...10 Location
Using Map Views and Spatial Analytics in OBI 11g. BIWA Summit 2014
Using Map Views and Spatial Analytics in OBI 11g BIWA Summit 2014 Tim Vlamis Dan Vlamis Vlamis Software Solutions 816-781-2880 http://www.vlamis.com Vlamis Software Solutions Vlamis Software founded in
<Insert Picture Here> Oracle SQL Developer 3.0: Overview and New Features
1 Oracle SQL Developer 3.0: Overview and New Features Sue Harper Senior Principal Product Manager The following is intended to outline our general product direction. It is intended
[email protected] João Diogo Almeida Premier Field Engineer Microsoft Corporation
[email protected] João Diogo Almeida Premier Field Engineer Microsoft Corporation Reporting Services Overview SSRS Architecture SSRS Configuration Reporting Services Authoring Report Builder Report
An Oracle White Paper September 2011. Oracle Team Productivity Center
Oracle Team Productivity Center Overview An Oracle White Paper September 2011 Oracle Team Productivity Center Overview Oracle Team Productivity Center Overview Introduction... 1 Installation... 2 Architecture...
Getting Started with Web Applications
3 Getting Started with Web Applications A web application is a dynamic extension of a web or application server. There are two types of web applications: Presentation-oriented: A presentation-oriented
Migration Guide Software, Database and Version Migration
Migration Guide Software, Database and Version Migration Release 6.0 February 2012 Yellowfin Release 6.0 Migration Guide Under international copyright laws, neither the documentation nor the software may
iway iway Application System Adapter for Amdocs ClarifyCRM User s Guide Version 5 Release 6 Service Manager (SM) DN3501933.0109
iway iway Application System Adapter for Amdocs ClarifyCRM User s Guide Version 5 Release 6 Service Manager (SM) DN3501933.0109 EDA, EDA/SQL, FIDEL, FOCCALC, FOCUS, FOCUS Fusion, FOCUS Vision, Hospital-Trac,
Oracle9i Application Server: Options for Running Active Server Pages. An Oracle White Paper July 2001
Oracle9i Application Server: Options for Running Active Server Pages An Oracle White Paper July 2001 Oracle9i Application Server: Options for Running Active Server Pages PROBLEM SUMMARY...3 INTRODUCTION...3
LabVIEW Internet Toolkit User Guide
LabVIEW Internet Toolkit User Guide Version 6.0 Contents The LabVIEW Internet Toolkit provides you with the ability to incorporate Internet capabilities into VIs. You can use LabVIEW to work with XML documents,
MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC
MyOra 3.0 SQL Tool for Oracle User Guide Jayam Systems, LLC Contents Features... 4 Connecting to the Database... 5 Login... 5 Login History... 6 Connection Indicator... 6 Closing the Connection... 7 SQL
Scott Moore, Esri April 4, 2016 2016 Intermountain, Great Falls, MT
Create Great Web Apps No Coding Required Scott Moore, Esri April 4, 2016 2016 Intermountain, Great Falls, MT Agenda Product overview Web AppBuilder for ArcGIS tour What s New November 2015 ArcGIS Online
WebLogic Server: Installation and Configuration
WebLogic Server: Installation and Configuration Agenda Application server / Weblogic topology Download and Installation Configuration files. Demo Administration Tools: Configuration
To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server 2008.
Znode Multifront - Installation Guide Version 6.2 1 System Requirements To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server
Introduction to NaviGenie SDK Client API for Android
Introduction to NaviGenie SDK Client API for Android Overview 3 Data access solutions. 3 Use your own data in a highly optimized form 3 Hardware acceleration support.. 3 Package contents.. 4 Libraries.
Ad Hoc Reporting. Usage and Customization
Usage and Customization 1 Content... 2 2 Terms and Definitions... 3 2.1 Ad Hoc Layout... 3 2.2 Ad Hoc Report... 3 2.3 Dataview... 3 2.4 Page... 3 3 Configuration... 4 3.1 Layout and Dataview location...
Oracle Forms Services Secure Web.Show_Document() calls to Oracle Reports
Oracle Forms Services Secure Web.Show_Document() calls to Oracle Reports $Q2UDFOH7HFKQLFDO:KLWHSDSHU )HEUXDU\ Secure Web.Show_Document() calls to Oracle Reports Introduction...3 Using Web.Show_Document
Quick start. A project with SpagoBI 3.x
Quick start. A project with SpagoBI 3.x Summary: 1 SPAGOBI...2 2 SOFTWARE DOWNLOAD...4 3 SOFTWARE INSTALLATION AND CONFIGURATION...5 3.1 Installing SpagoBI Server...5 3.2Installing SpagoBI Studio and Meta...6
ER/Studio Enterprise Portal 1.0.2 User Guide
ER/Studio Enterprise Portal 1.0.2 User Guide Copyright 1994-2008 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A. All rights
Sisense. Product Highlights. www.sisense.com
Sisense Product Highlights Introduction Sisense is a business intelligence solution that simplifies analytics for complex data by offering an end-to-end platform that lets users easily prepare and analyze
Oracle BI Publisher Enterprise Cluster Deployment. An Oracle White Paper August 2007
Oracle BI Publisher Enterprise Cluster Deployment An Oracle White Paper August 2007 Oracle BI Publisher Enterprise INTRODUCTION This paper covers Oracle BI Publisher cluster and high availability deployment.
Oracle Application Development Framework Overview
An Oracle White Paper June 2011 Oracle Application Development Framework Overview Introduction... 1 Oracle ADF Making Java EE Development Simpler... 2 THE ORACLE ADF ARCHITECTURE... 3 The Business Services
2012 LABVANTAGE Solutions, Inc. All Rights Reserved.
LABVANTAGE Architecture 2012 LABVANTAGE Solutions, Inc. All Rights Reserved. DOCUMENT PURPOSE AND SCOPE This document provides an overview of the LABVANTAGE hardware and software architecture. It is written
Working With Virtual Hosts on Pramati Server
Working With Virtual Hosts on Pramati Server 13 Overview Virtual hosting allows a single machine to be addressed by different names. There are two ways for configuring Virtual Hosts. They are: Domain Name
Oracle Spatial 10g. An Oracle White Paper August 2005
Oracle Spatial 10g An Oracle White Paper August 2005 Oracle Spatial 10g INTRODUCTION Oracle Spatial, an option for Oracle Database 10g Enterprise Edition, includes advanced spatial capabilities to support
JReport Server Deployment Scenarios
JReport Server Deployment Scenarios Contents Introduction... 3 JReport Architecture... 4 JReport Server Integrated with a Web Application... 5 Scenario 1: Single Java EE Server with a Single Instance of
SAP Business Objects Business Intelligence platform Document Version: 4.1 Support Package 7 2015-11-24. Data Federation Administration Tool Guide
SAP Business Objects Business Intelligence platform Document Version: 4.1 Support Package 7 2015-11-24 Data Federation Administration Tool Guide Content 1 What's new in the.... 5 2 Introduction to administration
This document summarizes the steps of deploying ActiveVOS on oracle Weblogic Platform.
logic Overview This document summarizes the steps of deploying ActiveVOS on oracle Weblogic Platform. Legal Notice The information in this document is preliminary and is subject to change without notice
PRACTICAL ADF APPLICATION DEPLOYMENT FOR FUSION MIDDLEWARE ADMINISTRATORS
PRACTICAL ADF APPLICATION DEPLOYMENT FOR FUSION MIDDLEWARE ADMINISTRATORS Simon, Veriton Limited Paper submitted to: ODTUG Kaleidoscope 2008 conference Abstract Oracle s Application Development Framework
An Overview of Oracle Forms Server Architecture. An Oracle Technical White Paper April 2000
An Oracle Technical White Paper INTRODUCTION This paper is designed to provide you with an overview of some of the key points of the Oracle Forms Server architecture and the processes involved when forms
A Beginners Guide to Fusion Middleware
A Beginners Guide to Fusion Middleware Hans Forbrich Forbrich Computer Consulting Ltd. Congratulations of Brazil for your OTN Tour! Thank you to our interpreter And Thank You for inviting me A Beginners
HP OO 10.X - SiteScope Monitoring Templates
HP OO Community Guides HP OO 10.X - SiteScope Monitoring Templates As with any application continuous automated monitoring is key. Monitoring is important in order to quickly identify potential issues,
Actuate Business Intelligence and Reporting Tools (BIRT)
Product Datasheet Actuate Business Intelligence and Reporting Tools (BIRT) Eclipse s BIRT project is a flexible, open source, and 100% pure Java reporting tool for building and publishing reports against
Communiqué 4. Standardized Global Content Management. Designed for World s Leading Enterprises. Industry Leading Products & Platform
Communiqué 4 Standardized Communiqué 4 - fully implementing the JCR (JSR 170) Content Repository Standard, managing digital business information, applications and processes through the web. Communiqué
Building an Agile PLM Web Application with JDeveloper and Agile 93 Web Services
Building an Agile PLM Web Application with JDeveloper and Agile 93 Web Services Tutorial By: Maneesh Agarwal,Venugopalan Sreedharan Agile PLM Development October 2009 CONTENTS Chapter 1 Overview... 3
Glassfish, JAVA EE, Servlets, JSP, EJB
Glassfish, JAVA EE, Servlets, JSP, EJB Java platform A Java platform comprises the JVM together with supporting class libraries. Java 2 Standard Edition (J2SE) (1999) provides core libraries for data structures,
Deploying Intellicus Portal on IBM WebSphere
Deploying Intellicus Portal on IBM WebSphere Intellicus Web-based Reporting Suite Version 4.5 Enterprise Professional Smart Developer Smart Viewer Intellicus Technologies [email protected] www.intellicus.com
Instant Chime for IBM Sametime Installation Guide for Apache Tomcat and Microsoft SQL
Instant Chime for IBM Sametime Installation Guide for Apache Tomcat and Microsoft SQL Spring 2015 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license
Oracle Application Server 10g Web Services Frequently Asked Questions Oct, 2006
Oracle Application Server 10g Web Services Frequently Asked Questions Oct, 2006 This FAQ addresses frequently asked questions relating to Oracle Application Server 10g Release 3 (10.1.3.1) Web Services
BarTender Integration Methods. Integrating BarTender s Printing and Design Functionality with Your Custom Application WHITE PAPER
BarTender Integration Methods Integrating BarTender s Printing and Design Functionality with Your Custom Application WHITE PAPER Contents Introduction 3 Integrating with External Data 4 Importing Data
ADF. Joe Huang Joe Huang Senior Principal Product Manager, Mobile Development Platform, Oracle Application Development Tools
Developing for Mobile Devices with Oracle ADF Joe Huang Joe Huang Senior Principal Product Manager, Mobile Development Platform, Oracle Application Development Tools Agenda Overview ADF Mobile Browser
SQL Anywhere 12 New Features Summary
SQL Anywhere 12 WHITE PAPER www.sybase.com/sqlanywhere Contents: Introduction... 2 Out of Box Performance... 3 Automatic Tuning of Server Threads... 3 Column Statistics Management... 3 Improved Remote
<Insert Picture Here> Web 2.0 Data Visualization with JSF. Juan Camilo Ruiz Senior Product Manager Oracle Development Tools
Web 2.0 Data Visualization with JSF Juan Camilo Ruiz Senior Product Manager Oracle Development Tools 1 The preceding is intended to outline our general product direction. It is intended
Business Process Management with @enterprise
Business Process Management with @enterprise March 2014 Groiss Informatics GmbH 1 Introduction Process orientation enables modern organizations to focus on the valueadding core processes and increase
Configuring Apache HTTP Server as a Reverse Proxy Server for SAS 9.3 Web Applications Deployed on Oracle WebLogic Server
Configuration Guide Configuring Apache HTTP Server as a Reverse Proxy Server for SAS 9.3 Web Applications Deployed on Oracle WebLogic Server This document describes how to configure Apache HTTP Server
TIBCO Spotfire Automation Services Installation and Configuration
TIBCO Spotfire Automation Services Installation and Configuration Software Release 7.0 February 2015 Updated March 2015 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES
Contents. The OWRB Floodplain Viewer. Creating Maps... 8. Helpful Tips... 10
Contents QUICK START GUIDE... 2-5 Add layers...9 Search for Layers...9 COMPREHENSIVE GUIDE... 6 Navigate the map...6 Locate specific places...6 Add layer from file...9 Add layer from web...9 Display pop-up
Crystal Reports XI. Overview. Contents. Understanding the CRConfig.xml File
Understanding the Config.xml File Overview This document provides information about the Config.xml configuration file that is shipped with Crystal Reports XI. In particular, this document discusses the
<Insert Picture Here> Oracle Application Express 4.0
Oracle Application Express 4.0 The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any
Using EMC Documentum with Adobe LiveCycle ES
Technical Guide Using EMC Documentum with Adobe LiveCycle ES Table of contents 1 Deployment 3 Managing LiveCycle ES development assets in Documentum 5 Developing LiveCycle applications with contents in
Oracle WebLogic Server 11g: Administration Essentials
Oracle University Contact Us: 1.800.529.0165 Oracle WebLogic Server 11g: Administration Essentials Duration: 5 Days What you will learn This Oracle WebLogic Server 11g: Administration Essentials training
s@lm@n Oracle Exam 1z0-599 Oracle WebLogic Server 12c Essentials Version: 6.4 [ Total Questions: 91 ]
s@lm@n Oracle Exam 1z0-599 Oracle WebLogic Server 12c Essentials Version: 6.4 [ Total Questions: 91 ] Question No : 1 How can you configure High Availability for interacting with a non-oracle database
Internet Engineering: Web Application Architecture. Ali Kamandi Sharif University of Technology [email protected] Fall 2007
Internet Engineering: Web Application Architecture Ali Kamandi Sharif University of Technology [email protected] Fall 2007 Centralized Architecture mainframe terminals terminals 2 Two Tier Application
Application Express Web Application Development
Application Express Web Application Development Agenda What is Oracle Application Express Demonstration Features and benefits Customer examples Conclusion Next steps Q&A Does Your Organization: Use spreadsheets
Copyright 2014 Jaspersoft Corporation. All rights reserved. Printed in the U.S.A. Jaspersoft, the Jaspersoft
5.6 Copyright 2014 Jaspersoft Corporation. All rights reserved. Printed in the U.S.A. Jaspersoft, the Jaspersoft logo, Jaspersoft ireport Designer, JasperReports Library, JasperReports Server, Jaspersoft
The end. Carl Nettelblad 2015-06-04
The end Carl Nettelblad 2015-06-04 The exam and end of the course Don t forget the course evaluation! Closing tomorrow, Friday Project upload deadline tonight Book presentation appointments with Kalyan
This presentation is for informational purposes only and may not be incorporated into a contract or agreement.
This presentation is for informational purposes only and may not be incorporated into a contract or agreement. This following is intended to outline our general product direction. It is intended for information
Client/server is a network architecture that divides functions into client and server
Page 1 A. Title Client/Server Technology B. Introduction Client/server is a network architecture that divides functions into client and server subsystems, with standard communication methods to facilitate
Crystal Reports for Eclipse
Crystal Reports for Eclipse Table of Contents 1 Creating a Crystal Reports Web Application...2 2 Designing a Report off the Xtreme Embedded Derby Database... 11 3 Running a Crystal Reports Web Application...
TIBCO ActiveMatrix BusinessWorks Process Monitor Server. Installation
TIBCO ActiveMatrix BusinessWorks Process Monitor Server Installation Software Release 2.1.2 Published: May 2013 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF
The full setup includes the server itself, the server control panel, Firebird Database Server, and three sample applications with source code.
Content Introduction... 2 Data Access Server Control Panel... 2 Running the Sample Client Applications... 4 Sample Applications Code... 7 Server Side Objects... 8 Sample Usage of Server Side Objects...
How To Install Powerpoint 6 On A Windows Server With A Powerpoint 2.5 (Powerpoint) And Powerpoint 3.5.5 On A Microsoft Powerpoint 4.5 Powerpoint (Powerpoints) And A Powerpoints 2
DocAve 6 Service Pack 1 Installation Guide Revision C Issued September 2012 1 Table of Contents About the Installation Guide... 4 Submitting Documentation Feedback to AvePoint... 4 Before You Begin...
Monitoring HP OO 10. Overview. Available Tools. HP OO Community Guides
HP OO Community Guides Monitoring HP OO 10 This document describes the specifications of components we want to monitor, and the means to monitor them, in order to achieve effective monitoring of HP Operations
Using CAD Data in ArcGIS
Esri International User Conference San Diego, California Technical Workshops July 27, 2012 Using CAD Data in ArcGIS Jeff Reinhart & Phil Sanchez Agenda Overview of ArcGIS CAD Support Using CAD Datasets
An Oracle White Paper October 2009. Frequently Asked Questions for Oracle Forms 11g
An Oracle White Paper October 2009 Frequently Asked Questions for Oracle Forms 11g Disclaimer The following is intended to outline our general product direction. It is intended for information purposes
OBIEE 11g Scaleout & Clustering
OBIEE 11g Scaleout & Clustering Borkur Steingrimsson, Rittman Mead Consulting Collaborate, Orlando, April 2011 Agenda Review OBIEE Architecture Installation Scenarios : Desktop, Departmental, Enterprise
CORISECIO. Quick Installation Guide Open XML Gateway
Quick Installation Guide Open XML Gateway Content 1 FIRST STEPS... 3 2 INSTALLATION... 3 3 ADMINCONSOLE... 4 3.1 Initial Login... 4 3.1.1 Derby Configuration... 5 3.1.2 Password Change... 6 3.2 Logout...
SOLR INSTALLATION & CONFIGURATION GUIDE FOR USE IN THE NTER SYSTEM
SOLR INSTALLATION & CONFIGURATION GUIDE FOR USE IN THE NTER SYSTEM Prepared By: Leigh Moulder, SRI International [email protected] TABLE OF CONTENTS Table of Contents. 1 Document Change Log 2 Solr
New 11g Features in Oracle Developer Tools for Visual Studio. An Oracle White Paper January 2008
New 11g Features in Oracle Developer Tools for Visual Studio An Oracle White Paper January 2008 New 11g Features in Oracle Developer Tools for Visual Studio Introduction... 3 Integration with Visual Studio
Adam Rauch Partner, LabKey Software [email protected]. Extending LabKey Server Part 1: Retrieving and Presenting Data
Adam Rauch Partner, LabKey Software [email protected] Extending LabKey Server Part 1: Retrieving and Presenting Data Extending LabKey Server LabKey Server is a large system that combines an extensive set
E-mail Listeners. E-mail Formats. Free Form. Formatted
E-mail Listeners 6 E-mail Formats You use the E-mail Listeners application to receive and process Service Requests and other types of tickets through e-mail in the form of e-mail messages. Using E- mail
DEVELOPMENT OF AN ANALYSIS AND REPORTING TOOL FOR ORACLE FORMS SOURCE CODES
DEVELOPMENT OF AN ANALYSIS AND REPORTING TOOL FOR ORACLE FORMS SOURCE CODES by Çağatay YILDIRIM June, 2008 İZMİR CONTENTS Page PROJECT EXAMINATION RESULT FORM...ii ACKNOWLEDGEMENTS...iii ABSTRACT... iv
Performance Management Platform
Open EMS Suite by Nokia Performance Management Platform Functional Overview Version 1.4 Nokia Siemens Networks 1 (16) Performance Management Platform The information in this document is subject to change
MyOra 3.5. User Guide. SQL Tool for Oracle. Kris Murthy
MyOra 3.5 SQL Tool for Oracle User Guide Kris Murthy Contents Features... 4 Connecting to the Database... 5 Login... 5 Login History... 6 Connection Indicator... 6 Closing the Connection... 7 SQL Editor...
SharePoint Integration Framework Developers Cookbook
Sitecore CMS 6.3 to 6.6 and SIP 3.2 SharePoint Integration Framework Developers Cookbook Rev: 2013-11-28 Sitecore CMS 6.3 to 6.6 and SIP 3.2 SharePoint Integration Framework Developers Cookbook A Guide
Don t get it right, just get it written.
Deploying Applications to WebLogic Server Using JDeveloper and WLS Console Peter Koletzke Technical Director & Principal Instructor Co-author: Duncan Mills, Oracle Moral Don t get it right, just get it
Siebel Web UI Dynamic Developer Kit Guide. Siebel Innovation Pack 2013 Version 8.1/8.2 September 2013
Siebel Web UI Dynamic Developer Kit Guide Siebel Innovation Pack 2013 Version 8.1/8.2 September 2013 Copyright 2005, 2013 Oracle and/or its affiliates. All rights reserved. This software and related documentation
Cross-domain Identity Management System for Cloud Environment
Cross-domain Identity Management System for Cloud Environment P R E S E N T E D B Y: N A Z I A A K H TA R A I S H A S A J I D M. S O H A I B FA R O O Q I T E A M L E A D : U M M E - H A B I B A T H E S
ICE Trade Vault. Public User & Technology Guide June 6, 2014
ICE Trade Vault Public User & Technology Guide June 6, 2014 This material may not be reproduced or redistributed in whole or in part without the express, prior written consent of IntercontinentalExchange,
TIBCO Spotfire Automation Services 6.5. User s Manual
TIBCO Spotfire Automation Services 6.5 User s Manual Revision date: 17 April 2014 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO
ArcGIS Server Best Practices and Guidelines
ArcGIS Server Best Practices and Guidelines NEARC 2007 ESRI Technical Session ESRI, Boston Agenda Components and Deployment OS User Groups and Directory Configuration Service Architectures GIS Security
ArcGIS Viewer for Silverlight An Introduction
Esri International User Conference San Diego, California Technical Workshops July 26, 2012 ArcGIS Viewer for Silverlight An Introduction Rich Zwaap Agenda Background Product overview Getting started and
Building Java Servlets with Oracle JDeveloper
Building Java Servlets with Oracle JDeveloper Chris Schalk Oracle Corporation Introduction Developers today face a formidable task. They need to create large, distributed business applications. The actual
Oracle Forms Services Secure Web.Show_Document() calls to Oracle Reports Server 6i
Oracle Forms Services Secure Web.Show_Document() calls to Oracle Reports Server 6i $Q2UDFOH7HFKQLFDO:KLWHSDSHU 0DUFK Secure Web.Show_Document() calls to Oracle Reports Server 6i Introduction...3 solution
Architectural Overview
Architectural Overview Version 7 Part Number 817-2167-10 March 2003 A Sun ONE Application Server 7 deployment consists of a number of application server instances, an administrative server and, optionally,
Install guide for Websphere 7.0
DOCUMENTATION Install guide for Websphere 7.0 Jahia EE v6.6.1.0 Jahia s next-generation, open source CMS stems from a widely acknowledged vision of enterprise application convergence web, document, search,
Tutorial: Building a Web Application with Struts
Tutorial: Building a Web Application with Struts Tutorial: Building a Web Application with Struts This tutorial describes how OTN developers built a Web application for shop owners and customers of the
