• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Websphere Data Objects (WDO)

 
Ranch Hand
Posts: 427
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What is "Websphere Data Objects"?
I heard that IBM will include WDO in WSAD 5.1.2
 
Sean Sullivan
Ranch Hand
Posts: 427
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I found the answer in WSAD 5.1.1's online help
{{
WDO data access
Dynamic Web applications can be used to access data sources; these applications are commonly refereed to as CRUD applications because they are able to Create, Read, Update, and Delete data. Though there are several data access frameworks to choose from, two are natively supported in the Web Perspective in WebSphere� Studio: Data Access Beans and WDO. WDO is a data-centric, disconnected, XML-integrated, data access mechanism that provides a source-independent result set. These features are very important aspects of a data access method optimized for Web applications, in particular dynamic Web applications that use Faces components.
Note: WDO is only supported if you are using WebSphere Application Server version 5.1 as your server.
Data-centric: Results are retrieved as a structured graph of data, rather than supporting the retrieval of objects (which include associated behaviors) as is the case with EJB persistence mechanisms.
Disconnected: The retrieved result (graph of data) is independent of any associated connections or transactions.
XML-integrated: Services are provided to easily convert retrieved data to and from XML format.
Source-independent result set: The results of WDO queries are standardized because results returned from any type of data source are converted to a WDO graphical representation. For example, a WDO query against a JDBC data source and a query against an EJB data source will both return a WDO structured result set that uses the same set of standard data types.
These WDO capabilities supplement the currently available object-oriented data access mechanism provided by EJB, and the data-centric, but connected mechanism provided by direct use of JDBC.
WDO and Faces components work together to provide an easy way to create a dynamic Web application that accesses data using a method optimized for the Web. There are two data access beans that are made available as Faces components in the Palette view:
Relational Data Object (DataObjectAccessBean)
Relational Data List (DataListAccessBean)
}
 
author
Posts: 3892
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Actually it's "SDO" (Service Data Objects) now. You can find more out more here.
Kyle
 
Greenhorn
Posts: 14
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Now JSR 235
 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all,
Anybody out there know when we can expect an SDO milestone? Having used the beta implementation in conjunction with JSF in IBM's WSAD 5.1.1 I am keen to utilize this technology. Its promise might help revive the "Regular Sleep Pattern" for Java developers

Stephen
 
Kyle Brown
author
Posts: 3892
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Expect a lot more support in WebSphere 6.0. That's all I can say at the moment.
Kyle
reply
    Bookmark Topic Watch Topic
  • New Topic