Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EclipseLink/Development/DBWS/RoadMap"

m (DBWS Road Map)
m (Backlog of work items)
Line 2: Line 2:
 
=== DBWS Road Map ===
 
=== DBWS Road Map ===
 
==== Backlog of work items ====
 
==== Backlog of work items ====
* [http://tinyurl.com/27tvhfv Future Bugs]
+
[http://tinyurl.com/27tvhfv Future Bugs]
# Support [https://bugs.eclipse.org/bugs/show_bug.cgi?id=280667 'sparse' merge (bug280667)] (requires core Foundation work)
+
* Support [https://bugs.eclipse.org/bugs/show_bug.cgi?id=280667 'sparse' merge (bug280667)]  
#* [[EclipseLink/Development/Dynamic/RefactorPhaseIForSparseMerge|Sparse merge requirements/Phase I Refactoring for <code>DynamicEntity</code>]]
+
** [[EclipseLink/Development/Dynamic/RefactorPhaseIForSparseMerge|Sparse merge requirements/Phase I Refactoring for <code>DynamicEntity</code>]]
#* 300398 - Add "get(String, Class)" method to DynamicEntity
+
** 300398 - Add "get(String, Class)" method to DynamicEntity
# 275156 Support complex PL/SQL arguments for Stored Functions (requires core Foundation work)
+
* 275156 Support complex PL/SQL arguments for Stored Functions (requires core Foundation work)
# Support additional JAX-WS implementations (GlassfishV3/Metro, JBoss, Websphere 7, etc.)
+
* Support additional JAX-WS implementations (GlassfishV3/Metro, JBoss, Websphere 7, etc.)
# align DBWS internal metadata with JPA/JAXB metadata  (requires JPA/JAXB work)
+
* Align DBWS internal metadata with JPA/JAXB metadata  (requires JPA/JAXB work)
#* [[EclipseLink/Development/DBWS/oNmMetadata|Use 'orm.xml' and 'oxm.xml' for metadata]]
+
** [[EclipseLink/Development/DBWS/oNmMetadata|Use 'orm.xml' and 'oxm.xml' for metadata]]
# Support optional arguments for Stored Procedures (requires core Foundation work)
+
* Support optional arguments for Stored Procedures (requires core Foundation work)
# Validate SOAP message arguments (must be very efficient!)
+
* 290156 Validate SOAP message arguments (must be very efficient!)
 +
* DBWS to use [http://wiki.eclipse.org/EclipseLink/Development/DBWS/oNmMetadata ORM/OXM metadata formats]
  
 
==== 2.2 ====
 
==== 2.2 ====

Revision as of 14:08, 11 June 2010

DBWS Road Map

Backlog of work items

Future Bugs

2.2

2.1

  • accommodate internal changes for AttributeChangeTracking
  • support DBWSBuilder-generated JAX-WS Provider on JRockit
  • stop DBWSBuilder from truncating GROUP BY/ORDER BY clauses
  • DBWSBuilder supports Eclipse WTP Dynamic Web Project structure

2.0.1

  • align DBWS internal implementation with new Dynamic Persistence features
  • DBWSBuilder utility auto-detect Optimistic Lock field
  • fix issue with JDBC metadata and overloaded Stored Functions
  • Support MTOM attachments
  • fix Web service faults: contain better server-side root cause information

1.2

  • For OraclePlatform, support advanced PL/SQL datatypes (records, collections, mixture of the two) as arguments to Stored Procedures
    • need compatible JDBC 'shadow' types to align with PL/SQL types
  • For OraclePlatform, support complex JDBC datatypes (objects, varrays, mixture of the two) as arguments to Stored Procedures
  • Fix WSDL inline-schema to support above complex args
  • Add support for SOAP 1.2
  • Fix Delete operation (part of table-based CRUD): use only PK fields, not whole instance
  • Use nillable="true" to represent database null
  • DBWSBuilder utility to produce DDL for the compatible JDBC shadow types

1.1

  • Deploy to JAX-WS 2.n complaint server (WebLogic 10)
  • For OraclePlatform, support simple PL/SQL datatypes (PLSINTEGER, BOOLEAN, etc) as arguments to Stored Procedures
  • Improve server-side exception handling

1.0

The focus is on providing capabilities based upon the 3 types of database artifacts:

  1. table: CRUD lifecycle
  2. Stored Procedure: specialized queries
  3. Result set: returned from SQL SELECT queries

Back to the top