I am trying to search using multiple fields on the Enhanced search widget, version 2.9.0. I am at flex version 2.5 and recently upgraded my search widget to 2.9 specifically for this functionality. Everything is working as it should except when I add a second value in a search I get the follwoing error: RPC Fault faultStign-"Unable to complete operation." faultCode="400" faultDetail="Unable to complete Query operation."I am able to do each search seperately, so I don't know what the issue is.Here is my code:<layer> <definitionexpression></definitionexpression> <enableexport>false</enableexport> <name>Generation</name> <url>http://dcpgisav/ArcGIS/rest/services/Operations/Generation/MapServer/0</url> <expressions> <expression alias="EMS Name" textsearchlabel="Search EMS Name:"> <values> <value prompt="Example: ARSENAL">upper(EMS_STATION_NAME) like upper('%[value]%')</value> </values> </expression> <expression alias="Balancing Authority" textserachlabel="Select Balancing Authority..."> <values> <value prompt="Select an area:" field="CTRLAREA" usedomain="true">CTRLAREA = '[value]'</value> <value prompt="Select a fuel type:" field="PRIMARY_FUEL" usedomain="true">PRIMARY_FUEL = '[value]'</value> </values> </expression> </expressions>
Any help is appreciated!!!