Mshen
23535 pts. | Apr 8 2009 6:25PM GMT
IBM improved a lot of their java processing speeds for the iSeries navigator in later i5/OS versions. I’m assuming it is the same with accessing windows machines. You might want to try it the other way, by having your windows systems access the AS400. Mapped network drives is one idea.
Graybeard52
2450 pts. | Apr 15 2009 12:19AM GMT
I had the same problem - except for me it was more like 30 minute wait. I think it was improved in V5R4, but I never checked. What I did was write a short CL pgm STRQNTC then added a SBMJOB for it from QSTRUP (IPL startup ) program. It runs in batch right after IPL, and by the time I need it, its already has populated the list. I don’t need to run again until after next IPL. Here is the code for the CL pgm.
/* Creates a test directory & then deletes it */
/* This forces QNTC to build a list of available shares */
PGM
MONMSG (CPF0000)
MKDIR DIR(’/QNTC/WINSERVER1/IKSAR/TEST$$’)
RMVDIR DIR(’/QNTC/WINSERVER1/IKSAR/TEST$$’)
ENDPGM






