Author: jochen
Date: Mon Feb 6 23:24:53 2006
New Revision: 375527
URL: http://svn.apache.org/viewcvs?rev=375527&view=rev
Log:
Fixed that the TaminoAPI4JPM didn't support parameters.
Submitted-By: Theo Straeten, theo.straeten at softwareag.com
Modified:
webservices/jaxme/branches/MAVEN/projects/pm/project.xml
webservices/jaxme/branches/MAVEN/projects/pm/src/main/java/org/apache/ws/jaxme/pm/ino/api4j/TaminoAPI4JPm.java
webservices/jaxme/branches/MAVEN/status.xml
Modified: webservices/jaxme/branches/MAVEN/projects/pm/project.xml
URL:
http://svn.apache.org/viewcvs/webservices/jaxme/branches/MAVEN/projects/pm/project.xml?rev=375527&r1=375526&r2=375527&view=diff
==============================================================================
--- webservices/jaxme/branches/MAVEN/projects/pm/project.xml (original)
+++ webservices/jaxme/branches/MAVEN/projects/pm/project.xml Mon Feb 6
23:24:53 2006
@@ -30,6 +30,12 @@
* Relational databases via JDBC; the JaxMeJdbcSG may be used to read an
existing database schema via JDBC metadata and converts the tables into JaxMe
objects. For any table, it also creates a specific persistence manager, which
is a subclass of PMJdbcImpl.
* Native XML databases via XML:DB, a database independent API, much like
JDBC; native XML databases include , , or . The most important difference
between native XML and relational databases is, that the formers have no
limitations on the structure of XML documents being stored. As a consequence,
there is no need for specific support in the schema and XmlDbPM, the
persistence manager for XML:DB, is generic.
* Native XML databases via proprietary API's or protocols; currently this
only includes Tamino via the InoManager.</description>
+ <contributors>
+ <contributor>
+ <name>Theo Straeten</name>
+ <email>theo.straeten at softwareag.com</email>
+ </contributor>
+ </contributors>
<url>http://ws.apache.org/jaxme/pm/</url>
<build>
<unitTest>
Modified:
webservices/jaxme/branches/MAVEN/projects/pm/src/main/java/org/apache/ws/jaxme/pm/ino/api4j/TaminoAPI4JPm.java
URL:
http://svn.apache.org/viewcvs/webservices/jaxme/branches/MAVEN/projects/pm/src/main/java/org/apache/ws/jaxme/pm/ino/api4j/TaminoAPI4JPm.java?rev=375527&r1=375526&r2=375527&view=diff
==============================================================================
---
webservices/jaxme/branches/MAVEN/projects/pm/src/main/java/org/apache/ws/jaxme/pm/ino/api4j/TaminoAPI4JPm.java
(original)
+++
webservices/jaxme/branches/MAVEN/projects/pm/src/main/java/org/apache/ws/jaxme/pm/ino/api4j/TaminoAPI4JPm.java
Mon Feb 6 23:24:53 2006
@@ -125,6 +125,10 @@
}
public void select(Observer pObserver, String pQuery, PMParams pParams)
throws PMException {
+ if (pParams != null) {
+ pQuery = super.parseQuery(pQuery, pParams);
+ }
+
TConnection conn = null;
try {
JAXBContextImpl c = getManager().getFactory();
Modified: webservices/jaxme/branches/MAVEN/status.xml
URL:
http://svn.apache.org/viewcvs/webservices/jaxme/branches/MAVEN/status.xml?rev=375527&r1=375526&r2=375527&view=diff
==============================================================================
--- webservices/jaxme/branches/MAVEN/status.xml (original)
+++ webservices/jaxme/branches/MAVEN/status.xml Mon Feb 6 23:24:53 2006
@@ -50,6 +50,10 @@
<action dev="JW" type="enhancement" context="generator">
Added the "xmlCatalog" element to the JaxMe Ant task.
</action>
+ <action dev="JW" type="fix" context="pm">
+ The TaminoAPI4JPM wasn't supporting query parameters.
+ (Theo Straeten, theo.straeten at softwareag.com)
+ </action>
</release>
<release version="0.5.1" date="Not yet published">
<action dev="JW" type="enhancement" context="js">
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]