Remove default data hash sorting in perl script?

Hi,

I have a datahash with 'n' number of values in perl script. I am writing a xml file from the datahash. I am getting output with sorting(Field sorting). My question is that i don't want any default sorting.whatever i am inserting into datahash it should give same xml file.

Any help?

this is bleow code

my %dataHash;
%dataHash = ();
#$loginCnt is key
# $usrLoginID and $usrPriv retrieved value
$dataHash{Server}{Login}{$loginCnt}{DBLogin} = $usrLoginID;  
$dataHash{Server}{Login}{$loginCnt}{Access} = $usrPriv;