@doc180有正确的概念,只是他专注于数字,而最初的海报有字符串的问题。
解决方案是更改mx.rpc.xml.XMLEncoder文件。这是第121行:
if (content != null)
result += content;
(我查看了Flex 4.5.1 SDK;其他版本的行号可能不同。)
基本上,验证失败是因为“content为null”,因此您的参数没有添加到传出的SOAP数据包中;从而导致丢失的参数错误。
您必须扩展该类以删除验证。然后是一个巨大的滚雪球,修改SOAPEncoder以使用修改的XMLEncoder,然后修改Operation以使用修改后的SOAPEncode器,然后修改WebService以使用替换的Operation类。
我花了几个小时,但我需要继续。这可能需要一两天的时间。
您可能只需要修复XMLEncoder行,并使用自己的类进行一些猴子修补。
我还要补充一点,如果您切换到使用RemoteObject/AMF和ColdFusion,则传递null时不会出现问题。
2013年11月16日更新:
我在上次关于RemoteObject/AMF的评论中又增加了一条。如果您正在使用ColdFusion 10;然后从服务器端对象中删除对象上具有null值的财产。因此,在访问财产之前,必须检查它是否存在,否则会出现运行时错误。
检查如下:
<cfif (structKeyExists(arguments.myObject,'propertyName')>
<!--- no property code --->
<cfelse>
<!--- handle property normally --->
</cfif>
这是ColdFusion 9的行为变化;其中空财产将变成空字符串。
2013年6月12日编辑
由于有一个关于如何处理null的问题,这里有一个快速示例应用程序来演示字符串“null”如何与保留的单词null相关。
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" initialize="application1_initializeHandler(event)">
<fx:Script>
<![CDATA[
import mx.events.FlexEvent;
protected function application1_initializeHandler(event:FlexEvent):void
{
var s :String = "null";
if(s != null){
trace('null string is not equal to null reserved word using the != condition');
} else {
trace('null string is equal to null reserved word using the != condition');
}
if(s == null){
trace('null string is equal to null reserved word using the == condition');
} else {
trace('null string is not equal to null reserved word using the == condition');
}
if(s === null){
trace('null string is equal to null reserved word using the === condition');
} else {
trace('null string is not equal to null reserved word using the === condition');
}
}
]]>
</fx:Script>
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
</s:Application>
跟踪输出为:
空字符串不等于使用!=的空保留字条件空字符串不等于使用==条件的空保留字空字符串不等于使用==条件的空保留字