Original User: xemokaHi Megan,There's a couple things wrong in your config file there. Your popups are not configured correctly. Take a look at the ESRI Viewer Docs but in brief:Popups are generally configured in a <sublayer> tag, if you are configuring them for a single map feature layer it is possible to do as you have, by including it in the <layer> tag, however it has to be while the layer tag is still open. In your code you've self closed the layer tag by <layer ... /> and then called the popupconfig parameter outside of the closed layer tag. The popup would have to be set before that / . I believe for dynamic types you must use the sublayer tag, in which case the initial <layer..> must not be self closed, and instead be later closed by a </layer>. I.E.:
<layer ...>
<sublayer id="x" popupconfig="popups/example.xml" />
</layer>
In which case
<layer label="Parcels" type="dynamic" visible="false"
url = "http://arcims/ArcGIS/services/testparcels/MapServer"/>
popupconfig="popups/Popup_Parcels.xml"/>
should be:
<layer label="Parcels" type="dynamic" visible="true" url="http://arcims/ArcGIS/services/testparcels/MapServer">
<sublayer id="x" popupconfig="popups/Popup_Parcels.xml"/>
</layer>