Search found 4 matches

by abermudez
Wed Aug 16, 2023 10:37 pm
Forum: YAJL-ILE
Topic: Service program YAJLR4 not found.
Replies: 2
Views: 8663

Re: Service program YAJLR4 not found.

Thank you for the solution
by abermudez
Wed Aug 16, 2023 7:28 pm
Forum: YAJL-ILE
Topic: Service program YAJLR4 not found.
Replies: 2
Views: 8663

Service program YAJLR4 not found.

Team, I have an RPG program using YAJL that works most of the time. Every now an then I get the following error message when I call the program. “Service program YAJLR4 not found.”. On the green screen when I add YAJL to the library list the program begins to work again. I am not sure why this happe...
by abermudez
Tue Aug 15, 2023 9:31 pm
Forum: YAJL-ILE
Topic: Issue with yajil_buf_load_tree From a VARCHAR string
Replies: 1
Views: 7430

Re: Issue with yajil_buf_load_tree From a VARCHAR string

OK I resolved the varchar() issue .

I used docNode = yajl_buf_load_tree(%addr(GetUri_Out:*data) : %len(GetUri_Out) : ErrMsg );

and I get no more errors.
by abermudez
Tue Aug 15, 2023 9:14 pm
Forum: YAJL-ILE
Topic: Issue with yajil_buf_load_tree From a VARCHAR string
Replies: 1
Views: 7430

Issue with yajil_buf_load_tree From a VARCHAR string

I am currently using YAJL to deconstruct a JSON string. I am using: docNode = yajl_buf_load_tree(%addr(GetUri_Out) : %len(%trim(GetUri_Out)) : ErrMsg ); I am using GETURI to get mu HTTP Response and the GetUri_Out is a varchar(1048576) value holding the web response. When using the code above I get ...