Hi all,I am trying to do what I believe to be a simple task - to have my popup window display fields from the origin featureclass(the one clicked on) as well as from the table that the fc is joined to. The join is setup in my mxd/msd. I published my service from the msd.Any help would be greatly appreciated.Here is the code:<layer label="Data" type="dynamic" visible="true" alpha=".65 " url="http://xyz-8228/ArcGIS/rest/services/Alaska/Data_Viewer1/MapServer"> <sublayer id="2" popupconfig="apps/DEV/popups/PopUp_1.xml" /> </layer>
Popup xml is as follows:<?xml version="1.0" ?> <configuration> <title>Environmental Resource Area - {RESOURCE_NAME}</title> <fields> <field name="RESOURCE_LONG_NAME" alias="Resource Name" visible="true"> </field> </fields> <showattachments>false</showattachments> </configuration>I just want to know what syntax to use so that it will pull from my joined table (which I am not showing at the moment). This seems simple but I cannot find any posts on it...Thanks in advance!