I need to use JSON in my Notes project. I've downloaded a library for it here https://openntf.org/main.nsf/project.xsp?r=project/JSON%20LotusScript%20Classes. I get a JSON String from back-end side, do some manipulations with JSON And later I need to parse it back into a String. But unfortunately, I can use either JSONReader
or JSONWrapperConverters
script. Cannot use both for some really stupid reason. It gives me the following error.
So I am able either to parse a string using JSONReader
or cast it back to a string using JSONWrapperConverters
. I need to do these 2 things together, obviously.. What is the problem? Why it cannot use 2 libraries at the same time?