Click here to Skip to main content
15,867,141 members
Articles / Programming Languages / Visual Basic
Article

Accessing AS400 Business Logic From .NET Applications

Rate me:
Please Sign up or sign in to vote.
4.89/5 (17 votes)
21 Oct 20032 min read 267K   666   35   57
This article describes how to call a COBOL program residing on an AS400 machine from a .NET application.

Sample Image - Accessing_AS400.jpg

Introduction

A company's data might exist scattered in legacy systems, in custom-built business applications and in databases in different parts of the organization. The ability to integrate and leverage all this data and applications helps us in reducing the reuse of existing applications, development time and the risk.

I also encountered a similar scenario where I had to reuse the data and business logic (which is implemented in COBOL) developed on AS/400, from a .NET application. This article is a modest approach which describes the above, using an example..

About the application

The application explained here has three buttons. The Add button sends the input data to a COBOL program, which is available on an AS/400 machine. This COBOL program validates the entered user information. If its a valid data, it updates the physical file (USERS) which is residing on AS/400. The Remove button deletes a row from the same physical file based on the user ID provided .The Quit button closes the application.

The .NET application, which I’ve developed, reads the user input and calls the COBOL program. The COBOL program passes the data entered by the user and receives the values returned by the COBOL program. The three textboxes provide the input parameters for the program. They contain the data to be updated.

Sample screenshot

The AS/400 machine name (connection string) and the library in which the COBOL program is available are configured in the app.config file. This allows us to change these values without the need to recompile the program.

XML
<?xml version="1.0" encoding="utf-8" ?>

<configuration>

 <appSettings>

  <add key="ProgramName" value="pgm1" />

  <add key="Library" value="lib1" />

  <add key="ConnectionString" value="conn1"/>

</appSettings>

</configuration>

where

  • pgm1 = Name of the COBOL program
  • lib1 = Library on AS/400 in which COBOL program is available
  • conn1 = connection string for AS/400
"Provider=IBMDA400.DataSource.1;User ID=XXXX;Password=YYYYY;Data 
Source=123.123.123.123;Connect Timeout=_ 
30;SSL=DEFAULT;Transport Product=Client Access"

This application uses ADODB as an interface to connect to the database. It has three primary objects- the connection object, the command object and the recordset. The command object is used to execute the command text from the connection object. The parameters are stored in the command parameters and the values are read during runtime. When the command type in the command object is text, we must specify a placeholder for the number of parameters. IBM Client Express’s IBMDA400 OLEDB provider is used for connecting to AS/400.

The following code shows how we have used the command object for passing the three parameters:

VB
command = New ADODB.Command

OpenConnection()

command.ActiveConnection = conn

command.CommandType = ADODB.CommandTypeEnum.adCmdText

command.Parameters.Append(command.CreateParameter("P1",_ 
ADODB.DataTypeEnum.adChar, _ 
  ADODB.ParameterDirectionEnum.adParamInputOutput,5))

command.Parameters.Append(command.CreateParameter("P2",_ 
ADODB.DataTypeEnum.adChar, _
   ADODB.ParameterDirectionEnum.adParamInputOutput,10))

command.Parameters.Append(command.CreateParameter("P3", _
ADODB.DataTypeEnum.adChar, _ 
    ADODB.ParameterDirectionEnum.adParamInputOutput, 10))

The following code calls the COBOL program:

VB
command.CommandText = "{{CALL /QSYS.LIB/" & _ 
        lib_str & ".LIB/" & program_str & ".PGM(?,?,?)}}"

command.Prepared = True

Dim Rcds As Object = New Object

command.Execute(Rcds, a, command.CommandType.adCmdText)

We can also execute the SQL queries directly on AS/400 physical files. This is a right solution when we need to change the data without any prior processing. For implementing delete functionality I am using this procedure.

VB
command.CommandType = ADODB.CommandTypeEnum.adCmdText

command.CommandText = "DELETE FROM " & _
    libr_str & ".USERS1 WHERE USERID =" & txtUserId.Text

command.Execute()

Conclusion

We can manipulate the data that is stored on AS/400 from our .NET applications. We can integrate applications or use the business logic already implemented on AS/400 in our .NET solutions using this approach.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
India India
Working on .NET for last 6 years. Currently working for TCS.

Comments and Discussions

 
GeneralExemple d'utilisation de I5_Dotnet pour AS400 Pin
Armand Pierre15-Dec-10 23:13
Armand Pierre15-Dec-10 23:13 
General.NET data provider Pin
Polymorpher18-Dec-09 8:29
Polymorpher18-Dec-09 8:29 
GeneralRe: .NET data provider Pin
Armand Pierre22-Oct-10 2:41
Armand Pierre22-Oct-10 2:41 
GeneralDOes not really work for me... Pin
Goran Bacvarovski5-Aug-08 15:32
Goran Bacvarovski5-Aug-08 15:32 
Generalcommand text Pin
Kishar_200227-Jan-06 17:13
Kishar_200227-Jan-06 17:13 
GeneralRe: command text Pin
Kodanda Pani29-Jan-06 19:12
Kodanda Pani29-Jan-06 19:12 
GeneralIBM Client Express Pin
Member 214092925-Jul-05 6:57
Member 214092925-Jul-05 6:57 
GeneralRe: IBM Client Express Pin
Anonymous13-Sep-05 8:49
Anonymous13-Sep-05 8:49 
GeneralPassing Numeric parameters between AS/400 and .NET Pin
derekadk24-Feb-05 22:20
derekadk24-Feb-05 22:20 
GeneralRe: Passing Numeric parameters between AS/400 and .NET Pin
Kodanda Pani7-Mar-05 18:33
Kodanda Pani7-Mar-05 18:33 
GeneralRe: Passing Numeric parameters between AS/400 and .NET Pin
derekadk9-Jun-05 23:40
derekadk9-Jun-05 23:40 
GeneralRe: Passing Numeric parameters between AS/400 and .NET Pin
shrir12-Oct-06 18:31
shrir12-Oct-06 18:31 
QuestionAnyone know how to go the other direction? Pin
ANORTON24-Feb-05 10:55
ANORTON24-Feb-05 10:55 
GeneralConnecting to AS400 from .net Pin
joshiRohit_2115-Dec-04 0:07
joshiRohit_2115-Dec-04 0:07 
GeneralRe: Connecting to AS400 from .net Pin
Kodanda Pani14-Feb-05 20:13
Kodanda Pani14-Feb-05 20:13 
GeneralRe: Connecting to AS400 from .net Pin
joshiRohit_2115-Feb-05 1:09
joshiRohit_2115-Feb-05 1:09 
Generalcalling RPGLE PGM, Module and service program Pin
dsnvsnmdb15-Apr-04 4:15
dsnvsnmdb15-Apr-04 4:15 
GeneralRe: calling RPGLE PGM, Module and service program Pin
Kodanda Pani21-Apr-04 0:32
Kodanda Pani21-Apr-04 0:32 
GeneralMaintenance program in .NET Pin
Effy15-Jan-04 22:40
Effy15-Jan-04 22:40 
GeneralRe: Maintenance program in .NET Pin
kodandapani17-Mar-04 22:53
kodandapani17-Mar-04 22:53 
GeneralAs400 invoking a .Net Pin
dfitzge217-Dec-03 6:19
dfitzge217-Dec-03 6:19 
GeneralRe: As400 invoking a .Net Pin
dfitzge218-Dec-03 3:29
dfitzge218-Dec-03 3:29 
GeneralADODB vs OLEDB connecting the AS/400 Pros &amp; Cons Pin
Effy26-Oct-03 23:11
Effy26-Oct-03 23:11 
GeneralReturn params from an AS400 PGM Pin
Effy24-Oct-03 2:29
Effy24-Oct-03 2:29 
GeneralRe: Return params from an AS400 PGM Pin
Kodanda Pani24-Oct-03 17:32
Kodanda Pani24-Oct-03 17:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.