First try to use the URL_ENCODE and URL_DECODE Functions in the QSYS2 schema
(and no longer the functions in the SYSTOOLS library).
The functions in the QSYS2 library do not need JAVA and supports strings
longer than 2048 characters.
... and C is always faster than JAVA
Mit freundlichen Grüßen / Best regards
Birgitta Hauser
Modernization ? Education ? Consulting on IBM i
IBM Champion since 2020
"Shoot for the moon, even if you miss, you'll land among the stars." (Les
Brown)
"If you think education is expensive, try ignorance." (Derek Bok)
"What is worse than training your staff and losing them? Not training them
and keeping them!"
"Train people well enough so they can leave, treat them well enough so they
don't want to. " (Richard Branson)
"Learning is experience ? everything else is only information!" (Albert
Einstein)
-----Original Message-----
From: RPG400-L <rpg400-l-bounces@xxxxxxxxxxxxxxxxxx> On Behalf Of Suren K
Sent: Friday, 2 June 2023 08:10
To: RPG programming on IBM i <rpg400-l@xxxxxxxxxxxxxxxxxx>
Subject: Reg: URL Query String Encode and Decode in RPGLE
Hi All,
Currently, I am doing URL Query String Encode and Decode process using the
SYSTOOLS scalar function
exec sql set :EncodedString = SYSTOOLS.URLENCODE(:Input,'UTF-8');
exec sql set :DecodedString = SYSTOOLS.URLDECODE(:Input,'UTF-8');
When I see the performance metrics for these two SQL statements, it is
taking a minimum of 3 milliseconds to 6 milliseconds to process each
statement.
I tried using Scott Klement's URL Encode function http_setCCSIDs(1208:0);
EncodedString = http_urlEncode(Input);
Scott Klement's encode function is processing within a millisecond, but we
don't have a decoding function.
Could you please guide me to understand why the IBMi-provided function is
taking more time to process? Also, am I missing something in the SQL
statement which is causing the delay?
Regards,
Suren
--
This is the RPG programming on IBM i (RPG400-L) mailing list To post a
message email: RPG400-L@xxxxxxxxxxxxxxxxxx To subscribe, unsubscribe, or
change list options,
visit:
https://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives at
https://archive.midrange.com/rpg400-l.
Please contact support@xxxxxxxxxxxxxxxxxxxx for any subscription related
questions.
As an Amazon Associate we earn from qualifying purchases.