Details
-
Type: Wish
-
Status: Closed
-
Priority: Major
-
Resolution: Duplicate
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: None
-
Labels:None
Description
I would like to see an attempt to obfuscate the field names being passed in the xml
i.e
object
int stupidlyLongFieldName=1;
boolean anotherRediculouslyLongFieldName=false;
String outrageouslyLongFieldName="text";
toXML
<object>
<stupidlyLongFieldName>0</stupidlyLongFieldName>
<anotherRediculouslyLongFieldName>false</anotherRediculouslyLongFieldName>
<outrageouslyLongFieldName>text</outrageouslyLongFieldName>
</object>
obfuscated toXML
<object>
<1>0</1>
<2>false</2>
<3>text</3>
</object>
If primitive field filtering was available (I believe someone has already expressed a wish for this feature)
toXML
<object>
<stupidlyLongFieldName>0</stupidlyLongFieldName>
<outrageouslyLongFieldName>text</outrageouslyLongFieldName>
</object>
obfuscated toXML
<object>
<1>0</1>
<3>text</3>
</object>
anotherRediculouslyLongFieldName is missing from the xml as it is the default for int.
Justin Birch
Issue Links
- is superceded by
-
XSTR-225 Field obfuscation
You can use aliases to get this functionality. Your issue of
XSTR-225superseeds this one anyway with a proposal for automated support, so I am closing this one.