UniqueDesignation Message Property Not Working in 10.1.1

2628
2
Jump to solution
01-23-2013 05:29 AM
CarlosColón-Maldonado
Occasional Contributor III
Can someone confirm that the Message object's property of "UniqueDesignation" that worked in version 1.0 no longer works? The Javadoc appears to state that it is suppose to. I executed an existing application that performed the following operation and displayed the symbol's label successfully prior to the upgrade, but no longer:

      message.setProperty("UniqueDesignation", "Mad dog");

I'll be happy to submit a bug report if it's the case.

[ATTACH=CONFIG]21000[/ATTACH]
[ATTACH=CONFIG]21001[/ATTACH]
0 Kudos
1 Solution

Accepted Solutions
MarkBaird
Esri Regular Contributor
We've had a look at what is happening here and can confirm there is a bug.  The code you used at 1.0 for your Unique Designations will not display the label.

There is however a workaround.  If you change your line of code as follows it will work:


[INDENT]message.setProperty("uniquedesignation", "Mad dog");[/INDENT]


It a case sensitivity issue.

This something we will consider carefully in terms of the fix we apply.

I hope this helps in the short term.

Mark

View solution in original post

0 Kudos
2 Replies
by Anonymous User
Not applicable
Original User: mbaird

We will investigate to see what is happening...

Mark
0 Kudos
MarkBaird
Esri Regular Contributor
We've had a look at what is happening here and can confirm there is a bug.  The code you used at 1.0 for your Unique Designations will not display the label.

There is however a workaround.  If you change your line of code as follows it will work:


[INDENT]message.setProperty("uniquedesignation", "Mad dog");[/INDENT]


It a case sensitivity issue.

This something we will consider carefully in terms of the fix we apply.

I hope this helps in the short term.

Mark
0 Kudos