Consuming BizTalk WCF Web Service From Navision
November 6th, 2012
Dear reader,
This article is the companion part from the last article and to easily understand this article you should read the first part. This article elaborate the integration between Navision and BizTalk Server using WCF technology and it would be an alternative solution apart from using Commerce Gateway adapter component. The elaboration in this article would be heavily with BizTalk WCF adapter technology and .NET COM component wrapper which I developed by Visual Studio 2010 Express Edition in C# language. The test solution environment are based on Windows Server 2003 32 bits, BizTalk server 2006 R2 and Navision 2009 R2. It is very high likely, the solution would prevail with higher windows version and higher BizTalk server version.
Consuming Navision 2009 Web Service from BizTalk Server
August 15th, 2012
Recently, I have been thinking of Navision Commerce Gateway future module especially the BizTalk Commerce Gateway adapter. The latest Microsoft platform are moving forward to 64 bits and Navision maturity closer to .net. These situation cause Commerce Gateway adapter torn out to be good solution or unfitted. Wonder if Microsoft Dynamics would disclose for new technology solution or would rather let the partner to do them self. I can understand people tried to make BizTalk server injecting data into or pulling data from Navision SQL database thru BizTalk SQL adapters. Certainly, there is nothing wrong with it but it has many limitation for few and more integration transaction to go along with it. Regardless, Navision 2009 introduce SOAP web service and high lightly it is good starting point to exploring BizTalk talk to Navision via Navision SOAP web service. In this article I am focusing on how to consume Navision web service and will talk about Navision consuming BizTalk WCF service in another post article.
In the past, I was writing some article regarding project integration with older Navision version. The article overall was about developing a web service extension for exposing Navision business process and data domain reach out to external. In Navision 2009 however, the web service existence really make integration much more easily. This article is resuming from past project integration, I would like to share with you the web service request/response pattern based on Navision web service 2009.
Extracting and Assigning Blob Value via Reference Variable Type
February 18th, 2011
Recently, I have been developing a batch job automation to extract/import Navision tables into/from xml format. Well it is not quite challenging if I have to use XML port object for each table and this is straight forward solution. However, in my case, I would like to extract/import any table dynamically from user selection during runtime and I don’t wish to create each xml port object for each table in Navision.
Certainly I am looking at RecordRef and FieldRef data type that would be my outmost possible solution and indeed I almost there but I was stuck with Blob data type and check mate. As you have probably known the field reference provide us with Value or Validate method to extract or to assigned the value for a field. These methods are seem good for simple data types and very unfortunately the method of CREATEINSTREAM and CREATEOUTSTREAM are absent from field reference and it is seem I am turn into the end of the road.
Data change Tracking Integration with New Database Triggers events In Navision 2009 R2
January 31st, 2011
You might already have aware of new Navision - CRM integration new features introduced in Navision 2009 R2. This integration technically gives possibility in Navision to capture data change tracking in a better way than earlier version. In this article, I want to share with you my point of view of this possibility data change tracking mechanism and give you alternative ways to achieve change tracking with another technology within Microsoft framework.
How to find out Picture Image Format in Navision 2009
October 20th, 2010
Recently I have some requirement to extract Navision item picture to web front application and with Navision 2009 I could store not only BMP format but many other format namely, JPEG, TIFF, PNG and etcetera. This is indeed is great improvement in Navision 2009, since BMP format is not the best format due the size of the space. Now, I have a little problem with the format diversity on how to recall the image format type. I need find out the format type because the web pages require the right content type before it can display correctly.
After some study and research, finally I can make a simple function in Navision C/AL to detect the image format type directly from the blob image field. Basically some bytes at the beginning of the image store the image format information. So, I need the first 4 characters from the BLOB image and do checking with it. The function below detects some major image format and could be extended to detect others whenever it is necessary.
Content Type Function Detector
Below C/AL code is using detector function for displaying the content type format of item picture:
l_recItem.CALCFIELDS(Picture);
IF l_recItem.Picture.HASVALUE THEN BEGIN
l_recItem.Picture.CREATEINSTREAM(l_instreamBigData);
l_instreamBigData.READTEXT(l_textLen4);
l_textContentType := l_cduGenFunction.GetImageContentType(l_textLen4);
Message(’Image Format is : ‘ + l_textContentType);
END;
RTC Text Editor Control Addin for Nav 2009
September 28th, 2010
Some cases of requirement, I need to have text editor in Navision that does not limited to 1K of string and I need able to have break line and simple decoration. This large text could be for explanation of production description, shipping handling or document requirement or could be some comment. So I try to develop a new stuff in Nav 2009 sp1 features call control Addin an as usual using Visual Studio Express Edition 2010 to create one.
Navision COM Wrapper for Consume Web Service
June 23rd, 2010
Preface
Recently, I have been thinking of consuming typical web service such currency exchange rate or RSS weather forecast from Navision. So I come to think how to consume all these services on the web and finally I found “HTTPWebRequest” class under System.Net framework that help me do the wonders. So, I am exciting to create the COM wrapper for Navision to make a request and capture the response. Like usual, I am using Microsoft Visual C# 2008 express editions and Navision message type designer to managing XML at Navision side. Let’s go with substantial matter now.
Hosting/Exposing Navision Message Service with WCF
June 14th, 2010
Preface
This article is the next project from last article regarding the .net component of Navision message service which contains all the message contracts. In this article I will talk about the .net component creation that contain WCF service contract, operation contract and host them in IIS application. This component will utilize the .net Navision message service to communicate with Navision listener.
Navision Message Services on .Net
June 5th, 2010
Preface
In this article I would like to share with you about creating .net component that contains Navision message service library. The first plan is to have message structure in C# class for each message type so the message communication can be easily constructed in .net development. Secondly, I could have the message contract library component that will support the WCF services project. Nevertheless, Navision 4.0/5.0 cannot generate Meta data that I need to generate C# message class but with certain extend it is possible. This article I would share with you the way to achieve this rapidly and hopefully you can catch the concept why I develop message type designer at first place at Navision and relation to this article.