HTML Viewer Query functions break when consuming ArcMap Service with group layers.
Last Published: August 25, 2014No Product Found
Bug ID Number
NIM006726
Submitted
February 9, 2007
Last Modified
April 2, 2025
Applies to
No Product Found
Version found
9.2
Status
Duplicate
The issue is a duplicate of an existing issue. See the issue's Additional Information section for details. Customers associated with the duplicate issue are automatically attached to the open issue.
Additional Information
Duplicate of NIM006979
Workaround
See KB32692<a href="http://support.esri.com/index.cfm?fa=knowledgebase.techArticles.articleShow&d=32692" target="_blank">http://support.esri.com/index.cfm?fa=knowledgebase.techArticles.articleShow&d=32692</a>Code change inside aimsLayers.js function "getLayers"=================================Replace existing code :startpos = theReplyUC.indexOf("ID=",lpos);With://***** start *****var mypos = theReplyUC.indexOf("PARENTLAYERID=",lpos); if (mypos != -1) { theReplyUC = theReplyUC.replace("PARENTLAYERID", "PARENTLAYER"); startpos = theReplyUC.indexOf("ID=",lpos);} else { startpos = theReplyUC.indexOf("ID=",lpos);}//***** end *****