I have a solution in NAV 2013 where i Create a request body in JSON format for a POST request. In the solution i store all the body text into a Text variable.
Now i have to implement the same solution in NAV 2009 R2 Classic version, but here the Text variable can store only 1024 characters. I have tried using String Automation variable from mscorlib.dll but it didn't work as well.
Do we have any other way to achieve this?
Thanks in advance
0
Answers
You could take a look at this post where there is a solution to that problem.
https://forum.mibuso.com/discussion/comment/332576#Comment_332576
Regards
Thanks @ftornero, i have used
NodeText Automation 'Microsoft XML, v3.0'.IXMLDOMText
and it solved my problem
Could you help me with this question, since I need to implement this in NAV 2013.
Yes sure, in NAV 2013 you can use DotNet variables that makes the job quite easier. My question was regarding NAV 2009 classic version, where only Automation objects are available.