Business Object API
The Business Object API is a HTTP interface to expose business functionality. By default it is started using the Service Hoster.

Last updated
The Business Object API is a HTTP interface to expose business functionality. By default it is started using the Service Hoster.

Last updated
using System;
using System.Security.Cryptography;
public class Program
{
public static void Main()
{
Console.WriteLine("Guid:");
Console.WriteLine(Guid.NewGuid().ToString());
Console.WriteLine();
Console.WriteLine("Secret/Hash:");
RandomNumberGenerator cryptoRandomDataGenerator = new RNGCryptoServiceProvider();
byte[] buffer = new byte[36];
cryptoRandomDataGenerator.GetBytes(buffer);
string uniq = Convert.ToBase64String(buffer);
Console.WriteLine(uniq);
}
}