kward 02/03/24 07:02:38
Modified: java/src/org/apache/xindice/tools/command
InvokeXmlObject.java
Log:
fixed invoke XMLObject bug for command line tools <[EMAIL PROTECTED]>
Revision Changes Path
1.2 +3 -3
xml-xindice/java/src/org/apache/xindice/tools/command/InvokeXmlObject.java
Index: InvokeXmlObject.java
===================================================================
RCS file:
/home/cvs/xml-xindice/java/src/org/apache/xindice/tools/command/InvokeXmlObject.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- InvokeXmlObject.java 6 Dec 2001 19:33:57 -0000 1.1
+++ InvokeXmlObject.java 24 Mar 2002 15:02:38 -0000 1.2
@@ -56,7 +56,7 @@
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
*
- * $Id: InvokeXmlObject.java,v 1.1 2001/12/06 19:33:57 bradford Exp $
+ * $Id: InvokeXmlObject.java,v 1.2 2002/03/24 15:02:38 kward Exp $
*/
import java.util.Hashtable;
@@ -94,7 +94,7 @@
String objectstring = (String)table.get("collection") + "/" +
(String)table.get("xmlobjecturi") ;
String colstring = normalizeCollectionURI(
(String)table.get("collection") );
- String xmlobjecturi = normalizeXindiceURI(objectstring);
+ String xmlobjecturi = objectstring;
XMLObjectService service = null;
Resource result = null;
@@ -110,7 +110,7 @@
}
service =
(XMLObjectService)col.getService("XMLObjectService","1.0");
- result = service.invokeXMLObject(xmlobjecturi);
+ result = service.invokeXMLObject( xmlobjecturi );
String resultstring = (String)result.getContent();