Command to manage longer addresses

Command to manage longer addresses

I am working with an iSeries application that uses the commands: strpccmd/strpco to redirect the user to a Web page on a local server. I would like the application to redirect to a different Web page but the address is too long for the commands to handle. Are there other commands available that can manage a longer address (path) for redirect to a server?

    Requires Free Membership to View

    Register today to access targeted resources from our editorial writers and independent industry experts including news, tips, and advice to help you do your job more efficiently and effectively. Stay informed on the hottest topics and biggest challenges faced by IT professionals working with iSeries products and services.

    By submitting your registration information to Search400.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of Search400.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

Strpccmd is limited in command length due to the mechanism of using the "emulation buffer" to send the command. Here are a few alternatives:

  • Use runrmtcmd. This requires that you run the incoming remote command server on your PC.

  • Use strpccmd to call a batch file on the IFS, the batch file will redirect properly.

    For example: strpccmd i:myscript.bat (where i is drive mapped to iSeries IFS or any network drive and myscript.bat is for the redirection)
  • This was first published in January 2006