× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



Besides all that many javascript programmer will send you javascript and
not JSON because
that can't distinguish one from the other:

Javascript
order : [
{
ordernumber : 12345 ...

JSON
"order" : [
{
"ordernumber" : 12345 ...

In javascript this may be very confusing because you can mix it:
order : [
{
"ordernumber" : 12345 ...

But the real difference is that javascript supports complex datatypes, JSON
dont:
order : [
{
ordernumber : function() {return 12300 + 45} ...


On Sun, Aug 13, 2017 at 11:40 PM, Henrik Rützou <hr@xxxxxxxxxxxx> wrote:

The real difference between XML and JSON is that object and arrays may not
have names so
it is often impossible to build an XPATH to a JSON object:

XML:
<orders>
<order>
<ordernumber>12345 ...

JSON (objects within an array has no name)
"orders" : [
{
"ordernumber" : 12345 ...

JSON (root has no name)
[
{
"ordernumber" : 12345 ...

In my own XML parser that works like XML-SAX I always know where I am
because
each element also has the XPATH

XPATH: /orders/order
Element: ordernumber
Value: 12345

In XML you can just use Joe Celko's "Tree Traversal Algorithm" to walk
through the XML.
It works with SQL and with RPGLE repetitive called procedures.

In JSON you cant even though it is rather simple to convert JSON to XML
using pseudo
element names where they are missing.

So it may be impossible to make a general routine that maps any JSON to a
predefined
datastructure - you simply need to know where you are in the JSON.

On Sun, Aug 13, 2017 at 9:37 PM, John Yeung <gallium.arsenide@xxxxxxxxx>
wrote:

On Sun, Aug 13, 2017 at 3:22 PM, Bradley Stone <bvstone@xxxxxxxxx> wrote:
As I said earlier I think code gen is the way to go - but the JSON
structure can be dynamically determined just as XML-SAX allows you to do
with XML.

Yes, that makes sense, but once you do the program "knows" the
structure and is built appropriately around thus said structure.

But which program are you talking about? I think Jon is talking about
at least two programs. One is a code generator, and it doesn't have
compile-time knowledge of the structure, but can determine it
dynamically. Then, it uses this knowledge to build code for a separate
program, which *does* know the structure at compile-time, by means of
this generated code.

This is also the approach espoused by Joe, and it's what I would do as
well, if I were doing it in RPG.

Maybe you are agreeing with all this, but I'm clarifying that one
program does NOT have foreknowledge of the structure, while the other
DOES. (Because it was imparted by the first program.)

John Y.
--
This is the RPG programming on the IBM i (AS/400 and iSeries) (RPG400-L)
mailing list
To post a message email: RPG400-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/rpg400-l.

Please contact support@xxxxxxxxxxxx for any subscription related
questions.

Help support midrange.com by shopping at amazon.com with our affiliate
link: http://amzn.to/2dEadiD




--
Regards,
Henrik Rützou

http://powerEXT.com <http://powerext.com/>






As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.