A Distributed API for Searching Multimedia Databases
|
|
|
- Madeleine Little
- 10 years ago
- Views:
Transcription
1 A Distributed API for Searching Multimedia Databases Dale E. Parson Lisa Frye Agere Systems Kutztown University 1110 American Parkway NE Kutztown, Pennsylvania Allentown, PA, US, Abstract UPnP (Universal Plug n Play) specifies standards for interaction between user interface / control devices, called Control Points, and embedded application devices, called UPnP Devices, on an IP network. UPnP includes a six layer generic protocol for IP address establishment, UPnP Device discovery, Device and Service Description retrieval, Device Control in the form of interpreted XML procedure invocation from a Control Point to a Service, Service Eventing that notifies subscribers of changes in a Service s advertised state, and Presentation for vendor-specific extensions. UPnP AV (audio-visual) specifications extend these protocols for multimedia by defining Media Server and Media Renderer Device types, along with the Content Directory Service of metadata that describe and locate available video, audio and image content. This paper examines the standard operations available for metadata creation, maintenance, browse and search, and discusses deficiencies in UPnP s SQLlike search capability. We propose a keyword-based alternative to search whose benefits include ease of use familiar to users of Web search engines, incremental refinement of query results when browsing a large database, structuring of results in a classification hierarchy, and applicability to graphical manipulation and display of results. We have built a reference implementation of this query interface that uses only established database structures such as B-trees. Our results fit readily into the distributed UPnP AV framework. Keywords: distributed database, Internet, multimedia, plug and play, search engine 1. UPnP Interfaces for Multimedia 1.1 Universal Plug n Play Standards UPnP (Universal Plug n Play) defines a set of standards for interaction of embedded devices across communications networks in homes, businesses and other environments [1]. The generic UPnP device model applies to systems as simple as basic home appliance control / monitoring systems distributed across local area networks (LANs). At the other end of the networked continuum, this model applies to high definition video players receiving high bandwidth content streams across wide area networks (WANs). The generic UPnP model classifies all participating devices into one of two categories Control Points and UPnP Devices. A Control Point is a remote control that monitors Device status and controls Devices using UDP/IP and TCP/IP; a UPnP Device is an applicationspecific device under the control of one or more Control Points. A given Control Point or Device may be an embedded processing device, or it may be application software running on a computer. UPnP is primarily a set of standards for specifying extensible Control Point and Device protocol layers on top of UDP/IP and TCP/IP. This section outlines the generic, application-neutral layers of UPnP protocol. Addressing (UPnP Layer 0) establishes a unique IP address for each UPnP Control Point or Device on a network via DHCP (Dynamic Host Configuration Protocol) or Auto-IP [2]. Discovery (UPnP Layer 1) uses SSDP (Simple Service Discovery Protocol [3]) over UDP/IP to allow Control Points to query a network for Devices, and to allow Devices to advertise themselves to Control Points. When a Control Point joins a network, and at periodic intervals thereafter, it sends SSDP messages over multicast UDP/IP to a dedicated UDP port to query for available Devices; each Device replies via unicast UDP/IP to the Control Point. Similarly, when a Device joins a network, and at periodic intervals thereafter, it sends SSDP messages over multicast UDP/IP to a dedicated UDP port to notify all Control Points of its availability. Finally, when a Control Point or Device leaves a network, it uses SSDP/UDP/IP multicast to notify network devices of its departure. Description (UPnP Layer 2) uses HTTP/TCP/IP to obtain a set of Device and Service descriptions, via HTTP GET, in the form of XML documents. From this layer upward all UPnP interactions build on point-topoint TCP/IP. A Device houses one or more UPnP
2 Services; each is a collection of identifiers, networked functions and events. Device and Service descriptions distinguish application-specific features of a Device such as a Media Server or Player. A Control Point uses these descriptions to determine whether it is in the application class of a discovered Device; a Control Point gives user access only to Devices in the application class of the Control Point. Control (UPnP Layer 3) consist of invocation of Service actions, described in a Service description, by a Control Point. A UPnP action is an application-specific remote procedure within a Service. A Control Point invokes an action in a Service by sending a SOAP (Simple Object Access Protocol) message, where SOAP is implemented as XML messages over HTTP/ TCP/IP. A Service interprets a SOAP message and returns a result as an XML reply. Action invocation is the primary means of controlling and polling a UPnP Device. Eventing (UPnP Layer 4) is the means by which a Device notifies subscribed Control Points and Devices of a change in its advertised state. Control actions include subscription to application-specific events. A subscriber supplies a URL, and a Device sends a GENA (General Event Notification Architecture [4]) event in the form of an XML message over HTTP/TCP/IP to each subscriber whenever advertised Service state changes. Presentation (UPnP Layer 5) is a vendor-specific URL atop HTTP/TCP/IP where Device vendors can add proprietary extensions to the above UPnP layers. 1.2 Standards for Multimedia Devices The UPnP protocols described to this point are application neutral. UPnP also specifies a set of audiovisual (AV) standards that pertain to multimedia Devices, Services and Control Points. These standards specify multimedia application-specific bindings for the Device and Service Descriptions, Control actions and Events of UPnP layers 2 through 4. Figure 1 shows the generic UPnP Device Service model adapted for the Media roles of AV Control Point and Media Server and Media Renderer Devices [5]. Each Device in Figure 3 provides three AV-specific Services. The primary role of a Media Server is to provide access to metadata that describe available multimedia content via the Media Server s Content Directory Service [6,7]. Metadata include property tags for a multimedia object (e.g., a video, audio or image file) that a user can understand, such as title, artist, genre and creation date. Metadata also include tags such as bitrate, number of audio channels or image resolution intended to be interpreted by a media player. Perhaps the most important metadata tag for a multimedia object is its resource URL, which is the network path that a media player uses to locate and obtain the multimedia content. Content Directory Service deals entirely with tags for describing and locating a content stream, and not with the content itself. The Connection Manager Service of Figure 1 describes Control Point (UI application) services Media Server Content Directory Connection Manager AV Transport Standard UPnP Actions Out-of-Band Transfer Protocol Media Renderer Rendering Control Connection Manager AV Transport services Isochronous or Asynchronous Push or Pull Figure 1: UPnP AV Devices and Services (from [5])
3 available protocols for streaming actual media content, and AV Transport includes basic mechanisms for streaming this content from a Media Server to a Media Renderer that plays or displays content via its Rendering Control Service [8,9]. Figure 1 illustrates that the actual transfer of media content is outside the domain of UPnP specification. The out-of band transfer protocol is some standard, high bandwidth means for streaming multimedia content that is not specified directly by UPnP. Note further that the content described by Content Directory Service metadata need not reside on the same networked machine as that metadata. Although these data often are coresident, a resource URL can point to a media stream stored on a remote machine. The Digital Living Network Alliance (DLNA ) has extended the UPnP AV specifications into a practical set of working standards by specifying some optional Services, actions, and events as mandatory, others as disallowed [10], and by providing forums for interoperability testing and certification. According to DLNA guidelines, the AV Transport Service and transport-oriented actions of Connection Manager are not used, and DLNA 1.0 compliant Media Renderers do not advertise themselves on a UPnP network. Each media player comes with its own embedded Control Point that locates DLNA compliant Media Servers and retrieves their metadata. HTTP GET is the mandatory, baseline transport mechanism for a media streaming, although other protocols are allowed. A DLNAcompliant media player fetches a multimedia object s resource URL from a Media Server s Content Directory Service, and then uses that URL to stream the media content. 1.3 An Interface for Metadata Access The Content Directory Service of Figure 1 organizes metadata objects into a hierarchical directory structure, where an object is either an object.container that collects subordinate objects, or an object.item that houses metadata tags for a specific audio, video or image media file or stream. Content Directory specifies an extensible type system including object classnames such as the following. object.container.album.musicalbum is a subclass of the album type containing object.item.audioitem.musictracks. object.container.genre.musicgenre is a subclass of the genre type that contains music albums of a given genre. object.item.videoitem.movie is a subclass of the class of video stream objects. There is a large set of predefined classnames. Other mandatory object tags besides classname include a unique database identifier for each object, a title, parent container ID, along with optional tags such as artist and genre. Medium-specific resource related tags include size, duration, bitrate, samplefrequency, bitspersample, number of audio channels, resolution, colordepth, protocolinfo, and the resource URL that locates the actual media data. With its UPnP Service interface and classification and containment hierarchies, Content Directory is a distributed, objectoriented, hierarchical database. There are four mandatory and ten optional actions that an AV Control Point can use to interact with a Content Directory. The primary actions for this discussion are the following. Browse is a mandatory action that allows Control Points to walk a Content Directory tree structure and examine object tags, including the resource URL. It allows a client Control Point to request a subset of objects within a given container being browsed; it is not necessary for Browse to return all objects in a container being browsed in a single networked interaction. Search is an optional action that allows Control Points to search for objects whose property tags match values specified in a SQL-like query string. Search allows a Control Point to request a subset of objects satisfying a given Search string, caching results for subsequent client calls to Search. CreateObject, UpdateObject and DestroyObject are optional actions that support database modification. Most commercial Media Servers do not implement these actions because of potential dangers in making DB modification available to the UPnP network. UPnP provides no means for authentication or protection when these actions are available. Instead, most Media Servers provide non-upnp means for modifying and maintaining metadata in the Content Directory Service that support secure access. ImportResource, ExportResource and DeleteResource are similar, optional actions, not usually implemented, for modifying the storage of actual media files. These operations are normally implemented by secure, non-upnp means. Content Directory thus normally acts as a means for Control Points to identify content, based on metadata tags, and to locate that content via its URL. 2. Distributed Multimedia Search The NAS (network attached storage) family of chips from Agere Systems is designed to work as a UPnP Media Server as well as a more general networked disk
4 server [11]. This device architecture includes custom hardware for bypassing its microprocessor in accelerating outgoing and incoming streams of multimedia data such as concurrent, high-definition video streams. It also contains embedded support for various reliable RAID disk configurations. Two of Agere s contributions to the UPnP oriented middleware of this Media Server NAS system have been the creation of a C++ library interface that provides the actions and semantics of the Content Directory Service, and the creation of a keyword-based Query capability that is an alternative to UPnP Search. C++ class CdsAction is a C++ interface consisting strictly of pure virtual functions whose names and parameters match those of the Content Directory Service actions such as Browse and CreateObject. Unlike Content Directory Service, where each action takes the form of an XML-over-TCP interpreted function invoked from a Control Point, CdsAction specifies pure virtual functions invoked by media utilities such as content import, which reads metadata from media files (e.g., ID3 tags in MP3 music files) and writes them into the Content Directory Service via CdsAction::CreateObject. CdsAction gives a utility programmer a means for interacting with the database that lies beneath an implementation of Content Directory Service without requiring the utility programmer to learn the details of the database system. A concrete class derived from CdsAction implements the virtual functions for a given database system; changing to a different database system requires writing a different class derived from CdsAction, but it does not require changes to client utility code. Easing the conceptual burden on utility programmers and enhancing portability are the results. 2.1 Drawbacks of UPnP Multimedia Search The Agere NAS middleware team pursued creation of keyword-based Query capability that is an alternative to UPnP Search because of difficulties in using Search in a media customer environment. UPnP Search uses SQL-like query syntax requiring a user to supply tag names (e.g., artist ) matched to values, using relational operators from the set =,!=, <, <=, >, >=, exists, contains, doesnotcontain, derivedfrom for dynamic class verification, and the and and or logical connectives [7, sections and 2.7.5]. Search returns results in the form of a container housing the objects that satisfy the query constraints. A formal query mechanism such as the Search action is unnecessarily cumbersome to use. Many Content Directory Service providers do not implement Search because of the difficulties of user interaction and the costs of implementing query parsing and results caching. The keyword matching approach used in web surfing is much easier to use and better known to typical customers of media delivery systems. One partial solution taken by most Content Directory suppliers has been to present search indices to users as virtual containers open to the hierarchical Browse operation. Suppose a search index that maps the artist tags for all Content Directory objects to their respective IDs is available. An implementation of Browse can present the set of all artists as an object.container under the Browse tree root, and present a specific artist such as Miles Davis as a container of type object.container.person.musicartist, tagged with a title of Miles Davis, that contains references to the music albums of Miles Davis. This approach can associate search indices on genre tags to object.container.genre virtual containers, and associate the media implied by classname tags (e.g., video, audio, image, text, etc.) to media-specific virtual containers. When a user examines such a hierarchy via Browse, the user is really traversing search indices to concrete containers such as music albums, photo albums and playlists. The Browse-virtual containers alternative to UPnP Search is very helpful in simplifying user interaction requirements, but it suffers from the drawback that it does not eliminate data from view the way that Search can. Search, while difficult to use, effectively reduces the size of the metadata database that a user must Browse. It allows a user to converge more rapidly on media objects of interest than Browsing the full set of objects in a very large database. 2.2 Extending the UPnP Media Server with a Keyword Query API Our solution within Agere has been to create an extension to the C++ interface CdsAction, which is based on the Content Directory Service actions, with derived interface class CdsQueryAction as shown in Figure 2. CdsQueryAction is another class of pure virtual functions that specifies the behavior of the Query, AndQuery, OrQuery and DiffQuery operations. Each of these operations takes a simple keyword, or a keyword ending in * signifying a trailing match wildcard, and builds a result set of all concrete object.containers (e.g., music albums or user playlists) and contained object.items in the database tagged with that keyword. The keyword is not an SQL-like relational expression; it is a simple piece of text such as Miles Davis. An implementation class for interface CdsQueryAction maintains search indices for commonly used Content Directory tags such as title,
5 «interface» CdsAction CreateObject(parentID, properties) UpdateObject(ID, properties) DeleteObject(ID) Browse(ID, flags) «interface» CdsQueryAction Query(textual keyword) AndQuery(textual keyword) OrQuery(textual keyword) DiffQuery(textual keyword) Figure 2: Extending Content Directory with Keyword Query artist, genre, contributor, director, and publisher. If the keyword matches any of the indexed tags, the corresponding Content Directory ID enters the result set. Our Search also allows a keyword to be preceded by <, <=, > or >=, signifying a date range comparison. For example, <2000 gets all entries created earlier than the year 2000; >=06/01/1955 gets all entries created starting at June 1, After performing each Query, an implementation class derived from class CdsQueryAction presents the user with a Browse hierarchy of virtual containers like that shown in Figure 3. This hierarchy is exactly like the Browse virtual containers of the last section, except that it has eliminated from view all Content Directory objects that have not satisfied the cumulative Search criteria. Our CdsQueryAction approach adds three main benefits over the mandatory Browse and optional Search actions of UPnP. It is easier to use because of its keyword approach in contrast to the SQL-like syntax of UPnP Search. root medium genre audio video image genre1 genre2... person date person1 person2... range1 range2... publisher annotation publisher1 publisher2... annot1 annot2... Figure 3: Virtual container hierarchy for CdsQueryAction::Browse
6 Our Query supports interactive cumulative queries by providing AndQuery, OrQuery and DiffQuery that refine results. Our Query returns the hierarchical structure of Figure 3 for subsequent Browse inspections, as contrasted with the flat results list of UPnP Search. After an initial Query creates a result set, operations AndQuery, OrQuery and DiffQuery modify that result by forming a temporary result set based on a new keyword, and then finding the logical intersection, union, and set difference respectively of the two sets, storing the result in the persistent result set. Following a Query for Miles Davis with an AndQuery for John Coltrane creates a result set of only the works on which both artists worked together; following this with an AndQuery of >1955 would yield their combined works only after Our cumulative Query allows users to temporarily remove unwanted contents of a Content Directory Service database from view, similar to Search. The result is a hierarchical view into a subset of a hierarchical database. Moreover, mapping the hierarchy of Figure 3 into a graphical user interface (GUI) on a video-capable device allows a user to select keyword text for AndQuery / OrQuery / DiffQuery refinements, as well as to examine object properties and build user playlists, by pointing and clicking. Each incremental Query refinement returns a new virtual Browse tree. Exploring a large metadata DB converges much more rapidly on items of interest to users than Browsing the entire DB or using the difficult and usually unavailable UPnP Search operation. 2.3 Implementing the Keyword Query API We implemented the CdsQueryAction interface in a concrete class that uses balanced B-trees to map binary key-to-value relations [12]. Our B-trees support log(n) search for a key, where N is the number of entries in the tree, followed by sequential traversal of adjacent elements in ascending order on the key. The secondary, sequential links allow us to traverse multiple mappings with identical keys many of these mappings are many-to-many and to satisfy the requirement of UPnP Browse of returning only some of the result set to a client with each call. Typically Browse iterates from the first element (index 0) in a result set, browsing some number of results in each call. After searching out a result via a B-tree search structure, each B-tree maintains an iterator that supports sequential traversal of adjacent elements; this iterator avoids the need for additional caching of results outside a B-tree in support of UPnP Browse. We build and maintain two primary relations, string-- >id that maps Content Directory tags of interest (e.g., an artist tag such as Miles Davis ) to each Content Directory ID tagged with that value, along with the inverse id-->string mapping used to assist in maintaining the former relation when the underlying Content Directory changes. Note that, in contrast to UPnP Search indices, there is not a separate search index for each tag such as artist or genre. Our approach places all search keys into string-->id, avoiding the need for a user to specify tag names in a query. In addition to these two primary relations, we build secondary relations id-->medium, id-->genre, id-- >person, id-->date, id-->publisher and id-- >annotation at database indexing time, where person represents any person tag such as artist, author or collaborator on a media object, and annotation represents a user annotation tag. We build these relations even though these mappings are available via Browse to the id-associated objects in the underlying Content Directory Service, in order to speed construction of Query-created virtual containers discussed next. When a user provides a Query argument such as Miles Davis, the Query operator descends the B-tree within string-->id and places all IDs associated with Miles Davis into a result set, which is implemented as a B- tree keyed on the ID. This B-tree is a strict set; each ID appears once. Each B-tree is actually housed in a C++ template class called MultiSet that supports one-to-one, one-to-many and many-to-many mappings, supports template key and value types in the mapping, supports in-core or disk storage, and supports logical AND, OR and DIFF operators for two argument sets. Given the sequential, ascending links between adjacent entries in the B-tree, MultiSet supports these three operators by merging the two ascending sequences in the parameters supplied to AND, OR and DIFF. AND retains in the first MultiSet only the key mappings it shares with the second; OR merges elements from the second set into the first; DIFF eliminates from the first set elements that it shares with the second. Each operation s time is linear on the size of its result. Thus, implementing AndQuery, OrQuery and DiffQuery of Figure 2 is a matter of building a second result set with a new keyword, where the keyword searches into a MultiSet s B-tree, and then combining this result set with the previous Query s result set via the MultiSet AND, OR or DIFF operator. Query and its variants return the number of matched elements in the result set. CdsQueryAction::Browse supports browsing the IDs in the result set by building a
7 collection of additional MultiSet B-trees in support of the virtual Browse hierarchy of Figure 3. For each virtual container directly under root in Figure 3, for example genre, there is a MultiSet with unique key values such as genre set that collects all of the unique genre values tagged onto the IDs in the result set. CdsQueryAction builds sets such as genre set, person set, etc. at Query time by mapping result set IDs to genre values via id-->genre, IDs to person values (artist / director / producer / contributor / etc.) via id-- >person, and so on. When a user Browses the genre container of Figure 3, the user is really browsing the set of values in genre set constructed at Query time. When Browsing one of these top level virtual containers such as genre or person uncovers a second level virtual container such as jazz or Mile Davis, the user can inspect the contents of that container via Browse as well. CdsQueryAction::Browse supports this level of virtual browsing by inspecting many-to-many MultiSets such as genre-->id, person-->id, etc., that map specific genre names such as jazz or person names such as Miles Davis, stored in ascending order in a B-tree, to associated Content Directory IDs. Query constructs a mapping such as genre-->id at the same time it constructs a set such as genre set, by traversing the result set of IDs and mapping each to its respective genre, etc., by examining mapping id-->genre, etc., constructed at database indexing time. Finally, at the bottom of the Browse hierarchy of Figure 3, browsing an actual id obtained from a mapping such as genre-- >id goes to the underlying Content Directory Service Browse to obtain UPnP object tags. 2.4 Using the Keyword Query API We have constructed a prototype graphical interface (GUI) in the form of a conventional folder / file browser, using an existing user interface library, and find it very effective in browsing a virtual media container / item hierarchy like the one outlined in Figure 3. As with other applications of B-tree, most computational cost and delay goes into constructing and maintaining B-tree linkages while modifying the Content Directory database. The benefit of the B-tree comes with searching the Content Directory database for movies, music and photos. As with other database applications of B-trees, search is rapid; as with other keyword-based approaches, search is easy, and is usually graphical. We are planning to expand the Search capabilities of Figure 2 by storing individual words from UPnP object tags as separate search strings (e.g., Miles and Davis as separate search keys) in support of partial matching of Query strings, at the cost of additional B-tree storage. The primary outcome of this work is a proposal to extend the available actions of the Content Directory Service with the optional Query actions of interface CdsActionQuery in Figure 2. The benefits discussed include ease of use, incremental refinement of queries, the hierarchical browse structure of query results, and applicability to graphical query and display of results. The UPnP framework and the underlying database technology such as using B-trees as search indices is well established. Our goal is to incorporate these technologies into a productive new combination. 3. References 1. UPnP Device Architecture 1.0, December, 2003, CleanUPnPDA s.pdf. 2. Droms, R., Dynamic Host Configuration Protocol, RFC 2131, Internet Engineering Task Force, March, Simple Service Discovery Protocol/1.0, Operating without an Arbiter, October, 1999, draft_cai_ssdp_v1_03.txt. 4. General Event Notification Architecture Base: Client to Arbiter, September, 2000, download/draft-cohen-gena-client-01.txt. 5. UPnP AV Architecture:0.83, June 12, 2002, UPnPAvArchitecture% prtad.pdf. 6. MediaServer:1, Device Template Version 1.01, June 25, 2002, MediaServer%201.0.pdf. 7. ContentDirectory:1, Service Template Version 1.01, June 25, 2002, ContentDirectory%201.0.prtad.pdf. 8. ConnectionManager:1, Service Template Version 1.01, June 25, 2002, download/connectionmanager%201.0.pdf. 9. AVTransport:1, Service Template Version 1.01, June 25, 2002, AVTransport%201.0.prtad.pdf. 10. DLNA Home Networked Device Interoperability Guidelines v1.0, DLNA_Home_Networked_Device_Interoperability _Guidelines_v1.0.pdf. 11. Agere Systems Announces World's Fastest Multimedia, Storage Chip Portfolio for Homes and Businesses, PRESS2005/052505b.html, May, Aho, Hopcroft and Ullman, Data Structures and Algorithms, Reading, MA: Addison-Wesley, 1983.
Automatic Configuration and Service Discovery for Networked Smart Devices
Automatic Configuration and Service Discovery for Networked Smart Devices Günter Obiltschnig Applied Informatics Software Engineering GmbH St. Peter 33 9184 St. Jakob im Rosental Austria Tel: +43 4253
UPnP Control Point for Mobile Phones in Residential Networks
1 UPnP Control Point for Mobile Phones in Residential Networks Andreas Häber 1, Frank Reichert 2, and Andreas Fasbender 3 Abstract Together, Ericsson and HiA are studying the role of WiFi-enabled mobile
SmartTV User Interface Development for SmartTV using Web technology and CEA2014. George Sarosi [email protected]
SmartTV User Interface Development for SmartTV using Web technology and CEA2014. George Sarosi [email protected] Abstract Time Warner Cable is the second largest Cable TV operator in North America
The Ubiquitous Web, UPnP and Smart Homes
The Ubiquitous Web, UPnP and Smart Homes Franklin Reynolds Nokia Research Center, Cambridge [email protected] 1 NOKIA PCG.PPT / 15 6 2004 / Franklin Reynolds Our Vision "The essence of this vision
Dissertation Title: SOCKS5-based Firewall Support For UDP-based Application. Author: Fung, King Pong
Dissertation Title: SOCKS5-based Firewall Support For UDP-based Application Author: Fung, King Pong MSc in Information Technology The Hong Kong Polytechnic University June 1999 i Abstract Abstract of dissertation
Mobile Devices: Server and Management Lesson 05 Service Discovery
Mobile Devices: Server and Management Lesson 05 Service Discovery Oxford University Press 2007. All rights reserved. 1 Service discovery An adaptable middleware in a device (or a mobile computing system)
CatDV Pro Workgroup Serve r
Architectural Overview CatDV Pro Workgroup Server Square Box Systems Ltd May 2003 The CatDV Pro client application is a standalone desktop application, providing video logging and media cataloging capability
CHAPTER 1 INTRODUCTION
CHAPTER 1 INTRODUCTION 1.1 Introduction Service Discovery Protocols (SDPs) are network protocols which allow automatic detection of devices and services offered by these devices on a computer network [1].
How To Test Your Web Site On Wapt On A Pc Or Mac Or Mac (Or Mac) On A Mac Or Ipad Or Ipa (Or Ipa) On Pc Or Ipam (Or Pc Or Pc) On An Ip
Load testing with WAPT: Quick Start Guide This document describes step by step how to create a simple typical test for a web application, execute it and interpret the results. A brief insight is provided
Windows 7 Core Services: Application Experience. Application Information. Background Intelligent Transfer. Base Filtering Engine.
Yegor Hanov EECS710, Fall 2012 Homework Assignment 10/23/12 Assignment 2: Core Windows 7 Services I reviewed the list of active services running on my laptop during normal operation. The list [1] contains
System Requirement Specification for A Distributed Desktop Search and Document Sharing Tool for Local Area Networks
System Requirement Specification for A Distributed Desktop Search and Document Sharing Tool for Local Area Networks OnurSoft Onur Tolga Şehitoğlu November 10, 2012 v1.0 Contents 1 Introduction 3 1.1 Purpose..............................
Base One's Rich Client Architecture
Base One's Rich Client Architecture Base One provides a unique approach for developing Internet-enabled applications, combining both efficiency and ease of programming through its "Rich Client" architecture.
So today we shall continue our discussion on the search engines and web crawlers. (Refer Slide Time: 01:02)
Internet Technology Prof. Indranil Sengupta Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Lecture No #39 Search Engines and Web Crawler :: Part 2 So today we
Windows Embedded Compact 7 Multimedia Features 1
Windows Embedded Compact 7 Multimedia Features 1 Windows Embedded Compact 7 Multimedia Features Windows Embedded Compact 7 Technical Article Writers: Dion Hutchings Published: March 2011 Applies To: Windows
MA-WA1920: Enterprise iphone and ipad Programming
MA-WA1920: Enterprise iphone and ipad Programming Description This 5 day iphone training course teaches application development for the ios platform. It covers iphone, ipad and ipod Touch devices. This
The Security Framework 4.1 Programming and Design
Tel: (301) 587-3000 Fax: (301) 587-7877 E-mail: [email protected] Web: www.setecs.com Security Architecture for Development and Run Time Support of Secure Network Applications Sead Muftic, President/CEO
A Tool for Evaluation and Optimization of Web Application Performance
A Tool for Evaluation and Optimization of Web Application Performance Tomáš Černý 1 [email protected] Michael J. Donahoo 2 [email protected] Abstract: One of the main goals of web application
Web Services for Management Perl Library VMware ESX Server 3.5, VMware ESX Server 3i version 3.5, and VMware VirtualCenter 2.5
Technical Note Web Services for Management Perl Library VMware ESX Server 3.5, VMware ESX Server 3i version 3.5, and VMware VirtualCenter 2.5 In the VMware Infrastructure (VI) Perl Toolkit 1.5, VMware
Bandwidth Aggregation, Teaming and Bonding
Bandwidth Aggregation, Teaming and Bonding The increased use of Internet sharing combined with graphically rich web sites and multimedia applications have created a virtually insatiable demand for Internet
1. Digital Asset Management User Guide... 2 1.1 Digital Asset Management Concepts... 2 1.2 Working with digital assets... 4 1.2.1 Importing assets in
1. Digital Asset Management User Guide....................................................... 2 1.1 Digital Asset Management Concepts.................................................... 2 1.2 Working with
Monitoring Infrastructure (MIS) Software Architecture Document. Version 1.1
Monitoring Infrastructure (MIS) Software Architecture Document Version 1.1 Revision History Date Version Description Author 28-9-2004 1.0 Created Peter Fennema 8-10-2004 1.1 Processed review comments Peter
RS MDM. Integration Guide. Riversand
RS MDM 2009 Integration Guide This document provides the details about RS MDMCenter integration module and provides details about the overall architecture and principles of integration with the system.
Oracle Service Bus Examples and Tutorials
March 2011 Contents 1 Oracle Service Bus Examples... 2 2 Introduction to the Oracle Service Bus Tutorials... 5 3 Getting Started with the Oracle Service Bus Tutorials... 12 4 Tutorial 1. Routing a Loan
www.novell.com/documentation Jobs Guide Identity Manager 4.0.1 February 10, 2012
www.novell.com/documentation Jobs Guide Identity Manager 4.0.1 February 10, 2012 Legal Notices Novell, Inc. makes no representations or warranties with respect to the contents or use of this documentation,
Comparing Microsoft SQL Server 2005 Replication and DataXtend Remote Edition for Mobile and Distributed Applications
Comparing Microsoft SQL Server 2005 Replication and DataXtend Remote Edition for Mobile and Distributed Applications White Paper Table of Contents Overview...3 Replication Types Supported...3 Set-up &
Citrix EdgeSight Administrator s Guide. Citrix EdgeSight for Endpoints 5.3 Citrix EdgeSight for XenApp 5.3
Citrix EdgeSight Administrator s Guide Citrix EdgeSight for Endpoints 5.3 Citrix EdgeSight for enapp 5.3 Copyright and Trademark Notice Use of the product documented in this guide is subject to your prior
SERVICE DISCOVERY AND MOBILITY MANAGEMENT
Objectives: 1) Understanding some popular service discovery protocols 2) Understanding mobility management in WLAN and cellular networks Readings: 1. Fundamentals of Mobile and Pervasive Computing (chapt7)
A Survey Study on Monitoring Service for Grid
A Survey Study on Monitoring Service for Grid Erkang You [email protected] ABSTRACT Grid is a distributed system that integrates heterogeneous systems into a single transparent computer, aiming to provide
District of Columbia Courts Attachment 1 Video Conference Bridge Infrastructure Equipment Performance Specification
1.1 Multipoint Control Unit (MCU) A. The MCU shall be capable of supporting (20) continuous presence HD Video Ports at 720P/30Hz resolution and (40) continuous presence ports at 480P/30Hz resolution. B.
Step-by-Step Configuration
Step-by-Step Configuration Kerio Technologies Kerio Technologies. All Rights Reserved. Printing Date: August 15, 2007 This guide provides detailed description on configuration of the local network which
Detecting rogue systems
Product Guide Revision A McAfee Rogue System Detection 4.7.1 For use with epolicy Orchestrator 4.6.3-5.0.0 Software Detecting rogue systems Unprotected systems, referred to as rogue systems, are often
Event-based middleware services
3 Event-based middleware services The term event service has different definitions. In general, an event service connects producers of information and interested consumers. The service acquires events
1. Digital Asset Management User Guide... 2 1.1 Digital Asset Management Concepts... 2 1.2 Working with digital assets... 4 1.2.1 Importing assets in
1. Digital Asset Management User Guide........................................................................... 2 1.1 Digital Asset Management Concepts........................................................................
MODEL OF SOFTWARE AGENT FOR NETWORK SECURITY ANALYSIS
MODEL OF SOFTWARE AGENT FOR NETWORK SECURITY ANALYSIS Hristo Emilov Froloshki Department of telecommunications, Technical University of Sofia, 8 Kliment Ohridski st., 000, phone: +359 2 965 234, e-mail:
Product Navigator User Guide
Product Navigator User Guide Table of Contents Contents About the Product Navigator... 1 Browser support and settings... 2 Searching in detail... 3 Simple Search... 3 Extended Search... 4 Browse By Theme...
Interwise Connect. Working with Reverse Proxy Version 7.x
Working with Reverse Proxy Version 7.x Table of Contents BACKGROUND...3 Single Sign On (SSO)... 3 Interwise Connect... 3 INTERWISE CONNECT WORKING WITH REVERSE PROXY...4 Architecture... 4 Interwise Web
DEPLOYMENT GUIDE Version 1.1. DNS Traffic Management using the BIG-IP Local Traffic Manager
DEPLOYMENT GUIDE Version 1.1 DNS Traffic Management using the BIG-IP Local Traffic Manager Table of Contents Table of Contents Introducing DNS server traffic management with the BIG-IP LTM Prerequisites
Background 1 Table 1 Software & Firmware Versions Tested 1 Figure 1 Integra s Universal Access (UA) IP PBX Test Configuration 1
1 Background 1 Table 1 Software & Firmware Versions Tested 1 Figure 1 Integra s Universal Access (UA) IP PBX Test Configuration 1 Configuration Data 2 Section 1: Initial IPitomy IP PBX Connection & Login
Ektron to EPiServer Digital Experience Cloud: Information Architecture
Ektron to EPiServer Digital Experience Cloud: Information Architecture This document is intended for review and use by Sr. Developers, CMS Architects, and other senior development staff to aide in the
What is a NAS drive...?
What is a NAS drive...? Setting up a NAS drive allows your digital music to be played through the NP30, even if your computer isn t switched on. A NAS (Network Attached Storage) drive is essentially a
CS Standards Crosswalk: CSTA K-12 Computer Science Standards and Oracle Java Programming (2014)
CS Standards Crosswalk: CSTA K-12 Computer Science Standards and Oracle Java Programming (2014) CSTA Website Oracle Website Oracle Contact http://csta.acm.org/curriculum/sub/k12standards.html https://academy.oracle.com/oa-web-introcs-curriculum.html
Home AV Networks. T-111.5350 Multimedia Programming. Outline. Architectures Media Centers Distributed Systems. Jari Kleimola November 2, 2006
Home AV Networks T-111.5350 Multimedia Programming Jari Kleimola November 2, 2006 Outline Systems Integration i standalone combos all-in-one STB STB + HDD DVD HDD VHS TV CD Radio Tape DVD + HDD DVD + VHS
3GPP TS 24.623 V8.1.0 (2008-09)
TS 24.623 V8.1.0 (2008-09) Technical Specification 3rd Generation Partnership Project; Technical Specification Group Core Network and Terminals; Extensible Markup Language (XML) Configuration Access Protocol
SOA REFERENCE ARCHITECTURE: WEB TIER
SOA REFERENCE ARCHITECTURE: WEB TIER SOA Blueprint A structured blog by Yogish Pai Web Application Tier The primary requirement for this tier is that all the business systems and solutions be accessible
FioranoMQ 9. High Availability Guide
FioranoMQ 9 High Availability Guide Copyright (c) 1999-2008, Fiorano Software Technologies Pvt. Ltd., Copyright (c) 2008-2009, Fiorano Software Pty. Ltd. All rights reserved. This software is the confidential
1 File Processing Systems
COMP 378 Database Systems Notes for Chapter 1 of Database System Concepts Introduction A database management system (DBMS) is a collection of data and an integrated set of programs that access that data.
Component Based Rapid OPC Application Development Platform
Component Based Rapid OPC Application Development Platform Jouni Aro Prosys PMS Ltd, Tekniikantie 21 C, FIN-02150 Espoo, Finland Tel: +358 (0)9 2517 5401, Fax: +358 (0) 9 2517 5402, E-mail: [email protected],
How To Build A Connector On A Website (For A Nonprogrammer)
Index Data's MasterKey Connect Product Description MasterKey Connect is an innovative technology that makes it easy to automate access to services on the web. It allows nonprogrammers to create 'connectors'
Cache Configuration Reference
Sitecore CMS 6.2 Cache Configuration Reference Rev: 2009-11-20 Sitecore CMS 6.2 Cache Configuration Reference Tips and Techniques for Administrators and Developers Table of Contents Chapter 1 Introduction...
Modern Databases. Database Systems Lecture 18 Natasha Alechina
Modern Databases Database Systems Lecture 18 Natasha Alechina In This Lecture Distributed DBs Web-based DBs Object Oriented DBs Semistructured Data and XML Multimedia DBs For more information Connolly
COMP5426 Parallel and Distributed Computing. Distributed Systems: Client/Server and Clusters
COMP5426 Parallel and Distributed Computing Distributed Systems: Client/Server and Clusters Client/Server Computing Client Client machines are generally single-user workstations providing a user-friendly
White Paper. Enterprise IPTV and Video Streaming with the Blue Coat ProxySG >
White Paper Enterprise IPTV and Video Streaming with the Blue Coat ProxySG > Table of Contents INTRODUCTION................................................... 2 SOLUTION ARCHITECTURE.........................................
AAF. Improving the workflows. Abbreviations. Advanced Authoring Format. Brad Gilmer AAF Association
AAF the Advanced Authoring Format Brad Gilmer AAF Association The Advanced Authoring Format (AAF) enables content creators to easily exchange digital media essence and metadata across platforms, and between
www.novell.com/documentation Policy Guide Access Manager 3.1 SP5 January 2013
www.novell.com/documentation Policy Guide Access Manager 3.1 SP5 January 2013 Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents or use of this documentation,
UPnP Device Architecture 1.0
UPnP Device Architecture 1.0 Document Revision Date 15 October 2008 Note: This document consolidates the several separate documents that make up the entirety of UPnP Device Architecture Version 1.0, including
Load testing with. WAPT Cloud. Quick Start Guide
Load testing with WAPT Cloud Quick Start Guide This document describes step by step how to create a simple typical test for a web application, execute it and interpret the results. 2007-2015 SoftLogica
Example of Standard API
16 Example of Standard API System Call Implementation Typically, a number associated with each system call System call interface maintains a table indexed according to these numbers The system call interface
MarkLogic Server. Reference Application Architecture Guide. MarkLogic 8 February, 2015. Copyright 2015 MarkLogic Corporation. All rights reserved.
Reference Application Architecture Guide 1 MarkLogic 8 February, 2015 Last Revised: 8.0-1, February, 2015 Copyright 2015 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents
Managing large sound databases using Mpeg7
Max Jacob 1 1 Institut de Recherche et Coordination Acoustique/Musique (IRCAM), place Igor Stravinsky 1, 75003, Paris, France Correspondence should be addressed to Max Jacob ([email protected]) ABSTRACT
Chapter 6 Virtual Private Networking Using SSL Connections
Chapter 6 Virtual Private Networking Using SSL Connections The FVS336G ProSafe Dual WAN Gigabit Firewall with SSL & IPsec VPN provides a hardwarebased SSL VPN solution designed specifically to provide
FF/EDM Intro Industry Goals/ Purpose Related GISB Standards (Common Codes, IETF) Definitions d 4 d 13 Principles p 6 p 13 p 14 Standards s 16 s 25
FF/EDM Intro Industry Goals/ Purpose GISB defined two ways in which flat files could be used to send transactions and transaction responses: interactive and batch. This section covers implementation considerations
Content Management Using the Rational Unified Process By: Michael McIntosh
Content Management Using the Rational Unified Process By: Michael McIntosh Rational Software White Paper TP164 Table of Contents Introduction... 1 Content Management Overview... 1 The Challenge of Unstructured
Terms and Definitions for CMS Administrators, Architects, and Developers
Sitecore CMS 6 Glossary Rev. 081028 Sitecore CMS 6 Glossary Terms and Definitions for CMS Administrators, Architects, and Developers Table of Contents Chapter 1 Introduction... 3 1.1 Glossary... 4 Page
Windows Server 2003 default services
Windows Server 2003 default services To view a description for a particular service, hover the mouse pointer over the service in the Name column. The descriptions included here are based on Microsoft documentation.
1. INTRODUCTION TO RDBMS
Oracle For Beginners Page: 1 1. INTRODUCTION TO RDBMS What is DBMS? Data Models Relational database management system (RDBMS) Relational Algebra Structured query language (SQL) What Is DBMS? Data is one
SiteCelerate white paper
SiteCelerate white paper Arahe Solutions SITECELERATE OVERVIEW As enterprises increases their investment in Web applications, Portal and websites and as usage of these applications increase, performance
Solution Documentation for Custom Development
Version: 1.0 August 2008 Solution Documentation for Custom Development Active Global Support SAP AG 2008 SAP AGS SAP Standard Solution Documentation for Custom Page 1 of 53 1 MANAGEMENT SUMMARY... 4 2
Remote login (Telnet):
SFWR 4C03: Computer Networks and Computer Security Feb 23-26 2004 Lecturer: Kartik Krishnan Lectures 19-21 Remote login (Telnet): Telnet permits a user to connect to an account on a remote machine. A client
Bitrix Site Manager 4.1. User Guide
Bitrix Site Manager 4.1 User Guide 2 Contents REGISTRATION AND AUTHORISATION...3 SITE SECTIONS...5 Creating a section...6 Changing the section properties...8 SITE PAGES...9 Creating a page...10 Editing
Introduction to Service Oriented Architectures (SOA)
Introduction to Service Oriented Architectures (SOA) Responsible Institutions: ETHZ (Concept) ETHZ (Overall) ETHZ (Revision) http://www.eu-orchestra.org - Version from: 26.10.2007 1 Content 1. Introduction
Chapter 25 Domain Name System. 25.1 Copyright The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
Chapter 25 Domain Name System 25.1 Copyright The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 25.2 Figure 25.1 Example of using the DNS service 25-1 NAME SPACE To be unambiguous,
(Refer Slide Time: 01:52)
Software Engineering Prof. N. L. Sarda Computer Science & Engineering Indian Institute of Technology, Bombay Lecture - 2 Introduction to Software Engineering Challenges, Process Models etc (Part 2) This
ForeScout CounterACT. Device Host and Detection Methods. Technology Brief
ForeScout CounterACT Device Host and Detection Methods Technology Brief Contents Introduction... 3 The ForeScout Approach... 3 Discovery Methodologies... 4 Passive Monitoring... 4 Passive Authentication...
Position Paper for The Fourth W3C Web and TV Workshop. Mingmin Wang Oriental Cable Network [email protected]
Position Paper for The Fourth W3C Web and TV Workshop Abstract This paper introduces multiple screen technology research and services implementation in China, which has the close relationship between Web
Mediasite How-To Guide
2005 Sonic Foundry, Inc. All rights reserved. No part of this document may be copied and/or redistributed without the consent of Sonic Foundry, Inc. Additional copies may be obtained by contacting Sonic
zen Platform technical white paper
zen Platform technical white paper The zen Platform as Strategic Business Platform The increasing use of application servers as standard paradigm for the development of business critical applications meant
2- Electronic Mail (SMTP), File Transfer (FTP), & Remote Logging (TELNET)
2- Electronic Mail (SMTP), File Transfer (FTP), & Remote Logging (TELNET) There are three popular applications for exchanging information. Electronic mail exchanges information between people and file
Proxy Services: Good Practice Guidelines
Programme NPFIT DOCUMENT RECORD ID KEY Sub-Prog / Project Information Governance Prog. Director Mark Ferrar Owner Tim Davis Version 1.0 Author James Wood Version Date 26/01/2006 Status APPROVED Proxy Services:
Centova Cast. Client Usage Guide. Published May 04, 2015 Copyright 2015, Centova Technologies Inc. Centova Technologies Inc. www.centova.
Centova Cast Client Usage Guide Published May 04, 2015 Copyright 2015, Centova Technologies Inc. Centova Technologies Inc. www.centova.com Contents 1 Introduction 3 2 Basic Usage Guide 4 2.1 Obtaining
Multimedia Applications. Mono-media Document Example: Hypertext. Multimedia Documents
Multimedia Applications Chapter 2: Basics Chapter 3: Multimedia Systems Communication Aspects and Services Chapter 4: Multimedia Systems Storage Aspects Chapter 5: Multimedia Usage and Applications Documents
Managing Microsoft Office SharePoint Server Content with Hitachi Data Discovery for Microsoft SharePoint and the Hitachi NAS Platform
Managing Microsoft Office SharePoint Server Content with Hitachi Data Discovery for Microsoft SharePoint and the Hitachi NAS Platform Implementation Guide By Art LaMountain and Ken Ewers February 2010
Lightweight DNS for Multipurpose and Multifunctional Devices
IJCSNS International Journal of Computer Science and Network Security, VOL.13 No.12, December 2013 71 Lightweight DNS for Multipurpose and Multifunctional Devices Yogesh A. Wagh 1, Prashant A. Dhangar
Silect Software s MP Author
Silect MP Author for Microsoft System Center Operations Manager Silect Software s MP Author User Guide September 2, 2015 Disclaimer The information in this document is furnished for informational use only,
Presentation Reporting Quick Start
Presentation Reporting Quick Start Topic 50430 Presentation Reporting Quick Start Websense Web Security Solutions Updated 19-Sep-2013 Applies to: Web Filter, Web Security, Web Security Gateway, and Web
Scaling up = getting a better machine. Scaling out = use another server and add it to your cluster.
MongoDB 1. Introduction MongoDB is a document-oriented database, not a relation one. It replaces the concept of a row with a document. This makes it possible to represent complex hierarchical relationships
THE WINDOWS AZURE PROGRAMMING MODEL
THE WINDOWS AZURE PROGRAMMING MODEL DAVID CHAPPELL OCTOBER 2010 SPONSORED BY MICROSOFT CORPORATION CONTENTS Why Create a New Programming Model?... 3 The Three Rules of the Windows Azure Programming Model...
Espial IPTV Middleware. Evo Solution Whitepaper. <Title> Delivering Interactive, Personalized 3-Screen Services
Espial IPTV Middleware Evo Solution Whitepaper Delivering Interactive, Personalized 3-Screen Services April 2010 Espial Group 1997-2010. All rights reserved The 3-Screen Challenge Differentiate
Study and installation of a VOIP service on ipaq in Linux environment
Study and installation of a VOIP service on ipaq in Linux environment Volkan Altuntas Chaba Ballo Olivier Dole Jean-Romain Gotteland ENSEIRB 2002 Summary 1. Introduction 2. Presentation a. ipaq s characteristics
PageR Enterprise Monitored Objects - AS/400-5
PageR Enterprise Monitored Objects - AS/400-5 The AS/400 server is widely used by organizations around the world. It is well known for its stability and around the clock availability. PageR can help users
Managing Users and Identity Stores
CHAPTER 8 Overview ACS manages your network devices and other ACS clients by using the ACS network resource repositories and identity stores. When a host connects to the network through ACS requesting
NASA Workflow Tool. User Guide. September 29, 2010
NASA Workflow Tool User Guide September 29, 2010 NASA Workflow Tool User Guide 1. Overview 2. Getting Started Preparing the Environment 3. Using the NED Client Common Terminology Workflow Configuration
Open source framework for interactive data exploration in server based architecture
Open source framework for interactive data exploration in server based architecture D5.5 v1.0 WP5 Visual Analytics: D5.5 Open source framework for interactive data exploration in server based architecture
GenericServ, a Generic Server for Web Application Development
EurAsia-ICT 2002, Shiraz-Iran, 29-31 Oct. GenericServ, a Generic Server for Web Application Development Samar TAWBI PHD student [email protected] Bilal CHEBARO Assistant professor [email protected] Abstract
