I am using the identify code example from the API examples.I have this working...although I want to narrow this down and specifiy a single layer to idenitify on not all 3 of them...I attached a word doc showing the service and directory structure...please reference the word doc, NOTE its two pagesThis works for all three.... Dim identifyTask5 As New IdentifyTask("http://gis.logis.org/arcgis/rest/services/MG_Test/MapServer")
AddHandler identifyTask5.ExecuteCompleted, AddressOf IdentifyTask5_ExecuteCompleted
AddHandler identifyTask5.Failed, AddressOf IdentifyTask5_Failed
identifyTask5.ExecuteAsync(identifyParams2)
I then tried this: Dim identifyTask5 As New IdentifyTask("http://gis.logis.org/arcgis/rest/services/" & "MG_Test/Parcel Base/MapServer")
and thisDim identifyTask5 As New IdentifyTask("http://gis.logis.org/arcgis/rest/services/MG_Test/Parcel Base/MapServer")
Any thoughts on the sysntax to get it to just identify on the Parcel Base Layer in the map service?Thanks