Author: mszefler
Date: Tue Aug 15 10:46:49 2006
New Revision: 431654

URL: http://svn.apache.org/viewvc?rev=431654&view=rev
Log:
Removed (temporarily) retrieval of deployment info --- need to replace with 
method to get the information from the BpelServerImpl, not the database.

Modified:
    
incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/ProcessAndInstanceManagementImpl.java

Modified: 
incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/ProcessAndInstanceManagementImpl.java
URL: 
http://svn.apache.org/viewvc/incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/ProcessAndInstanceManagementImpl.java?rev=431654&r1=431653&r2=431654&view=diff
==============================================================================
--- 
incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/ProcessAndInstanceManagementImpl.java
 (original)
+++ 
incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/ProcessAndInstanceManagementImpl.java
 Tue Aug 15 10:46:49 2006
@@ -647,14 +647,14 @@
 
 
       TProcessInfo.Documents docinfo = info.addNewDocuments();
-      //TODO: what happens if we have a remote URI?
-      File deployDir = new File(proc.getDeployURI().getPath());
-      File files[] = deployDir.listFiles();
-      if (files != null)
-        genDocumentInfo(docinfo, deployDir, files,true);
-      else
-      if (__log.isDebugEnabled())
-        __log.debug("fillProcessInfo: No files for " + deployDir + " !!!");
+      // TODO: need to get this from the server not the database.  
+//      File deployDir = new File(proc.getDeployURI().getPath());
+//      File files[] = deployDir.listFiles();
+//      if (files != null)
+//        genDocumentInfo(docinfo, deployDir, files,true);
+//      else
+//      if (__log.isDebugEnabled())
+//        __log.debug("fillProcessInfo: No files for " + deployDir + " !!!");
 
 
 


Reply via email to