All--
I'm going to go head and provide a partial fix for JIRA 749 in the main SVN line. This will allow users of <netui-data:callPageFlow> to pass a null argument via the <netui-data:methodParameter> tag.
The fix is to make the "null" attribute on the <methodParameter> rtexprvalue="true". It's a very low risk fix and just makes it possible to fix the problem Rich had two nights ago and is documented here:
http://issues.apache.org/jira/browse/BEEHIVE-749
The diff is below. Squawk if anyone feels this is risky...
Eddie
Index: src/tags-databinding/org/apache/beehive/netui/tags/databinding/invoke/MethodParameter.java
===================================================================
--- src/tags-databinding/org/apache/beehive/netui/tags/databinding/invoke/MethodParameter.java (rev
ision 171038)
+++ src/tags-databinding/org/apache/beehive/netui/tags/databinding/invoke/MethodParameter.java (wor
king copy)
@@ -228,7 +228,7 @@
* will be passed.
* @jsptagref.attributedescription Boolean. Determines if the parameter passed to the method is
null.
* @jsptagref.attributesyntaxvalue <i>boolean_passNullValue</i>
- * @netui:attribute required="false"
+ * @netui:attribute required="false" rtexprvalue="true"
*/
public void setNull(boolean isNull) {
_isNull = isNull;
