Serialize NAV objects as JSON

Today in a forum someone asks this question: can I serialize a Microsoft Dynamics NAV object (record in a table) as JSON in C/AL?

The new AL language (Extensions 2.0) has native support for JSON (for example JsonObjectClass) but in C/AL there’s no a native way to serialize objects as JSON. JSON is supported only in OData objects (by appending ?$format=json in the url).

In C/AL we can use the wonderful JSON.NET addin (always available when installing Visual Studio on your machine) and use them to handle JSON serialization.

To do this, copy the Newtonsoft.Json.dll assembly in the Add-ins folder on the service tier (or in the RoleTailored client folder if you want to use it client-side).

If you’re useful to JSON.NET in Visual Studio you already knows that, after referencing JSON.NET, you can use JSONConvert.SerializeObject(<YourObject>) to obtain its JSON serialization. But what about C/AL and NAV?

Imagine that you want to serialize a NAV Customer as JSON. Unfortunately, writing something like this it doesn’t work:

NAVJson_01

In order to serialize a Customer object from C/AL with JSON.NET, you’ve to manually declare the attributes of your NAV object that you want to add in your JSON class. You can do the following:

Create the following 3 DotNet variables by referencing the .NET assembly mscorlib:

  • StringBuilder: System.Text.StringBuilder.’mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089′
  • StringWriter: System.IO.StringWriter.’mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089′
  • JSON: System.String.’mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089′

Then reference the JSON.NET assembly:

  • JSONTextWriter: Newtonsoft.Json.JsonTextWriter.’Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed’

Create a function called CreateJSONAttribute as following:

NAVJson_02

and in the function code write these lines:

NAVJson_03.jpg

In this function, we create a JSON property and its value and we write it to the JSON serialization.

The JSON serialization of a NAV Customer object is handled as following:

NAVJson_04.jpg

Here, we use the JSONTextWriter class to create a JSON object on a StringWriter, then the StringWriter object writes to the specified StringBuilder object used in its constructor. At the end, here we retrieve the JSON text and we output it on NAV.

This is the final result:

NAVJson_05.jpg

Not as easy as in C# or in AL but it could be useful (and obviously we can handle also the parsing of an input JSON request).

 

 

 

 

 

 

 

 

3 Comments

  1. Great tutorial!! But FORMAT is forcing to convert all values to text. What if you want them to be numeric aka “price”:5.99 instead of “price”:”5.99″? Isn’t WriteValue supposed to handle all kind of data types?

    Like

  2. Great post!

    How do you handle the situation, when StringBuilder receives more than 1024 chars? I receive the known limit error for StringBuilder in BC C/AL, when I try to replicate a complete record with all field names and values in JSON and it exceeds 1024 chars…

    Like

    1. In AL now Text is 2Gb if you don’t specify the size. You can also load the message to an Instream, and after laoding the InStream into the jSonObject. In C/AL I think you can use BigText variables.

      Like

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.