Hi.
When converting a cursor into an XML representation, I get the error "String is too long to fit" in wwXML.CursorToXml(). The resulting string size after conversion seems more significant than the allowable size.
Is there a way to fix this?
I would also like to hear your opinion.

No - not for wwXml.
16mb string limit for FoxPro and wwXML wasn't designed for working with larger strings.
wwJsonSerializer can deal with larger than 16mb strings (with a fix posted earlier this week).
Might be possible to fix wwXml in a similar way, but XML is so dated at this point I'm not inclined to fix it.
In either case it's not really a good idea to serialize that much data anyway and if you go too much over 16mb it'll still break due to memory constraints in FoxPro for a single variable.
+++ Rick ---
My application has been in operation for a long time and has a lot of data.
Users sometimes query large amounts of data.
It is running well, so large-scale maintenance for REST Service isn't easy because of the risk of problems.
The solution is to block large volumes of queries.
Thank you for your reply.