It would be really cool if you add this to the code samples page:
http://trac.osgeo.org/mapguide/wiki/CodeSamples

As you can see, it is a bit lacking in Java examples!

The SelectionXml problem you have is because you are missing string quotes.
Your selectionXml string is:
<xml.... />
And you insert it directly, eg:
mapFrame.SetSelectionXML(<xml... />);
You need string quotes:
mapFrame.SetSelectionXML('<xml... />');

Regards, Kenneth Skovhede, GEOGRAF A/S

_______________________________________________
mapguide-users mailing list
[email protected]
http://lists.osgeo.org/mailman/listinfo/mapguide-users

Reply via email to