Search found 206 matches

by jonboy49
Mon Feb 19, 2024 8:59 pm
Forum: HTTPAPI
Topic: Using Oauth2 with HTTPAPI
Replies: 8
Views: 831

Re: Using Oauth2 with HTTPAPI

It looks like a server-server setup and somewhat similar to mine but I don't have to mess with form-encoding. Luckily HTTPAPI has that feature available although I've never needed to use it. There is at least one example that uses it in the LIBHTTP RPG sources. Scott is WAY more knowledgeable than m...
by jonboy49
Mon Feb 19, 2024 7:19 pm
Forum: HTTPAPI
Topic: Using Oauth2 with HTTPAPI
Replies: 8
Views: 831

Re: Using Oauth2 with HTTPAPI

I have just finished working on this as Zoom has changed their APIs to use OAUTH2 instead of JWTs. For use by tools such as HTTPAPI Zoom has implemented a Server-Server application interface which is much easier to use than the call-back mechanism that some OAUTH2 users require. I would check with y...
by jonboy49
Sun Feb 04, 2024 7:04 pm
Forum: RPG IV
Topic: %DIFF Issue Utilizing Milliseconds
Replies: 1
Views: 1033

Re: %DIFF Issue Utilizing Milliseconds

You appear to be confusing milliseconds and microseconds. %Diff using *MSECONDS gives _ micro seconds_ not milliseconds. So dividing by 1,000,000 is correct. Two other points. First - if you want seconds then why not ask %Diff for seconds to begin with? If you want decimals of seconds you can specif...
by jonboy49
Fri Feb 02, 2024 4:29 pm
Forum: YAJL-ILE
Topic: DATA-INTO to parse json response
Replies: 3
Views: 1561

Re: DATA-INTO to parse json response

At first glance the easiest way to handle this would be to use countprefix. You have specified this but have not declared the relevant variable in the DS. You need to code something like this: dcl-ds Data qualified; status char(25); errmsg char(100); num_InvoiceData int(5); // Add this definition dc...
by jonboy49
Wed Jan 10, 2024 7:35 pm
Forum: YAJL-ILE
Topic: YAJL function for deleting node
Replies: 2
Views: 1300

Re: YAJL function for deleting node

Directly within RPG your only option would be to use DATA-INTO with YAJLINTO to read the json, then copy only the required portions to a new DS and use DATA-GEN with YAJLGEN to regenerate the json. It is possible that you could achieve this without the use of a second DS by utilizing countprefix and...
by jonboy49
Wed Nov 29, 2023 4:43 pm
Forum: YAJL-ILE
Topic: YAJL lexical error: invalid character inside string
Replies: 4
Views: 7983

Re: YAJL lexical error: invalid character inside string

Well they are not "invalid". They appear to be escape characters. In JSON any character that has special meaning must be escaped if it is part of the data. For example this: In json special characters, such as " must be escaped Would have to be represented as: In json special characte...
by jonboy49
Fri Nov 10, 2023 10:07 pm
Forum: HTTPAPI
Topic: Special characters in URL
Replies: 8
Views: 14158

Re: Special characters in URL

That URL should be: Servername.company.com:1234/api/ProcessMessage?custID=GPD&facility=01 surely?

The "?" introduces the query string. "&"s separate the parameters.

As it is now the second "?" is being treated as part of the value for custID
by jonboy49
Wed Nov 08, 2023 11:46 pm
Forum: HTTPAPI
Topic: gsk_env_init Error from Iseries to https
Replies: 7
Views: 14818

Re: gsk_env_init Error from Iseries to https

What does the HTTPAPI debug log show? If it is a certificate issue it will show there. Are you certain the service is available? How did you verify that?
by jonboy49
Wed Nov 01, 2023 9:33 pm
Forum: RPG IV
Topic: Using JSON Nested Data Structures in Multiple Programs
Replies: 4
Views: 9507

Re: Using JSON Nested Data Structures in Multiple Programs

I would (and do) do exactly what you have suggested. In fact I go one step further in that the /COPY contains the DS as a template. Like so: Dcl-DS myDS_T Qualified Template; field1 char(10); field2 int(5); Dcl-DS nestedDS Dim(20); field3 varchar(40); End-DS; End-DS; That way you can simply referenc...
by jonboy49
Wed Oct 04, 2023 4:28 pm
Forum: RPG IV
Topic: Debugging a CGI RPG Web Program
Replies: 2
Views: 7332

Re: Debugging a CGI RPG Web Program

Brad Stone has a brief piece on the topic here: https://www.fieldexit.com/forum/display?threadid=48 CNX have a nice on here: https://www.cnxcorp.com/blog/debug-back-end-production-jobs-using-strdbg Jan did a piece for MC Press here: https://www.mcpressonline.com/programming/rpg/techtip-debugging-cgi...