You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xindice-dev@xml.apache.org by ks...@apache.org on 2002/07/12 12:14:23 UTC

cvs commit: xml-xindice/java/src/org/apache/xindice/tools/command InvokeXmlObject.java

kstaken     2002/07/12 03:14:23

  Modified:    java/src/org/apache/xindice/tools/command
                        InvokeXmlObject.java
  Log:
  Fixing the build. XMLObjectService doesn't exist anymore.
  
  Revision  Changes    Path
  1.3       +4 -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.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- InvokeXmlObject.java	24 Mar 2002 15:02:38 -0000	1.2
  +++ InvokeXmlObject.java	12 Jul 2002 10:14:23 -0000	1.3
  @@ -95,7 +95,8 @@
               String objectstring = (String)table.get("collection") + "/" + (String)table.get("xmlobjecturi") ;
               String colstring = normalizeCollectionURI( (String)table.get("collection") );
               String xmlobjecturi = objectstring;
  -            XMLObjectService service = null;
  +// Commented out because the service doesn't exist anymore.
  +            /* XMLObjectService service = null;
               Resource result = null;
            
            if (table.get("verbose").equals("true")) {
  @@ -114,7 +115,7 @@
               
               String resultstring = (String)result.getContent();
               
  -            System.out.println("Results = \n\n" + resultstring);
  +            System.out.println("Results = \n\n" + resultstring);*/
               
               
           } catch (Exception e) {