Hi, i would appreciate it if there's anyone can tell me whether i can do data encryption in Axapta. I've heard from my ex-colleague that there's a function inside Axapta which can do data encryption, is that true?
hi
You can set this up by means of AOS (Axapta Object Server). In the properties of AOS it is possible to choose between options:
1. None
2. 128-bit key
3. Encryption using a specified key
Comments
You can set this up by means of AOS (Axapta Object Server). In the properties of AOS it is possible to choose between options:
1. None
2. 128-bit key
3. Encryption using a specified key
the encryption is in the direction: AOS -> client
Slawek
Thanks for you reply. Is there anyway to encrypt the data using x++ codes in the application itself?
I can give you some hints which might be helpful to you.
TextBuffer txtBuff = new TextBuffer();
txtBuff.insert('Testing for encryption',1);
txtBuff.encrypt(1010);
txtBuff.toFile('c:\\test.txt');
txtBuff.fromFile('c:\\test.txt');
txtBuff.decrypt(1010);
info(txtBuff.getText());
Go in detail in TextBuffer Class which might solve your problem.
Bye.
Ramki.