To Sort values in a list in ascending order

Hi. Does anyone know if there is a IS service to sort values in a list?

ie.
nameList:
- Amy
- Jack
- Brian

I would like to sort the list in ascending order to be like the following:
sortedNameList:
- Amy
- Brian
- Jack

Thanks!

You can do this using the Java API. The method is called sortIDataArrayByKey. See this
discussion on Advantage. HTH,

Tim