Author: assaf
Date: Fri Sep  1 15:11:56 2006
New Revision: 439492

URL: http://svn.apache.org/viewvc?rev=439492&view=rev
Log:
Namespace fix

Modified:
    
incubator/ode/trunk/bpel-compiler/src/main/java/org/apache/ode/bpel/compiler/InvokeGenerator.java

Modified: 
incubator/ode/trunk/bpel-compiler/src/main/java/org/apache/ode/bpel/compiler/InvokeGenerator.java
URL: 
http://svn.apache.org/viewvc/incubator/ode/trunk/bpel-compiler/src/main/java/org/apache/ode/bpel/compiler/InvokeGenerator.java?rev=439492&r1=439491&r2=439492&view=diff
==============================================================================
--- 
incubator/ode/trunk/bpel-compiler/src/main/java/org/apache/ode/bpel/compiler/InvokeGenerator.java
 (original)
+++ 
incubator/ode/trunk/bpel-compiler/src/main/java/org/apache/ode/bpel/compiler/InvokeGenerator.java
 Fri Sep  1 15:11:56 2006
@@ -104,7 +104,7 @@
           }
         }
       }
-      element = DOMUtils.findChildByName(failure, new QName(null, 
"retryDelay"));
+      element = DOMUtils.findChildByName(failure, new 
QName(FailureHandling.EXTENSION_NS_URI, "retryDelay"));
       if (element != null) {
         textValue = DOMUtils.getTextContent(element);
         if (textValue != null) {
@@ -117,7 +117,7 @@
           }
         }
       }
-      element = DOMUtils.findChildByName(failure, new QName(null, 
"faultOnFailure"));
+      element = DOMUtils.findChildByName(failure, new 
QName(FailureHandling.EXTENSION_NS_URI, "faultOnFailure"));
       if (element != null) {
         textValue = DOMUtils.getTextContent(element);
         if (textValue != null)


Reply via email to