Thank you for your reply.
> But talking about my experience for other cases, like a critical RPG compiler bug that I found, and a OS bug that crashed the whole machine in production, I must say that they (IBM) provided a fix quickly, in say a week.
Yes, in my experience this is a rare case; most issues are resolved within a month.
> At the moment I think the biggest urgency in IBMi world is to update the ILE C/C++ compilers ...
I too am concerned that the core components of IBM i have not been updated for many years. Interoperability between IBM i native environments and PASE environments is cumbersome, but at worst, if the latest C/C++ is required, you may have no choice but to use gcc.
For example, native FTP still cannot use characters other than Latin characters tough most FTP servers running on UNIX, Windows, and other platforms support RFC 2640 (Internationalization of the File Transfer Protocol), published in 1999, and can utilize UTF-8. Even now, sftp can correctly display files containing non-Latin characters as below.
(IBM i Native FTP)
331 ENTER PASSWORD.
230 PGMR40 LOGGED ON.
OS/400 IS THE REMOTE OPERATING SYSTEM. THE TCP/IP VERSION IS "V7R5M0".
250 NOW USING NAMING FORMAT "0".
257 "QGPL" IS CURRENT LIBRARY.
> ls /tmp/PCDOC/*.pdf
229 ENTERING EXTENDED PASSIVE MODE (|||26967|).
125 LIST STARTED.
/tmp/PCDOC/POB03011USEN.pdf
/tmp/PCDOC/impact of SQL on iSeries 08-01-04.pdf
/tmp/PCDOC/Indexing and statistics strategies for DB2 UDB for iSeries.pdf
/tmp/PCDOC/Using AS400 Database Monitor and Visual Explain.pdf
/tmp/PCDOC/Using AS400 Database Monitor To Identify and Tune SQL Queries.pdf
/tmp/PCDOC/ j K N u ] e } Query 5 - rzajqmst.pdf
/tmp/PCDOC/ P09 SQL U * n k p ] B p .pdf
/tmp/PCDOC/Chart Version of Indexing Strategies(HintsForSQL).pdf
/tmp/PCDOC/DB2 UDB for iSeries u V N u ] -< h n k p ] B (2004 - 4 / 20 ).pdf
/tmp/PCDOC/ g { (DBCS v ).pdf
250 LIST COMPLETED.
(PASE sftp)
C:\Users\user>sftp pgmr40@ibmi
pgmr40@ibmi's password:
Connected to ibmi.
sftp> dir /tmp/pcdoc/*.pdf
/tmp/pcdoc/Chart Version of Indexing Strategies(HintsForSQL).pdf
/tmp/pcdoc/DB2 UDB for iSeries 移行後のパフォーマンス考慮点とチューニング (2004年4月20日).pdf
/tmp/pcdoc/Indexing and statistics strategies for DB2 UDB for iSeries.pdf
/tmp/pcdoc/POB03011USEN.pdf
/tmp/pcdoc/Using AS400 Database Monitor To Identify and Tune SQL Queries.pdf
/tmp/pcdoc/Using AS400 Database Monitor and Visual Explain.pdf
/tmp/pcdoc/impact of SQL on iSeries 08-01-04.pdf
/tmp/pcdoc/【P09】SQL問題判別とチューニングの実際.pdf
/tmp/pcdoc/データベース・パフォーマンスおよび Query 最適化 - rzajqmst.pdf
/tmp/pcdoc/罫線の表示 (DBCS のみ).pdf
Porting open-source software is a great thing, but I believe IBM should focus more on modernizing its native features.