I can see through the rest endpoint of my map service layer that its labeling information is being exposed under Drawing Info:[ATTACH=CONFIG]23743[/ATTACH]However, when trying to retrieve it through the latest ESRI flex API (version 3.2) using getAllDetails->LayerDetails, I can only see the renderer and transparency information. How can I get at the labeling info that's being exposed via rest?Also, I have a map service that has a layer with labels turned on by default. I want to create a label button in my TOC that will ONLY toggle the layer's labels on/off without changing the default label symbology. I've tried the following, but when the label button is clicked, the entire layer disappears from the map:private var mapLayer:ArcGISDynamicMapServiceLayer; for(var i:int = 0; i<map.layers.length; i++) { if(map.layers is com.esri.ags.layers.ArcGISDynamicMapServiceLayer) { mapLayer = map.layers; mapLayer.layerDrawingOptions = []; } } private function onLabelButtonClick(layerID:Number, show:Boolean):void { var myDrawOptions:LayerDrawingOptions = new LayerDrawingOptions(); myDrawOptions.showLabels = show; myDrawOptions.layerId = layerId; mapLayer.layerDrawingOptions.push(myDrawOptions); mapLayer.refresh(); }I know at some point I'll have to check to see if myDrawOptions already exists in the layerDrawingOptions array to avoid duplicates, but I'm just trying to get something to work. The main difference between what I'm trying to do and what the label samples in the flex gallery do is that I'm dealing with a layer that already has labels defined in the map service and I'm just trying to toggle them, not re-symbolize them.Thanks for your help.