Hello to all.I created a mobile application and following the example of Mansour Raad I created a query that passes the result directly on the mapBut I have a problem, when the result is passed to the map traslatto result than the basemap.The basemap is Topo with wkid 102100 while the service on which I make the query is 32633. How can I fix the problem in order to correctly project the result on the map?I try with insert a property "outSpatialReference"
<fx:Declarations>
<esri:QueryTask id="queryTask"
executeComplete="navigator.pushView(ApplicazioneHomeView, event.featureSet)"
showBusyCursor="false"
url="http://www.pcn.minambiente.it/arcgis/rest/services/classificazione_sismica_comunale_2012/MapServer/0"
useAMF="true"/>
<esri:Query id="query"
outFields="['comune']"
returnGeometry="true" outSpatialReference="32633"
where="{data}"/>
</fx:Declarations>
but return an error: 'outSpatialReference': values of type com.esri.ags.SpatialReference cannot be represented in text. Any help is welcome thanks bye