SNMP Traps Translation

the big hex number seems to be a string ending with a NULL character (00).
it translates to " xMS server problem detected."
take the first first 2 numbers after the 0x. this is your first letter: 0x78 is the hex code for the ascii character “x”… 0x4d == “M” , 0x53 == “S” 0x20 == " " (space)., 0x73 == “s”, 0x 65 == “e” etc
See attached picture for the hex values and corresponding character.

If you are using python for instance, you can put the string behind the 0x into a variable and decode it easily:

msg=“784d53207365727665722070726f626c656d2064657465637465642e00”
print msg.decode(“hex”)
this will print out: xMS server problem detected.

Hope this helps you.

Best regards,