Search found 635 matches

by Scott Klement
Mon Mar 04, 2024 3:43 am
Forum: HTTPAPI
Topic: HTTPAPI
Replies: 19
Views: 744

Re: HTTPAPI

I'm happy to answer questions about HTTPAPI. If you want me to create a TIktok account and research their APIs, then determine how to code them, so I can decide if your approach works and provide guidance, that's asking an awful of me. I'd be willing to do it for a consulting fee. But it's too much ...
by Scott Klement
Fri Mar 01, 2024 6:36 pm
Forum: HTTPAPI
Topic: HTTPAPI
Replies: 19
Views: 744

Re: HTTPAPI

Do you not have a QRPGLESRC file? Kinda sounds like someone installed it and then deleted that file.
by Scott Klement
Thu Feb 29, 2024 8:44 am
Forum: HTTPAPI
Topic: HTTP Service Works one time and gets Internal Server Error
Replies: 2
Views: 150

Re: HTTP Service Works one time and gets Internal Server Error

A program running on an Apache server is ending without sending a response.

This has nothing whatsoever to do with HTTPAPI.
by Scott Klement
Fri Feb 23, 2024 11:51 pm
Forum: FTPAPI
Topic: NAMEFMT 1 - 500 Subcommand NAME not valid
Replies: 7
Views: 1954

Re: NAMEFMT 1 - 500 Subcommand NAME not valid

FTPAPI is automatically in namefmt 1. It is already set up the way you want it.

Only the server has to be changed, you do this by calling FTP_namfmt.
by Scott Klement
Tue Feb 20, 2024 7:58 pm
Forum: HTTPAPI
Topic: Using Oauth2 with HTTPAPI
Replies: 8
Views: 420

Re: Using Oauth2 with HTTPAPI

It is backward compatible, if you replace the library everything will keep working.

If you want, you can test this by installing it into a different library, and just using the library list to control which copy you're using.
by Scott Klement
Tue Feb 20, 2024 10:01 am
Forum: HTTPAPI
Topic: REST API connection issue
Replies: 6
Views: 289

Re: REST API connection issue

Is there any difference between TLS_AES_256_GCM_SHA384 and AES_256_GCM_SHA384? No difference. They are the same thing. There is no standard naming for cipher suites, so different vendors make the names slightly different -- in this case, one has "TLS_" at the start and the other does not....
by Scott Klement
Tue Feb 20, 2024 12:09 am
Forum: HTTPAPI
Topic: REST API connection issue
Replies: 6
Views: 289

Re: REST API connection issue

Is there anything I can try prior to installing further PTFs? Our hardware is managed by our corporate business and its a long formal process to get them to do this across our multiple servers. Connection Reset normally means something has violated a protocol. When one side detects that the other i...
by Scott Klement
Mon Feb 19, 2024 8:03 am
Forum: HTTPAPI
Topic: REST API connection issue
Replies: 6
Views: 289

Re: REST API connection issue

It is attempting to perform a TLS ("SSL") handshake and is getting an error saying the connection was reset. How is it supposed to print the server side certificate if it can't complete a handshake without the connection being reset? Think of it this way: Imagine you call to order a pizza,...
by Scott Klement
Mon Feb 19, 2024 7:53 am
Forum: RPG IV
Topic: Converting EXTFLD in a External Ds to Free Format?
Replies: 1
Views: 159

Re: Converting EXTFLD in a External Ds to Free Format?

Code: Select all

Dcl-DS CRSSTL EXTNAME('CRSSTL') INZ;
   TTYPEXX    EXTFLD('TTYPE@@');
End-Ds;
by Scott Klement
Sat Feb 17, 2024 3:44 am
Forum: RPG IV
Topic: QDCXLATE Not converting the brackets in JSON String
Replies: 2
Views: 173

Re: QDCXLATE Not converting the brackets in JSON String

You shouldn't be converting ASCII to EBCDIC. Most computers no longer use ASCII. It is an outdated standard... they are using Unicode, not ASCII. But even if you were... "ASCII" isn't specific. It's a whole family of different character encodings! There are many, many, many different thing...