US20080256552A1 - System and method for a cics application using a same program on a local system and a remote system - Google Patents
System and method for a cics application using a same program on a local system and a remote system Download PDFInfo
- Publication number
- US20080256552A1 US20080256552A1 US11/733,364 US73336407A US2008256552A1 US 20080256552 A1 US20080256552 A1 US 20080256552A1 US 73336407 A US73336407 A US 73336407A US 2008256552 A1 US2008256552 A1 US 2008256552A1
- Authority
- US
- United States
- Prior art keywords
- program
- remote
- local
- remote system
- information
- Prior art date
- Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
- Abandoned
Links
Images
Classifications
-
- H—ELECTRICITY
- H04—ELECTRIC COMMUNICATION TECHNIQUE
- H04L—TRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
- H04L67/00—Network arrangements or protocols for supporting network services or applications
- H04L67/01—Protocols
- H04L67/10—Protocols in which an application is distributed across nodes in the network
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F9/00—Arrangements for program control, e.g. control units
- G06F9/06—Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
- G06F9/46—Multiprogramming arrangements
- G06F9/50—Allocation of resources, e.g. of the central processing unit [CPU]
- G06F9/5005—Allocation of resources, e.g. of the central processing unit [CPU] to service a request
- G06F9/5027—Allocation of resources, e.g. of the central processing unit [CPU] to service a request the resource being a machine, e.g. CPUs, Servers, Terminals
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F9/00—Arrangements for program control, e.g. control units
- G06F9/06—Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
- G06F9/46—Multiprogramming arrangements
- G06F9/54—Interprogram communication
- G06F9/544—Buffers; Shared memory; Pipes
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F9/00—Arrangements for program control, e.g. control units
- G06F9/06—Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
- G06F9/46—Multiprogramming arrangements
- G06F9/54—Interprogram communication
- G06F9/547—Remote procedure calls [RPC]; Web services
-
- H—ELECTRICITY
- H04—ELECTRIC COMMUNICATION TECHNIQUE
- H04L—TRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
- H04L67/00—Network arrangements or protocols for supporting network services or applications
- H04L67/01—Protocols
- H04L67/02—Protocols based on web technology, e.g. hypertext transfer protocol [HTTP]
-
- H—ELECTRICITY
- H04—ELECTRIC COMMUNICATION TECHNIQUE
- H04L—TRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
- H04L67/00—Network arrangements or protocols for supporting network services or applications
- H04L67/50—Network services
- H04L67/60—Scheduling or organising the servicing of application requests, e.g. requests for application data transmissions using the analysis and optimisation of the required network resources
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F2209/00—Indexing scheme relating to G06F9/00
- G06F2209/50—Indexing scheme relating to G06F9/50
- G06F2209/509—Offload
Definitions
- the present invention relates generally to computer systems, and more particularly to a system and method for processing a remote request.
- CICS is a transaction processing system designed for both online and batch activity.
- CICS On large IBM zSeries and System z9 servers, for example, CICS easily supports thousands of transactions per second, making it a mainstay of enterprise computing. For this reason, CICS is used in bank teller applications, airline reservation systems, ATM systems, etc.
- an application program designed to execute in the CICS Transaction Server environment can only access storage within its local CICS region.
- many remotely connected CICS regions can distribute databases and workload for load balancing to make the most efficient use of processing capacity. This causes customer information to be distributed, which requires complex coding techniques. This also can make application support and problem determination difficult and time consuming, which can have a negative affect on customer satisfaction and application availability.
- CICS applications can be written in numerous programming languages, including COBOL, PL/I, C, C++, IBM Basic Assembly Language, REXX, and Java. But, programming techniques to provide access to storage on a remote CICS region can be complicated and require multiple programs.
- the CICS Transaction Server for z/OS and V2R3 CICS Application Programming Reference (SC34-6232) describes the available commands to access resources controlled by CICS, and the CICS Transaction Server for z/OS CICS Intercommunication Guide (SC34-6243) describes methods of CICS-to-CICS communication.
- the programming options available to the CICS applications include:
- the DPL option provides the simplest method for a program to communicate with another program on a remote system.
- the remote program has access to every resource, database, and storage area on that CICS region, as well as connecting to another CICS region through the same interface.
- a common data area also referred to as “commarea”. This is typically a data structure with defined fields which different programs at both ends utilize.
- the required components include a source program, a target program, and the data defining area (copybook or macro) used to pass information between the source program and the target program.
- the target program for example, is unique because it responds to the source program, in order to obtain data from the remote system.
- the data defining area has to be created such that it includes all fields associated with the remote system and it must be synchronized between the source program and the target program.
- the target program when a field in the data defining area is changed, the target program must have a corresponding change and, if not, the data will be corrupted. Accordingly, in use, the implementation of the source program, target program, and data-defining area requires additional programming and careful attention to synchronization, amongst other things.
- a method comprises sending programming functions of a local system with a request for information to a remote system.
- the method further includes processing the programming functions of the local system with the request for information on the remote system to obtain updated information from the remote system.
- the updated information is sent to the local system for display.
- a system for obtaining information from a remote system comprises a computer infrastructure having one type of program for a local system and the remote system.
- the program is operable to send programming functions of the local system with a request for information to the remote system, process the programming functions of the local system and the request for information on the remote system and send the updated information to the local system for display, via a defined common area storage.
- a computer program product comprising a computer usable medium having readable program code embodied in the medium.
- the computer program product includes at least one component to perform the steps of the invention.
- FIG. 1 shows an illustrative environment for implementing the steps in accordance with the invention
- FIG. 2 shows an architecture in accordance with an aspect of the invention
- FIG. 3 is a flow chart of steps for implementing aspects of the invention.
- FIG. 4 is an illustrative graphical representation (screen shot) implementing aspects of the invention.
- the invention relates to a system and method implemented in a Customer Information Control System (CICS) Application configured to process information residing on remote systems and display such information on a local system, using a same program residing on and/or associated with both the remote system(s) and the local system.
- CICS Customer Information Control System
- the invention can be implemented over any distributed network, for example, and any existing program can be modified to take advantage of the benefits and functionality of the system and method of the invention.
- the system and method is implemented on IBM mainframe systems under Z/OS, z/VSE, i5/OS or OS/2 operating systems, amongst other implementations.
- the system and method of the invention requires only one program to be developed which executes on both ends of the communication channel without any communications interface programming; compared to a client/server model using separate programs and complicated communication protocols. Additionally, in the system and method of the invention all of the defined dynamic storage is available to the program on both ends of the communications link, making the process of transferring programming functions from one system to another seem nearly transparent. In such implementations, the system and method of the invention takes virtually the entire working storage of the program (on the local system) and passes it to and returns it from the program on the remote system. Also, the program implemented in the system and method of the invention is configured in such a manner as to allow access to the storage area on the remote system using the program on the local system.
- the system and method of the invention utilizes a Distributed Program Link in such a manner as to eliminate the need for a target program and data defining area.
- the system and method of the invention greatly simplifies the required programming into a single program, which handles both client and server functions and eliminates communications protocol requirements. That is, for example, in implementation, the system and method of the invention defines a method for a program executing on a local (originating) CICS region to access information on a remote (target) CICS region.
- FIG. 1 shows an illustrative environment for managing the processes in accordance with the invention.
- the illustrative environment may be a server or a user workstation, for example, and may represent both a local system 10 a and a remote system 10 b implementing a CICS.
- the illustrative environment is implemented on IBM mainframe systems under z/OS, z/VSE, i5/OS or OS/2 operating systems (O/S), amongst other implementations.
- the environment includes a computer infrastructure 12 having a computing device 14 (e.g., including a source/target program). More specifically, the computing device 14 includes a program 16 a , 16 b , which is identical on both the local system 10 a and the remote system 10 b . In this manner, it is possible to eliminate the use of different programs on the local system 10 a and the remote system 10 b .
- the remote system 10 b may additionally include the remaining or similar components that reside on and/or are associated with the local system 10 a , e.g., ROM, storage, external devices, etc, as described herein.
- the local system 10 a can be linked to the remote system 10 b using, for example, any type of networks (e.g., the Internet, a wide area network, a local area network, a virtual private network, etc.); and/or any known transmission techniques/protocols (e.g., TCP/IP).
- networks e.g., the Internet, a wide area network, a local area network, a virtual private network, etc.
- transmission techniques/protocols e.g., TCP/IP
- the program 16 a , 16 b performs several functions including, for example,
- the program 16 b on the remote system 10 b will use information in a commarea storage 17 (herein after referred to as a common area storage) as its working storage to collect and process the requested information and return it to the calling program on the local system 10 a .
- a common area storage commarea storage 17
- the screen data can be formatted in the working storage on the remote system 10 b .
- the 3270 type screen is represented as I/O device 28 .
- the data in the common area storage 17 would reflect the updated information from the remote system 10 b as if it had been processed locally in the working storage 22 B on the local system 10 a . In this way, the screens would be ready for display to the user on the local system.
- the working storage area 22 B on the remote system 10 b may be defined and used in exactly the same manner as the same program 16 a on the local system 10 a.
- the memory 22 A can include local memory employed during actual execution of program code, bulk storage, and cache memories which provide temporary storage of at least some program to reduce the number of times code must be retrieved from bulk storage during execution.
- the computer infrastructure 12 further includes a processor 20 , an input/output (I/O) interface 24 , a bus 26 , Storage “S”, ROM, RAM and an external I/O device/resource 28 .
- the external I/O device/resource 28 may be a keyboard, display, pointing device, or any device that enables the computer infrastructure 12 to communicate with one or more other computing devices using any type of communications link 30 .
- the communications link 30 can be, for example, wired and/or wireless links; one or more types of networks (e.g., the Internet, a wide area network, a local area network, a virtual private network, etc.); and/or any known transmission techniques and protocols such as, for example, TCP/IP.
- the processor 20 executes the computer program code and logic of the system and method of the invention, which is stored in the memory 22 A. While executing the computer program code, etc., the processor 20 can read and/or write data to/from the memory 22 A, storage system 22 B, and/or I/O interface 24 .
- the bus 26 provides a communications link between each of the components in the computing device 14 .
- the invention is configured for any computer application running on any operating platform that comprises a program executing on a local system that uses some representation of working storage containing variable data.
- the computer application is configured to to send such data to a remote system, whereby the same program or a different program could use the data for it's own working storage, and return the updated storage to the originating program.
- the originating program working storage would be altered to values updated by the remote program. This would include communication such as, for example, ( ISC), (TCPIP), and (MQSeries); although (DPL) would be the easiest to implement.
- FIG. 2 shows an architecture in accordance with an aspect of the invention. More specifically, the architecture includes a local system 10 a and a remote system 10 b . Both the local system 10 a and the remote system 10 b include, for example, the same program “A”, 16 a , 16 b , as well as a storage area 22 B and CICS storage area 23 .
- the architecture also includes common area storage 17 , which is a common storage for both the local system 10 a and the remote system 10 b .
- the program 16 b on the remote system 10 b will use information in the common area storage 17 as its working storage to collect and process the requested information and return it to the calling program on the local system 10 a .
- the data in the common area storage 17 reflects the updated information from the remote system 10 b as if it had been processed locally in the working storage 22 B on the local system 10 a.
- An EXECute CICS LINK is provided between the local system 10 a and the remote system 10 b .
- the EXECute CICS LINK is a standard function of the CICS command level interface.
- six fields are used with the EXECute CICS LINK.
- the six fields include:
- the program 16 a may display the current SYSID value, optionally display a list of possible remote systems, and recognize a request to change the SYSID value to a remote system (or back to the local system).
- the program 16 a (or 16 b ) can work from a hardcoded list of remote systems.
- the only requirement for a user is to select the desired remote target system, which could be presented from a list or other similar method suitable for the application.
- the program 16 a (or 16 b ) also uses a procedure to perform the remote distributed program link with the common area and checks for error conditions such as an invalid or unavailable remote system.
- the program 16 a (or 16 b ) is also configured to log the invalid or unavailable remote system condition or report back to the user such condition.
- no variable length fields be defined because the data structure requires a fixed length for the CICS link common area 17 . Also, any fields which are not relevant to the distributed program link, such as local loop counters, pointers to local data areas, local time, or user 3270 terminal related information may be excluded from the data structure.
- writing a new program or converting an existing program includes defining all working or dynamic storage variables used by the program 16 a (or 16 b ) into a data structure with a high level name of the structure. For an existing program, all of the variables should be collected and defined in this structure.
- FIG. 3 represents a flow diagram implementing steps of the invention.
- the steps of FIG. 3 may be implemented in the environment of FIG. 1 or architecture of FIG. 2 .
- the steps of the invention may equally represent a high-level block diagram of the invention.
- the invention can take the form of an entirely hardware embodiment, an entirely software embodiment or an embodiment containing both hardware and software elements.
- the software elements may be firmware, resident software, microcode, etc.
- the invention can take the form of a computer program product accessible from a computer-usable or computer-readable medium providing program code for use by or in connection with a computer or any instruction execution system.
- a computer-usable or computer readable medium can be any apparatus that can contain, store, communicate, propagate, or transport the program for use by or in connection with the instruction execution system, apparatus, or device.
- the medium can be an electronic, magnetic, optical, electromagnetic, infrared, or semiconductor system (or apparatus or device) or a propagation medium.
- Examples of a computer-readable medium include a semiconductor or solid state memory, magnetic tape, a removable computer diskette, a random access memory (RAM), a read-only memory (ROM), a rigid magnetic disk and an optical disk.
- Current examples of optical disks include compact disk—read only memory (CD-ROM), compact disk—read/write (CD-R/W) and DVD.
- the invention provides a business method that performs the steps of the invention on a subscription, advertising, and/or fee basis. That is, a service provider, such as a Solution Integrator, could offer to perform the processes described herein. In this case, the service provider can create, maintain, deploy, support, etc., a computer infrastructure that performs the process steps of the invention for one or more customers. In return, the service provider can receive payment from the customer(s) under a subscription and/or fee agreement and/or the service provider can receive payment from the sale of advertising content to one or more third parties.
- a service provider such as a Solution Integrator
- the service provider can create, maintain, deploy, support, etc., a computer infrastructure that performs the process steps of the invention for one or more customers.
- the service provider can receive payment from the customer(s) under a subscription and/or fee agreement and/or the service provider can receive payment from the sale of advertising content to one or more third parties.
- the program starts on the local system.
- the process declares a common data structure as an area referenced by a pointer, containing various fields required for the execution of the program.
- the process defines a constant length field to reference the length of the common area.
- a pointer can be used to reference the defined data structure, which can either be local storage on the local system or the common area provided in the CICS link on the remote system.
- the process defines an area in local working or dynamic storage for the program when executing on the local system. In embodiments, at step 325 , all of the initial values of the program executing on the local system are stored in this area, as well as the ongoing values as the program progresses through its functions.
- the process provides an area having the initial values and any ongoing values to CICS in the remote program link, which is passed to the remote system as a common area.
- the program on the remote system uses the information provided to CICS, in the remote program link to perform its requested tasks and, at step 340 , returns its information to the local system via, for example, the common area. That is, the program on the remote system uses the information in the common area storage as its working storage to collect and process the requested information and return it to the calling program on the local system.
- the program logic can be shown in the following non-limiting examples, written in PL/1 language but easily adapted to other languages.
- a common data structure is declared as an area, referenced by a pointer, containing various fields required for the execution of the program. These fields may be defined as follows:
- a constant length field can be defined to reference the length of the Commarea (common area).
- a pointer can be used to reference the defined data structure, which can either be local storage on the local (originating) system 10 a or the common area provided in the CICS link (EXECute CICS LINK) on the remote system 10 b .
- the defined data structure can either be local storage on the local (originating) system 10 a or the common area provided in the CICS link (EXECute CICS LINK) on the remote system 10 b .
- An area may be defined in local working or dynamic storage for the program 16 a when executing on the local system 10 a .
- all of the initial values are stored in this area, as well as the ongoing values as the program 16 a progresses through its functions. If there is a need to access a remote system 10 b , then this area is provided to CICS in the remote program link to be passed to the remote system 10 b as a common area, where it is updated and returned.
- a simple check may be made to determine how the program 16 a was started. For example, if the program 16 a was started with a commarea (e.g., by a check of the commarea length provided by CICS) via the Distributed Program Link, then the pointer to the working area is assigned from the CICS-provided commarea address. If the commarea length is zero, the program 16 a is determined to be started locally by, for example, a 3270 terminal user or another background program. In the latter example, the pointer is assigned the address of the local dynamic storage area.
- a commarea e.g., by a check of the commarea length provided by CICS
- the pointer to the working area is assigned from the CICS-provided commarea address. If the commarea length is zero, the program 16 a is determined to be started locally by, for example, a 3270 terminal user or another background program. In the latter example, the pointer is assigned the address of the local dynamic storage area.
- the program 16 a was started on the local system 10 a , then the fields of the data structure (Pgm_Commarea data structure) are completed using information on the local system 10 a and presented to the user. If a commarea exists, the program 16 b running on the remote system 10 b can determine what information is being requested by the originating local program and complete the data structure to be returned to the originator.
- Pgm_Commarea data structure the fields of the data structure
- the program determines when a remote system 10 b needs to be accessed.
- the program 16 b can request access from a field on the user's screen.
- access can be requested from a list of remote systems.
- the code executing the distributed program link can include:
- EXEC CICS LINK PROGRAM(‘PROGRAMA’) SYSID(ssss) COMMAREA(PGM_WORKAREA) LENGTH(COMMAREA_LENGTH) SYNCONRETURN NOHANDLE; if EIBRESP > 0 then /* an error occurred on the link command */ do; /* perform error condition handling alone */ end;
- the SYSID parameter contains the CICS target destination and the commarea contains the program data. If the SYSID contains the local system definition, a local link is performed as if the SYSID was not defined. Values in the commarea would indicate the operations that need to be performed by the program on the remote system 10 b . On return from remote processing, the commarea will be updated with any changes from the program executing on the remote system. A 3270 screen would display the values on the remote system.
- the SyncOnReturn parameter notifies the remote system to take a syncpoint on completion of the executing program, to commit any protected resource changes.
- the NOHANDLE parameter notifies CICS to return control to the originating program even if an error occurs in the LINK command, with the appropriate error code in the EIBRESP field.
- the design of the system and method of the invention also includes the capability of the program executing on the remote system to forward the request to another CICS region for processing. This is a form of intermediary routing. The commarea returned to the originating program would actually be updated by the secondary remote system.
- FIG. 4 shows an exemplary screen image of an application using the system and method of the invention. This screen can be representative of information retrieved from a remote system, now displaying on a local, originating system.
- SYSID the field in the upper left corner
- SDI Simulation Database Interface
- the SYSID term is synonymous with the name of a computer system.
- SYSID a list of possible values is displayed in the lower portion of the screen. In this example, the user is connected to the BX25 system. If any of the other available SYSID values is typed into the SYSID field, any of the display options selected will cause the remote program call to retrieve the selected information, and the resulting displayed screen will display information acquired from the remote system. This will occur as if the user had logged off the connected system and logged into the remote system. Further, this operation can be repeated with all of the other systems in the list to quickly collect a view of the entire network in a very short period of time.
Landscapes
- Engineering & Computer Science (AREA)
- Software Systems (AREA)
- Theoretical Computer Science (AREA)
- Physics & Mathematics (AREA)
- General Engineering & Computer Science (AREA)
- General Physics & Mathematics (AREA)
- Computer Networks & Wireless Communication (AREA)
- Signal Processing (AREA)
- Information Retrieval, Db Structures And Fs Structures Therefor (AREA)
- Information Transfer Between Computers (AREA)
Abstract
A system and method implemented in a Customer Information Control System (CICS) Application configured to process information residing on remote systems and display such information on a local system, using a same program residing on both the remote system(s) and the local system. The method includes, for example, sending programming functions of a local system with a request for information to a remote system. The method further includes processing the programming functions of the local system with the request for information on the remote system to obtain updated information from the remote system. The updated information is sent to the local system for display.
Description
- The present invention relates generally to computer systems, and more particularly to a system and method for processing a remote request.
- CICS is a transaction processing system designed for both online and batch activity. On large IBM zSeries and System z9 servers, for example, CICS easily supports thousands of transactions per second, making it a mainstay of enterprise computing. For this reason, CICS is used in bank teller applications, airline reservation systems, ATM systems, etc.
- However, an application program designed to execute in the CICS Transaction Server environment can only access storage within its local CICS region. For example, with distributed processing, many remotely connected CICS regions can distribute databases and workload for load balancing to make the most efficient use of processing capacity. This causes customer information to be distributed, which requires complex coding techniques. This also can make application support and problem determination difficult and time consuming, which can have a negative affect on customer satisfaction and application availability.
- CICS applications can be written in numerous programming languages, including COBOL, PL/I, C, C++, IBM Basic Assembly Language, REXX, and Java. But, programming techniques to provide access to storage on a remote CICS region can be complicated and require multiple programs. The CICS Transaction Server for z/OS and V2R3 CICS Application Programming Reference (SC34-6232) describes the available commands to access resources controlled by CICS, and the CICS Transaction Server for z/OS CICS Intercommunication Guide (SC34-6243) describes methods of CICS-to-CICS communication.
- By way of example, the programming options available to the CICS applications include:
-
- 1. Intersystem Communication (ISC): ISC uses Advanced Program to Program Communication (APPC) which requires a client and server program relationship on both ends of the connection. APPC is a detailed protocol with distinct functions for each end of the conversation and requires careful coding of data syncpointing and error condition processing.
- 2. CICS Function Shipping: CICS Function Shipping provides access to resources and Virtual Storage Access Method (VSAM) files on a remote CICS region as if they were locally defined. The CICS Function Shipping does not provide a method to access storage (memory) or DB2 databases within the remote CICS region.
- 3. Asynchronous Processing: Asynchronous Processing allows a local CICS program to initiate a transaction on a remote CICS region and pass data to it, but no reply is possible.
- 4. Transaction Routing: Transaction Routing allows a local transaction to be shipped to a remote CICS region for processing, but there is no return to the originating CICS region.
- 5. TCP/IP sockets: TCP/IP sockets can be used in a client/server program relationship, with a complex send/receive protocol for each end of the communication channel and detailed error condition handling.
- 6. MQSeries: MQSeries can be used to send a request to a remote system via a message queue and receive a response message. MQSeries is designed to be asynchronous, so complex programming methods must be utilized to send a synchronous request and wait for a response.
- 7. Distributed Program Link (DPL): DPL allows a local CICS program to initiate a program on a remote CICS region. Data can be passed to the remote program and response data can be returned. The remote program has full access to all storage and databases on the remote CICS region and can pass information back to the originating program.
All of the above options require a detailed understanding of the selected programming interface, and in most cases require a separate type of programming on each end of the communication connection.
- The DPL option provides the simplest method for a program to communicate with another program on a remote system. In DPL, the remote program has access to every resource, database, and storage area on that CICS region, as well as connecting to another CICS region through the same interface. However, in order to pass information between the local and remote programs, a common data area (also referred to as “commarea”) is used. This is typically a data structure with defined fields which different programs at both ends utilize.
- In the DPL type implementation, the required components include a source program, a target program, and the data defining area (copybook or macro) used to pass information between the source program and the target program. The target program, for example, is unique because it responds to the source program, in order to obtain data from the remote system. However, in implementation, it is not possible to directly access the data on the remote system; it is only possible to access the files on the remote system. That is, it is not possible to access the storage area on the remote system, using the local source program. Access to the storage area on the remote system is only possible using the target program on the remote system. Additionally, the data defining area has to be created such that it includes all fields associated with the remote system and it must be synchronized between the source program and the target program. This being the case, when a field in the data defining area is changed, the target program must have a corresponding change and, if not, the data will be corrupted. Accordingly, in use, the implementation of the source program, target program, and data-defining area requires additional programming and careful attention to synchronization, amongst other things.
- Accordingly, there exists a need in the art to overcome the deficiencies and limitations described hereinabove.
- In a first aspect of the invention, a method comprises sending programming functions of a local system with a request for information to a remote system. The method further includes processing the programming functions of the local system with the request for information on the remote system to obtain updated information from the remote system. The updated information is sent to the local system for display.
- In another aspect of the invention, a system for obtaining information from a remote system comprises a computer infrastructure having one type of program for a local system and the remote system. The program is operable to send programming functions of the local system with a request for information to the remote system, process the programming functions of the local system and the request for information on the remote system and send the updated information to the local system for display, via a defined common area storage.
- In another aspect of the invention, a computer program product comprising a computer usable medium having readable program code embodied in the medium is provided. The computer program product includes at least one component to perform the steps of the invention.
-
FIG. 1 shows an illustrative environment for implementing the steps in accordance with the invention; -
FIG. 2 shows an architecture in accordance with an aspect of the invention; -
FIG. 3 is a flow chart of steps for implementing aspects of the invention; and -
FIG. 4 is an illustrative graphical representation (screen shot) implementing aspects of the invention. - The invention relates to a system and method implemented in a Customer Information Control System (CICS) Application configured to process information residing on remote systems and display such information on a local system, using a same program residing on and/or associated with both the remote system(s) and the local system. The invention can be implemented over any distributed network, for example, and any existing program can be modified to take advantage of the benefits and functionality of the system and method of the invention. In one preferred embodiment, the system and method is implemented on IBM mainframe systems under Z/OS, z/VSE, i5/OS or OS/2 operating systems, amongst other implementations.
- The system and method of the invention requires only one program to be developed which executes on both ends of the communication channel without any communications interface programming; compared to a client/server model using separate programs and complicated communication protocols. Additionally, in the system and method of the invention all of the defined dynamic storage is available to the program on both ends of the communications link, making the process of transferring programming functions from one system to another seem nearly transparent. In such implementations, the system and method of the invention takes virtually the entire working storage of the program (on the local system) and passes it to and returns it from the program on the remote system. Also, the program implemented in the system and method of the invention is configured in such a manner as to allow access to the storage area on the remote system using the program on the local system.
- In implementation, the system and method of the invention utilizes a Distributed Program Link in such a manner as to eliminate the need for a target program and data defining area. In this manner, the system and method of the invention greatly simplifies the required programming into a single program, which handles both client and server functions and eliminates communications protocol requirements. That is, for example, in implementation, the system and method of the invention defines a method for a program executing on a local (originating) CICS region to access information on a remote (target) CICS region.
-
FIG. 1 shows an illustrative environment for managing the processes in accordance with the invention. The illustrative environment may be a server or a user workstation, for example, and may represent both alocal system 10 a and aremote system 10 b implementing a CICS. In one preferred embodiment, the illustrative environment is implemented on IBM mainframe systems under z/OS, z/VSE, i5/OS or OS/2 operating systems (O/S), amongst other implementations. - The environment includes a
computer infrastructure 12 having a computing device 14 (e.g., including a source/target program). More specifically, thecomputing device 14 includes aprogram local system 10 a and theremote system 10 b. In this manner, it is possible to eliminate the use of different programs on thelocal system 10 a and theremote system 10 b. Although not shown, theremote system 10 b may additionally include the remaining or similar components that reside on and/or are associated with thelocal system 10 a, e.g., ROM, storage, external devices, etc, as described herein. Thelocal system 10 a can be linked to theremote system 10 b using, for example, any type of networks (e.g., the Internet, a wide area network, a local area network, a virtual private network, etc.); and/or any known transmission techniques/protocols (e.g., TCP/IP). - In embodiments, the
program -
- (i) organizing all of the program's working or dynamic storage into a defined data structure;
- (ii) recognizing, validating and processing the input for a remote system request; and
- (iii) performing a simple Distributed Program Link (DPL) call to the same program residing on the remote system (as is on the local system), and passing the working storage data structure in a CICS Link Commarea (common area between the remote and local systems).
Additionally, in further embodiments, theprogram memory 22A. As should be understood by those of skill in the art, the executable code can be configured to implement the above functions.
- In implementation, the
program 16 b on theremote system 10 b will use information in a commarea storage 17 (herein after referred to as a common area storage) as its working storage to collect and process the requested information and return it to the calling program on thelocal system 10 a. Also, if 3270 type screens are used, the screen data can be formatted in the working storage on theremote system 10 b. (The 3270 type screen is represented as I/O device 28.) As discussed in further detail below, on return from the remote program link, the data in thecommon area storage 17 would reflect the updated information from theremote system 10 b as if it had been processed locally in the workingstorage 22B on thelocal system 10 a. In this way, the screens would be ready for display to the user on the local system. The workingstorage area 22B on theremote system 10 b may be defined and used in exactly the same manner as thesame program 16 a on thelocal system 10 a. - Still referring to
FIG. 1 , thememory 22A can include local memory employed during actual execution of program code, bulk storage, and cache memories which provide temporary storage of at least some program to reduce the number of times code must be retrieved from bulk storage during execution. Thecomputer infrastructure 12 further includes aprocessor 20, an input/output (I/O)interface 24, abus 26, Storage “S”, ROM, RAM and an external I/O device/resource 28. - The external I/O device/
resource 28 may be a keyboard, display, pointing device, or any device that enables thecomputer infrastructure 12 to communicate with one or more other computing devices using any type of communications link 30. The communications link 30 can be, for example, wired and/or wireless links; one or more types of networks (e.g., the Internet, a wide area network, a local area network, a virtual private network, etc.); and/or any known transmission techniques and protocols such as, for example, TCP/IP. - The
processor 20 executes the computer program code and logic of the system and method of the invention, which is stored in thememory 22A. While executing the computer program code, etc., theprocessor 20 can read and/or write data to/from thememory 22A,storage system 22B, and/or I/O interface 24. Thebus 26 provides a communications link between each of the components in thecomputing device 14. - As an alternative, the invention is configured for any computer application running on any operating platform that comprises a program executing on a local system that uses some representation of working storage containing variable data. In this embodiment, the computer application is configured to to send such data to a remote system, whereby the same program or a different program could use the data for it's own working storage, and return the updated storage to the originating program. The originating program working storage would be altered to values updated by the remote program. This would include communication such as, for example, ( ISC), (TCPIP), and (MQSeries); although (DPL) would be the easiest to implement.
-
FIG. 2 shows an architecture in accordance with an aspect of the invention. More specifically, the architecture includes alocal system 10 a and aremote system 10 b. Both thelocal system 10 a and theremote system 10 b include, for example, the same program “A”, 16 a, 16 b, as well as astorage area 22B andCICS storage area 23. The architecture also includescommon area storage 17, which is a common storage for both thelocal system 10 a and theremote system 10 b. As described herein, theprogram 16 b on theremote system 10 b will use information in thecommon area storage 17 as its working storage to collect and process the requested information and return it to the calling program on thelocal system 10 a. On return from the remote program link, the data in thecommon area storage 17 reflects the updated information from theremote system 10 b as if it had been processed locally in the workingstorage 22B on thelocal system 10 a. - An EXECute CICS LINK is provided between the
local system 10 a and theremote system 10 b. The EXECute CICS LINK is a standard function of the CICS command level interface. In embodiments, six fields are used with the EXECute CICS LINK. In one non-limiting illustrative example, the six fields include: -
- (i) PROGRAM name: The PROGRAM name identifies the name of the program to execute on the remote system.
- (ii) Remote System SYSID: The Remote System SYSID is used by CICS to direct the request to a remotely attached CICS region, e.g., region B. This SYSID should be predefined and connected.
- (iii) COMMAREA: The COMMAREA defines the data that is passed to the program on the
remote system 10 b as a serialized structure, which can be identified by a high level name. - (iv) LENGTH: The LENGTH is used to define the data length of the
common area 17. - (v) SYNCONRETURN parameter: The SYNCONRETURN parameter notifies the
remote system 10 b to commit any changes to protected resources on completion on the program execution. - (vi) NOHANDLE parameter: The NOHANDLE parameter instructs CICS to give control back to the application program (on the local system) regardless of error conditions from the link command. This allows the program to be aware of and handle a failure of the link command.
- In embodiments, the
program 16 a (or 16 b) may display the current SYSID value, optionally display a list of possible remote systems, and recognize a request to change the SYSID value to a remote system (or back to the local system). Alternatively theprogram 16 a (or 16 b) can work from a hardcoded list of remote systems. Thus, in use, the only requirement for a user is to select the desired remote target system, which could be presented from a list or other similar method suitable for the application. - The
program 16 a (or 16 b) also uses a procedure to perform the remote distributed program link with the common area and checks for error conditions such as an invalid or unavailable remote system. Theprogram 16 a (or 16 b) is also configured to log the invalid or unavailable remote system condition or report back to the user such condition. - In embodiments, it is preferable that no variable length fields be defined because the data structure requires a fixed length for the CICS link
common area 17. Also, any fields which are not relevant to the distributed program link, such as local loop counters, pointers to local data areas, local time, or user 3270 terminal related information may be excluded from the data structure. - Additionally, following the CICS link all fields are updated as if they were updated locally. In this manner, the CICS link is virtually transparent to the program residing on the
local system 10 a (and hence the user). Also, all information is shared between the programs “A” 16 a and 16 b on both ends of the channel, so current screen status, scroll information, function keys pressed by the user, and any other fields required to be session persistent are maintained in the workingstorage 22B. In illustrative and non-limiting examples: -
- If repetitive functions are performed such as scrolling, the current and next positions are always known and updated; and/or
- If help screens or nested panels are displayed, the information required to back out of the screens is maintained for both the local program execution (e.g., on
local system 10 a) and remote program execution (e.g., onremote system 10 b), as if all program functions were performed locally.
- In implementation, writing a new program or converting an existing program includes defining all working or dynamic storage variables used by the
program 16 a (or 16 b) into a data structure with a high level name of the structure. For an existing program, all of the variables should be collected and defined in this structure. -
FIG. 3 represents a flow diagram implementing steps of the invention. The steps ofFIG. 3 may be implemented in the environment ofFIG. 1 or architecture ofFIG. 2 . The steps of the invention may equally represent a high-level block diagram of the invention. - The invention can take the form of an entirely hardware embodiment, an entirely software embodiment or an embodiment containing both hardware and software elements. The software elements may be firmware, resident software, microcode, etc. Furthermore, the invention can take the form of a computer program product accessible from a computer-usable or computer-readable medium providing program code for use by or in connection with a computer or any instruction execution system. For the purposes of this description, a computer-usable or computer readable medium can be any apparatus that can contain, store, communicate, propagate, or transport the program for use by or in connection with the instruction execution system, apparatus, or device. The medium can be an electronic, magnetic, optical, electromagnetic, infrared, or semiconductor system (or apparatus or device) or a propagation medium. Examples of a computer-readable medium include a semiconductor or solid state memory, magnetic tape, a removable computer diskette, a random access memory (RAM), a read-only memory (ROM), a rigid magnetic disk and an optical disk. Current examples of optical disks include compact disk—read only memory (CD-ROM), compact disk—read/write (CD-R/W) and DVD.
- In embodiments, the invention provides a business method that performs the steps of the invention on a subscription, advertising, and/or fee basis. That is, a service provider, such as a Solution Integrator, could offer to perform the processes described herein. In this case, the service provider can create, maintain, deploy, support, etc., a computer infrastructure that performs the process steps of the invention for one or more customers. In return, the service provider can receive payment from the customer(s) under a subscription and/or fee agreement and/or the service provider can receive payment from the sale of advertising content to one or more third parties.
- Referring to
FIG. 3 , atstep 300, the program starts on the local system. Atstep 305, the process declares a common data structure as an area referenced by a pointer, containing various fields required for the execution of the program. Atstep 310, in embodiments, the process defines a constant length field to reference the length of the common area. Atstep 315, a pointer can be used to reference the defined data structure, which can either be local storage on the local system or the common area provided in the CICS link on the remote system. Atstep 320, the process defines an area in local working or dynamic storage for the program when executing on the local system. In embodiments, atstep 325, all of the initial values of the program executing on the local system are stored in this area, as well as the ongoing values as the program progresses through its functions. - At
step 330, if there is a need to access a remote system, then the process provides an area having the initial values and any ongoing values to CICS in the remote program link, which is passed to the remote system as a common area. Atstep 335, using the information provided to CICS, in the remote program link, the program on the remote system performs its requested tasks and, atstep 340, returns its information to the local system via, for example, the common area. That is, the program on the remote system uses the information in the common area storage as its working storage to collect and process the requested information and return it to the calling program on the local system. - The program logic can be shown in the following non-limiting examples, written in PL/1 language but easily adapted to other languages. A common data structure is declared as an area, referenced by a pointer, containing various fields required for the execution of the program. These fields may be defined as follows:
-
declare Pgm_Commarea based(Workarea_Ptr), Current_Screen char(8), Help_Flag char(1), Routed_Flag char1), Message_Text char(80), Screen_cmd char(3), Current_Line fixed binary(31), Last_Line fixed binary(31), Return_Code fixed binary(31), Total_Records fixed binary(31); - A constant length field can be defined to reference the length of the Commarea (common area). By way of non-limiting example,
-
declare Commarea_Length fixed binary(15) initial(cstg(Pgm_Commarea)); /* set commarea length */ - A pointer can be used to reference the defined data structure, which can either be local storage on the local (originating)
system 10 a or the common area provided in the CICS link (EXECute CICS LINK) on theremote system 10 b. By way of a non-limiting illustrative example: -
declare Workarea_Ptr pointer; /* define a pointer to reference the working storage */ - An area may be defined in local working or dynamic storage for the
program 16 a when executing on thelocal system 10 a. In embodiments, all of the initial values are stored in this area, as well as the ongoing values as theprogram 16 a progresses through its functions. If there is a need to access aremote system 10 b, then this area is provided to CICS in the remote program link to be passed to theremote system 10 b as a common area, where it is updated and returned. By way of a non-limiting illustrative example: -
declare Pgm_Workarea char(cstg(Pgm_Commarea)); /* reserve a space for the structure in working storage */ - When the
program 16 a first executes, a simple check may be made to determine how theprogram 16 a was started. For example, if theprogram 16 a was started with a commarea (e.g., by a check of the commarea length provided by CICS) via the Distributed Program Link, then the pointer to the working area is assigned from the CICS-provided commarea address. If the commarea length is zero, theprogram 16 a is determined to be started locally by, for example, a 3270 terminal user or another background program. In the latter example, the pointer is assigned the address of the local dynamic storage area. By way of a non-limiting illustrative example: -
if EIBCALEN = Commarea_Length then /* a commarea exists, program was linked to */ Workarea_Ptr = DFHEICAP; /* reference working storage from CICS commarea address */ else /* normal start on local system by user */ Workarea_Ptr = addr(Pgm_Workarea); /* reference working storage in dynamic storage area */ - If the
program 16 a was started on thelocal system 10 a, then the fields of the data structure (Pgm_Commarea data structure) are completed using information on thelocal system 10 a and presented to the user. If a commarea exists, theprogram 16 b running on theremote system 10 b can determine what information is being requested by the originating local program and complete the data structure to be returned to the originator. - In embodiments, the program determines when a
remote system 10 b needs to be accessed. When the transaction is 3270 user driven, for example, theprogram 16 b can request access from a field on the user's screen. In a background transaction environment, in another embodiment, access can be requested from a list of remote systems. By way of a non-limiting illustrative example, the code executing the distributed program link can include: -
EXEC CICS LINK PROGRAM(‘PROGRAMA’) SYSID(ssss) COMMAREA(PGM_WORKAREA) LENGTH(COMMAREA_LENGTH) SYNCONRETURN NOHANDLE; if EIBRESP > 0 then /* an error occurred on the link command */ do; /* perform error condition handling..... */ end; - The SYSID parameter contains the CICS target destination and the commarea contains the program data. If the SYSID contains the local system definition, a local link is performed as if the SYSID was not defined. Values in the commarea would indicate the operations that need to be performed by the program on the
remote system 10 b. On return from remote processing, the commarea will be updated with any changes from the program executing on the remote system. A 3270 screen would display the values on the remote system. The SyncOnReturn parameter notifies the remote system to take a syncpoint on completion of the executing program, to commit any protected resource changes. The NOHANDLE parameter notifies CICS to return control to the originating program even if an error occurs in the LINK command, with the appropriate error code in the EIBRESP field. - In further implementations, the design of the system and method of the invention also includes the capability of the program executing on the remote system to forward the request to another CICS region for processing. This is a form of intermediary routing. The commarea returned to the originating program would actually be updated by the secondary remote system.
-
FIG. 4 shows an exemplary screen image of an application using the system and method of the invention. This screen can be representative of information retrieved from a remote system, now displaying on a local, originating system. - By way of example, the field in the upper left corner, SYSID, is used to select a remote system to display SDI (Simulation Database Interface) transaction information. The SYSID term is synonymous with the name of a computer system. As assistance to the user, a list of possible values is displayed in the lower portion of the screen. In this example, the user is connected to the BX25 system. If any of the other available SYSID values is typed into the SYSID field, any of the display options selected will cause the remote program call to retrieve the selected information, and the resulting displayed screen will display information acquired from the remote system. This will occur as if the user had logged off the connected system and logged into the remote system. Further, this operation can be repeated with all of the other systems in the list to quickly collect a view of the entire network in a very short period of time.
- While the invention has been described in terms of embodiments, those skilled in the art will recognize that the invention can be practiced with modifications and in the spirit and scope of the appended claims.
Claims (20)
1. A method, comprising:
sending programming functions of a local system with a request for information to a remote system;
processing the programming functions of the local system with the request for information on the remote system to obtain updated information from the remote system; and
sending the updated information to the local system for display.
2. The method of claim 1 , wherein the updated information is retrieved from a common area storage accessible to both the local system and the remote system.
3. The method of claim 2 , wherein the updated information is reflected as having been processed locally in working storage on the local system.
4. The method of claim 1 , further comprising transferring the programming functions from the local system to the remote system by providing defined dynamic storage to a same program of the local system and the remote system.
5. The method of claim 4 , wherein virtually an entire working storage of the program of the local system is passed to and returned from the program of the remote system by use of the defined dynamic storage.
6. The method of claim 1 , further comprising allowing access to a storage area on the remote system using a program of the local system.
7. The method of claim 6 , further comprising organizing the program's working or dynamic storage into a defined data structure; recognizing, validating and processing input for a remote system request; and performing a Distributed Program Link (DPL) call to a same program of the remote system, and passing a working storage data structure in a Customer Information Control System (CICS) Link Commarea which is a common area between the remote system and the local system.
8. The method of claim 1 , wherein the steps of claim 1 are provided by a service provider.
9. The method of claim 1 , wherein a service provider at least one of creates, maintains, deploys and supports a computer infrastructure that performs the steps of claim 1 .
10. The method of claim 1 , wherein the steps of claim 1 are provided on a subscription, advertising, and/or fee basis.
11. A system for obtaining information from a remote system, comprising a computer infrastructure having one type of program for a local system and the remote system, the program being operable to send programming functions of the local system with a request for information to the remote system, processing the programming functions of the local system and the request for information on the remote system and sending the updated information to the local system for display, via a defined common area storage.
12. The system of claim 11 , wherein the updated information is retrieved from a common area storage accessible to both the local system and the remote system.
13. The system of claim 11 , further comprising transferring the programming functions from the local system to the remote system by defined dynamic storage to the program of the local system and the remote system.
14. The system of claim 13 , wherein virtually an entire working storage of the program of the local system is passed to and returned from the program of the remote system by use of the defined dynamic storage.
15. The system of claim 11 , further comprising a storage area on the remote system which is accessible by the local system using the program of the local system.
16. The system of claim 1 1, wherein a service provider at least one of creates, maintains, deploys and supports the program.
17. The system of claim 11 , wherein the program is configured to recognize, validate and process input for a remote system request.
18. The system of claim 11 , wherein the computer infrastructure is configured to perform a Distributed Program Link (DPL) call to the program of the remote system and pass working storage data structure in a CICS Link Commarea.
19. The system of claim 11 , further comprising a display for displaying the updated information on the local system.
20. A computer program product comprising a computer usable medium having readable program code embodied in the medium, the computer program product includes at least one component to:
send programming functions of a local system with a request for information to a remote system;
process the programming functions of the local system with the request for information on the remote system to obtain updated information from the remote system; and
send the updated information to the local system for display.
Priority Applications (5)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
US11/733,364 US20080256552A1 (en) | 2007-04-10 | 2007-04-10 | System and method for a cics application using a same program on a local system and a remote system |
US12/784,928 US8478838B2 (en) | 2007-04-10 | 2010-05-21 | System and method for using a same program on a local system and a remote system |
US13/894,399 US9059993B2 (en) | 2007-04-10 | 2013-05-14 | System and method for using a same program on a local system and a remote system |
US14/638,048 US9313267B2 (en) | 2007-04-10 | 2015-03-04 | Using a same program on a local system and a remote system |
US15/072,415 US9560123B2 (en) | 2007-04-10 | 2016-03-17 | Using a same program on a local system and a remote system |
Applications Claiming Priority (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
US11/733,364 US20080256552A1 (en) | 2007-04-10 | 2007-04-10 | System and method for a cics application using a same program on a local system and a remote system |
Related Child Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
US12/784,928 Continuation US8478838B2 (en) | 2007-04-10 | 2010-05-21 | System and method for using a same program on a local system and a remote system |
Publications (1)
Publication Number | Publication Date |
---|---|
US20080256552A1 true US20080256552A1 (en) | 2008-10-16 |
Family
ID=39854957
Family Applications (5)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
US11/733,364 Abandoned US20080256552A1 (en) | 2007-04-10 | 2007-04-10 | System and method for a cics application using a same program on a local system and a remote system |
US12/784,928 Expired - Fee Related US8478838B2 (en) | 2007-04-10 | 2010-05-21 | System and method for using a same program on a local system and a remote system |
US13/894,399 Expired - Fee Related US9059993B2 (en) | 2007-04-10 | 2013-05-14 | System and method for using a same program on a local system and a remote system |
US14/638,048 Expired - Fee Related US9313267B2 (en) | 2007-04-10 | 2015-03-04 | Using a same program on a local system and a remote system |
US15/072,415 Active US9560123B2 (en) | 2007-04-10 | 2016-03-17 | Using a same program on a local system and a remote system |
Family Applications After (4)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
US12/784,928 Expired - Fee Related US8478838B2 (en) | 2007-04-10 | 2010-05-21 | System and method for using a same program on a local system and a remote system |
US13/894,399 Expired - Fee Related US9059993B2 (en) | 2007-04-10 | 2013-05-14 | System and method for using a same program on a local system and a remote system |
US14/638,048 Expired - Fee Related US9313267B2 (en) | 2007-04-10 | 2015-03-04 | Using a same program on a local system and a remote system |
US15/072,415 Active US9560123B2 (en) | 2007-04-10 | 2016-03-17 | Using a same program on a local system and a remote system |
Country Status (1)
Country | Link |
---|---|
US (5) | US20080256552A1 (en) |
Cited By (4)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US20100306835A1 (en) * | 2009-05-29 | 2010-12-02 | Computer Associates Think, Inc. | Communicating security credentials between cics regions |
US9059993B2 (en) | 2007-04-10 | 2015-06-16 | International Business Machines Corporation | System and method for using a same program on a local system and a remote system |
US9130881B2 (en) | 2012-01-23 | 2015-09-08 | International Business Machines Corporation | Direct return to source (DRS) routing of customer information control systems (CICS) transactions |
US10223158B2 (en) | 2016-12-14 | 2019-03-05 | International Business Machines Corporation | Application execution environment |
Families Citing this family (2)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US9348859B2 (en) | 2013-03-25 | 2016-05-24 | International Business Machines Corporation | Providing record-level sharing (RLS) to local data sets |
CN110262903B (en) * | 2019-05-17 | 2021-09-03 | 北京恒赢智航科技有限公司 | Middleware framework and method based on aviation reservation system |
Citations (6)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US143648A (en) * | 1873-10-14 | Improvement in pitman-rods | ||
US168102A (en) * | 1875-09-28 | Improvement in steam-engines | ||
US230105A (en) * | 1880-07-20 | Folding or cabinet bedstead | ||
US6389431B1 (en) * | 1999-08-25 | 2002-05-14 | Hewlett-Packard Company | Message-efficient client transparency system and method therefor |
US6473807B1 (en) * | 1998-12-03 | 2002-10-29 | Merrill Lynch & Co., Inc. | System for invocation of CICS programs as database stored procedures |
US6999912B2 (en) * | 2001-03-13 | 2006-02-14 | Microsoft Corporation | Provisioning computing services via an on-line networked computing environment |
Family Cites Families (18)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US6006277A (en) * | 1987-11-06 | 1999-12-21 | Bea Systems, Inc. | Virtual software machine for enabling CICS application software to run on UNIX based computer systems |
CA1337132C (en) * | 1988-07-15 | 1995-09-26 | Robert Filepp | Reception system for an interactive computer network and method of operation |
US5896506A (en) * | 1996-05-31 | 1999-04-20 | International Business Machines Corporation | Distributed storage management system having a cache server and method therefor |
US6182151B1 (en) * | 1996-07-29 | 2001-01-30 | International Business Machines Corporation | Method and apparatus for batch storage of objects in a client-server storage management system |
US6654032B1 (en) * | 1999-12-23 | 2003-11-25 | Webex Communications, Inc. | Instant sharing of documents on a remote server |
US7559066B2 (en) * | 2000-08-08 | 2009-07-07 | International Business Machines Corporation | CICS BMS (basic message service) meta model |
US7103619B1 (en) * | 2002-09-26 | 2006-09-05 | Unisys Corporation | System and method for automatic audit data archiving within a remote database backup system |
US7627650B2 (en) | 2003-01-20 | 2009-12-01 | Equallogic, Inc. | Short-cut response for distributed services |
JP4286789B2 (en) * | 2003-02-03 | 2009-07-01 | 株式会社シンクプラス | Synchronous program |
US7620958B2 (en) * | 2003-06-30 | 2009-11-17 | Microsoft Corporation | Transaction interoperability using host-initiated processing |
WO2005017715A2 (en) * | 2003-08-15 | 2005-02-24 | International Business Machines Corporation | Method and system for monitoring performance of processes across multiple environments and servers |
US7818745B2 (en) * | 2003-09-29 | 2010-10-19 | International Business Machines Corporation | Dynamic transaction control within a host transaction processing system |
US8055616B2 (en) * | 2004-06-25 | 2011-11-08 | International Business Machines Corporation | Application sharing smoothness |
US20060168102A1 (en) | 2005-01-11 | 2006-07-27 | David Faller | Cooperation between web applications |
US20060230105A1 (en) | 2005-04-06 | 2006-10-12 | Ericom Software B 2001 Ltd | Method of providing a remote desktop session with the same look and feel as a local desktop |
US20070162860A1 (en) * | 2006-01-11 | 2007-07-12 | General Electric Company | Remote console for observing multiple workstations |
US20080256552A1 (en) | 2007-04-10 | 2008-10-16 | International Business Machines Corporation | System and method for a cics application using a same program on a local system and a remote system |
US9043706B2 (en) * | 2010-08-31 | 2015-05-26 | Anders Nancke-Krogh | System and method for using state replication between application instances to provide a collaborative desktop environment |
-
2007
- 2007-04-10 US US11/733,364 patent/US20080256552A1/en not_active Abandoned
-
2010
- 2010-05-21 US US12/784,928 patent/US8478838B2/en not_active Expired - Fee Related
-
2013
- 2013-05-14 US US13/894,399 patent/US9059993B2/en not_active Expired - Fee Related
-
2015
- 2015-03-04 US US14/638,048 patent/US9313267B2/en not_active Expired - Fee Related
-
2016
- 2016-03-17 US US15/072,415 patent/US9560123B2/en active Active
Patent Citations (6)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US143648A (en) * | 1873-10-14 | Improvement in pitman-rods | ||
US168102A (en) * | 1875-09-28 | Improvement in steam-engines | ||
US230105A (en) * | 1880-07-20 | Folding or cabinet bedstead | ||
US6473807B1 (en) * | 1998-12-03 | 2002-10-29 | Merrill Lynch & Co., Inc. | System for invocation of CICS programs as database stored procedures |
US6389431B1 (en) * | 1999-08-25 | 2002-05-14 | Hewlett-Packard Company | Message-efficient client transparency system and method therefor |
US6999912B2 (en) * | 2001-03-13 | 2006-02-14 | Microsoft Corporation | Provisioning computing services via an on-line networked computing environment |
Cited By (7)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US9059993B2 (en) | 2007-04-10 | 2015-06-16 | International Business Machines Corporation | System and method for using a same program on a local system and a remote system |
US9313267B2 (en) | 2007-04-10 | 2016-04-12 | International Business Machines Corporation | Using a same program on a local system and a remote system |
US9560123B2 (en) | 2007-04-10 | 2017-01-31 | International Business Machines Corporation | Using a same program on a local system and a remote system |
US20100306835A1 (en) * | 2009-05-29 | 2010-12-02 | Computer Associates Think, Inc. | Communicating security credentials between cics regions |
US8438634B2 (en) * | 2009-05-29 | 2013-05-07 | Ca, Inc. | Communicating security credentials between CICS regions |
US9130881B2 (en) | 2012-01-23 | 2015-09-08 | International Business Machines Corporation | Direct return to source (DRS) routing of customer information control systems (CICS) transactions |
US10223158B2 (en) | 2016-12-14 | 2019-03-05 | International Business Machines Corporation | Application execution environment |
Also Published As
Publication number | Publication date |
---|---|
US9059993B2 (en) | 2015-06-16 |
US8478838B2 (en) | 2013-07-02 |
US9313267B2 (en) | 2016-04-12 |
US20130254257A1 (en) | 2013-09-26 |
US20150180960A1 (en) | 2015-06-25 |
US20100299384A1 (en) | 2010-11-25 |
US20160197984A1 (en) | 2016-07-07 |
US9560123B2 (en) | 2017-01-31 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
US9560123B2 (en) | Using a same program on a local system and a remote system | |
US10970277B2 (en) | System and method for dynamic conversion of database accessing scripts during runtime in a mainframe rehosting platform | |
JP6327725B2 (en) | System, method, and graphical user interface for workflow generation, deployment, and / or execution | |
JP6327723B2 (en) | System, method, and graphical user interface for workflow generation, deployment, and / or execution | |
US7421440B2 (en) | Method and system for importing data | |
US7523196B2 (en) | Session monitoring using shared memory | |
US7502824B2 (en) | Database shutdown with session migration | |
US7082551B2 (en) | Method and data processing system providing checkpoint/restart across multiple heterogeneous computer systems | |
US20030140041A1 (en) | Method and data processing system providing bulk record memory transfers across multiple heterogeneous computer systems | |
US10379914B2 (en) | System and method for achieving specific behaviors by intercepting file access calls in a mainframe rehosting platform | |
US9158555B2 (en) | Efficient serialization of mutable objects | |
US7562138B2 (en) | Shared memory based monitoring for application servers | |
KR20160119070A (en) | Dynamically determing a mode of a data processing application | |
US11966723B2 (en) | Automatic management of applications in a containerized environment | |
US8407713B2 (en) | Infrastructure of data summarization including light programs and helper steps | |
US10558488B2 (en) | Sharing transaction contexts in an optimized colocation of java and non-java language applications | |
US20130125139A1 (en) | Logging In A Computer System | |
CN111581227A (en) | Event pushing method and device, computer equipment and storage medium | |
US9059992B2 (en) | Distributed mobile enterprise application platform | |
US9117189B2 (en) | System and method for object lock management using cached lock objects | |
US20220129332A1 (en) | Handling of Metadata for Microservices Processing | |
CN114546644A (en) | Cluster resource scheduling method, device, software program, electronic device and storage medium | |
US12003590B2 (en) | Performance-enhancing cross-system request handling via shared memory cache | |
US11216530B2 (en) | Smart scheduling of documents | |
Froidevaux et al. | The mainframe as a high-available, highly scalable CORBA platform |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
AS | Assignment |
Owner name: INTERNATIONAL BUSINESS MACHINES CORPORATION, NEW Y Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:PURPURA, ROBERT J.;REEL/FRAME:019142/0117 Effective date: 20070406 |
|
STCB | Information on status: application discontinuation |
Free format text: ABANDONED -- FAILURE TO RESPOND TO AN OFFICE ACTION |
|
AS | Assignment |
Owner name: KYNDRYL, INC., NEW YORK Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:INTERNATIONAL BUSINESS MACHINES CORPORATION;REEL/FRAME:058213/0912 Effective date: 20211118 |