× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



Do you want to call a rpg program from windows? If so we are doing it by creating procedures and call them from .net programs.

You have to have odbc configured to your System i server see bellow sample

            OdbcCommand cmd = (OdbcCommand)ConnectionTypes.WS.GetCommand();‬‪            cmd.CommandType = CommandType.StoredProcedure;‬‪            cmd.CommandText = "{CALL RPG1(?,?,?,?)}";‬‪            OdbcParameter paramUserID = new OdbcParameter("iUser", txtUserLoginId.Text.ToUpper());‬‪            paramUserID.Direction = ParameterDirection.Input;‬‪            OdbcParameter paramPassword = new OdbcParameter("iPassword ", txtPassword.Text.ToUpper());‬‪            paramPassword.Direction = ParameterDirection.Input;‬‪            OdbcParameter paramErrFlag = new OdbcParameter("iErrCode", "");‬‪            paramErrFlag.Size = 1;‬‪            paramErrFlag.Direction = ParameterDirection.InputOutput;‬‪            OdbcParameter paramErrDesc = new OdbcParameter("iErrDesc", "");‬‪            paramErrDesc.Size = 50;‬‪            paramErrDesc.Direction = ParameterDirection.InputOutput;‬‪            cmd.Parameters.Add(paramUserID);‬‪            cmd.Parameters.Add(paramPassword);‬‪            cmd.Parameters.Add(paramErrFlag);‬‪            cmd.Parameters.Add(paramErrDesc);‬‪            cmd.ExecuteScalar();‬‪




Regards,

Chamara Withanachchi
IBM Certified Power System Expert
RPG Programmer
(owner of www.rpgiv.info)

WWW.RPGIV.INFO
Mob: +971 50 5698644
Tel: +971 6 5595887
chamaraw@xxxxxxxxxx
www.rpgiv.info
i want to be future ready. i want control. i want an i.


Sent from my BlackBerry® wireless device

-----Original Message-----
From: PEPITOVADECURT <pepitovadecurt@xxxxxxxxx>

Date: Thu, 02 Apr 2009 13:34:08
To: <rpg400-l@xxxxxxxxxxxx>
Subject: Call a RPG program from Windows


Hi, I need to execute a RPG or CL program sending a command from Windows
(bash script or webpage...).

I have done the opposite mode (call a Windows program from a AS400) with
these commands:
STRPCO --> Start pc organizer
STROCCMD PCCMD (calc) --> Pc command


As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.