The application work such that: -the user search's for an html atlas page of a particular species; on the atlas page there is a link to the interactive map -the URL parameters (science name,commonname, synonyms, etc) from the atlas page get passed to the map -the map queries all layers within the map service for these parameters and loads the corresponding points
The application however exceeds the URL length limit and our synonyms parameter has been restricted to keep the URL string under this limit.It seems that the application is using a get function rather than a post
-I am trying to solve this so that we can include all synonyms. -I have read about the use of a proxy page as it uses a POST method but how would I go about using one? -download a proxy.jsp; add the map services to the proxy page -but how do I call upon the proxy page when the layer gets loaded? (in MapManager.mxml)
the solution actually involved the Identify widget; In our existing identify widget, we had configured the URLquery (as we did in the MapManager.mxml) thus, the synonyms string would get tacked on to the end of URL again (exceeding the length limit). However, the newest version of the Identify widget seems to solve this issue.