SlideShare a Scribd company logo
1 of 14
CICS WEB INTERFACE 
(OVERVIEW) 
CREATED BY : BAL MUKUND BIHARI EMAIL: MUKUND4LIFE@GMAIL.COM 1
DO YOU KNOW? 
We can code HTML tag in cics 
We can code java program into the cics 
We can code scripting language into cics. 
Some other facility also are provided 
CREATED BY : BAL MUKUND BIHARI EMAIL: MUKUND4LIFE@GMAIL.COM 2
CICS WEB APPLICATION 
CREATED BY : BAL MUKUND BIHARI EMAIL: MUKUND4LIFE@GMAIL.COM 
Description: 
CICS web interface are use in business logic interface to link to other 
services , and Eventually ,to the target CICS application program. 
Benefits: 
Provide Web access to existing CICS programs without requiring a Web 
Server, without reprogramming a existing business logic, 
Support access by methods other than the Web using the business logic 
interface 
The 3270 Bridge provide 
- a turnkey solution, 
- Support BMS MAP customization for the Web. 
3
CICS WEB APPLICATION OVERVIEW 
CICS 
CREATED BY : BAL MUKUND BIHARI EMAIL: MUKUND4LIFE@GMAIL.COM 
TCP/IP 
SUPPORT 
CICS 
Web 
Support 
Business 
Logic 
Interface 
CICS 
Application 
Program 
COMMAREA 
HTTP 
WEB 
Browser 
4
CREATED BY : BAL MUKUND BIHARI EMAIL: 
MUKUND4LIFE@GMAIL.COM 
CWI High Level Flow 
TCP/IP 
SUPPORT 
Sockets 
Listener 
Task 
Web Attach 
Task 
Code Conversion 
Analyzer 
Code Conversion 
Alias 
Transaction 
Business 
Logic 
Interface 
Converter 
CICS Application 
Code Conversion 
5 
CICS System
MAIN COMPONENTS OF CWI 
TCP/IP Support: all the request communicated through TCP/IP port assigned 
to the CICS region. 
 Web attached task: its links to a series of programs 
 converter : convert the HTTP request header from code page to EBCDIC. 
 Analyzer: analyze the content for further decisions 
 Web Attach Task: it start remaining task into cics like normal cics 
processing 
 Alias transaction:: it link to business logic interface under option HTTP 
request get decoded into COMMAREA and also it link to the target 
application program 
 BLI return to alias which link to the code conversion program one last 
time to convert the output from EBCDIC to code page of client. 
 The CWI return this HTML response to the originating Wb browser. 
CREATED BY : BAL MUKUND BIHARI EMAIL: MUKUND4LIFE@GMAIL.COM 6
INITIATING A CICS TRANSACTION 
URL: 
http:serverIP:port/cics/cwba/cicspgm?data=110 
http: protocol being used for the above request 
ServerIP: The IP address of the server this is nothing but IP address of cics 
port: port number assigned to CWI 
Cics: the converter that used , CICS is a default analyzer not to ask for converter. 
Cwba: transaction name 
Cicspgm: cics application program to be executed 
Data=110 : user data to be passed the application. 
CREATED BY : BAL MUKUND BIHARI EMAIL: MUKUND4LIFE@GMAIL.COM 7
PROCESSING HTTP REQUESTS 
Retrieve the method version, URL path etc from an inbound request 
EXEC CICS 
EXTRACT HTTPMETHOD (data-area1) HTTPVERSION (data-area2) PATH 
(data-area3) 
Browse through all the version various HTTP headers in an inbound request 
STARTBROWSE HTTPHEADER READNEXT HTTPHEADER (data-area) 
VALUE (data-area2) 
END BROWSE HTTPHEADER 
Receive HTTP request body or entire non-HTTP request 
RECEIVE INTO (data-area) 
CREATED BY : BAL MUKUND BIHARI EMAIL: MUKUND4LIFE@GMAIL.COM 8
WRITING A COVERTOR PROGRAM 
 Converter name specified by analyzer 
 Linked by Business logic interface (BLI) 
 Executes under Alias transaction ID 
 Runs in the same region where request received 
 Each request uses same program for both encode and decode. 
 Decode function builds COMMAREA for target program 
 Encode function builds HTTP response 
 Purpose: remove HTTP and HTML considerations from target 
program 
 Architected COMMREA 
 COPY books for parameters and constants 
CREATED BY : BAL MUKUND BIHARI EMAIL: MUKUND4LIFE@GMAIL.COM 9
DOCUMENT TEMPLATE 
Build HTML templates offline 
Use Template manager or 
EXEC CICS DOCMENTS CREATE a new documents 
SET value for symbols 
INSERT object into documents 
Text strings Symbols 
values bookmarks 
CREATED BY : BAL MUKUND BIHARI EMAIL: MUKUND4LIFE@GMAIL.COM 
NAME=xxxxxx&PHON=999999 
Heading 
Bookmarks 
More text 
Bookmarks 
Template 
... 
Data 
10
CREATING THE TEMPLATE 
It can be stored into portioned data set member or in TDQ (Transient 
data queue) or TS ( temporary storage) or VSAM file etc. 
Template content : 
 HTML TAGS and attributes 
 Variables : Begin with & and End with ; 
 Template Is case sensitive 
<html> 
<p> customer &NAME; 
<p>phone &PHON; 
</html> 
CREATED BY : BAL MUKUND BIHARI EMAIL: MUKUND4LIFE@GMAIL.COM 
11
USING THE DOCUMENTS API 
EXEC CICS DOCUMENTS CREATE DOCTOKEN (token) 
TEMPLATE(‘inquiry-heading) 
DOCUMENT SET DOCTOKEN (token) 
SYMBOL(‘NAME’) VALUE( cust-name) 
DOCUMENT SET DOCTOKEN (token) 
SYMBOL(‘name’) VALUE( cust-name) 
EXEC CICS DOCUMENT INSERT DOCTOKEN(TOKEN) 
TEMPALTE(‘inquiry-footing’) 
EXEC CICS WEB SEND DOCTOKEN (token) 
<html><head> 
<title> Customer inquiry 
</title></head> 
<body> 
<p>Customer &NAME; 
<p>Phone: &PHON; 
</body</html> 
CREATED BY : BAL MUKUND BIHARI EMAIL: MUKUND4LIFE@GMAIL.COM 
12
EXEC CICS DOCUMENT : It assembling HTML documents 
EXEC CICS Web : it access the HTTP web command request and used to send 
the response. 
Create : it start a new document using a header template and return the 
document token that is used to for subsequent call. 
SET : it manipulates symbols and there associated value. 
INSERT: Place an object into the document like footing or heading 
WEB SEND : It schedule the document for out put 
CREATED BY : BAL MUKUND BIHARI EMAIL: MUKUND4LIFE@GMAIL.COM 13
CREATED BY : BAL MUKUND BIHARI EMAIL: MUKUND4LIFE@GMAIL.COM 14

More Related Content

What's hot

Build Message-Based Web Services for SOA
Build Message-Based Web Services for SOABuild Message-Based Web Services for SOA
Build Message-Based Web Services for SOAJeffrey Hasan
 
Server side programming
Server side programmingServer side programming
Server side programmingSayed Ahmed
 
Cache control directive
Cache control directiveCache control directive
Cache control directiveMohamed Mamoon
 
Comsharepoint2013pdf
Comsharepoint2013pdfComsharepoint2013pdf
Comsharepoint2013pdfKamal Pandey
 
Create folder in microsoft office 365 share point using mule esb
Create folder in microsoft office 365 share point using mule esbCreate folder in microsoft office 365 share point using mule esb
Create folder in microsoft office 365 share point using mule esbSanjeet Pandey
 
Building ColdFusion And AngularJS Applications
Building ColdFusion And AngularJS ApplicationsBuilding ColdFusion And AngularJS Applications
Building ColdFusion And AngularJS ApplicationsColdFusionConference
 
SharePoint 2010 REST with JavaScript and jQuery
SharePoint 2010 REST with JavaScript and jQuerySharePoint 2010 REST with JavaScript and jQuery
SharePoint 2010 REST with JavaScript and jQueryCraig Pilkenton
 

What's hot (10)

Web Services With Delphi, Sep, 2008
Web Services With Delphi, Sep, 2008Web Services With Delphi, Sep, 2008
Web Services With Delphi, Sep, 2008
 
Build Message-Based Web Services for SOA
Build Message-Based Web Services for SOABuild Message-Based Web Services for SOA
Build Message-Based Web Services for SOA
 
Server side programming
Server side programmingServer side programming
Server side programming
 
Cache control directive
Cache control directiveCache control directive
Cache control directive
 
Comsharepoint2013pdf
Comsharepoint2013pdfComsharepoint2013pdf
Comsharepoint2013pdf
 
Step1customer sendsorder
Step1customer sendsorderStep1customer sendsorder
Step1customer sendsorder
 
How we rest
How we restHow we rest
How we rest
 
Create folder in microsoft office 365 share point using mule esb
Create folder in microsoft office 365 share point using mule esbCreate folder in microsoft office 365 share point using mule esb
Create folder in microsoft office 365 share point using mule esb
 
Building ColdFusion And AngularJS Applications
Building ColdFusion And AngularJS ApplicationsBuilding ColdFusion And AngularJS Applications
Building ColdFusion And AngularJS Applications
 
SharePoint 2010 REST with JavaScript and jQuery
SharePoint 2010 REST with JavaScript and jQuerySharePoint 2010 REST with JavaScript and jQuery
SharePoint 2010 REST with JavaScript and jQuery
 

Viewers also liked

zIIP Capacity Planning
zIIP Capacity PlanningzIIP Capacity Planning
zIIP Capacity PlanningMartin Packer
 
CICS TS V5 Technical Overview
CICS TS V5 Technical OverviewCICS TS V5 Technical Overview
CICS TS V5 Technical OverviewSAFowlkes
 
SHARE 2014, Pittsburgh CICS scalability
SHARE 2014, Pittsburgh CICS scalabilitySHARE 2014, Pittsburgh CICS scalability
SHARE 2014, Pittsburgh CICS scalabilitynick_garrod
 
InterConnect 2015 session 2825 cics_and_the_new soa
InterConnect 2015 session 2825  cics_and_the_new soaInterConnect 2015 session 2825  cics_and_the_new soa
InterConnect 2015 session 2825 cics_and_the_new soanick_garrod
 
Designing Teams for Emerging Challenges
Designing Teams for Emerging ChallengesDesigning Teams for Emerging Challenges
Designing Teams for Emerging ChallengesAaron Irizarry
 
Visual Design with Data
Visual Design with DataVisual Design with Data
Visual Design with DataSeth Familian
 
3 Things Every Sales Team Needs to Be Thinking About in 2017
3 Things Every Sales Team Needs to Be Thinking About in 20173 Things Every Sales Team Needs to Be Thinking About in 2017
3 Things Every Sales Team Needs to Be Thinking About in 2017Drift
 
How to Become a Thought Leader in Your Niche
How to Become a Thought Leader in Your NicheHow to Become a Thought Leader in Your Niche
How to Become a Thought Leader in Your NicheLeslie Samuel
 

Viewers also liked (8)

zIIP Capacity Planning
zIIP Capacity PlanningzIIP Capacity Planning
zIIP Capacity Planning
 
CICS TS V5 Technical Overview
CICS TS V5 Technical OverviewCICS TS V5 Technical Overview
CICS TS V5 Technical Overview
 
SHARE 2014, Pittsburgh CICS scalability
SHARE 2014, Pittsburgh CICS scalabilitySHARE 2014, Pittsburgh CICS scalability
SHARE 2014, Pittsburgh CICS scalability
 
InterConnect 2015 session 2825 cics_and_the_new soa
InterConnect 2015 session 2825  cics_and_the_new soaInterConnect 2015 session 2825  cics_and_the_new soa
InterConnect 2015 session 2825 cics_and_the_new soa
 
Designing Teams for Emerging Challenges
Designing Teams for Emerging ChallengesDesigning Teams for Emerging Challenges
Designing Teams for Emerging Challenges
 
Visual Design with Data
Visual Design with DataVisual Design with Data
Visual Design with Data
 
3 Things Every Sales Team Needs to Be Thinking About in 2017
3 Things Every Sales Team Needs to Be Thinking About in 20173 Things Every Sales Team Needs to Be Thinking About in 2017
3 Things Every Sales Team Needs to Be Thinking About in 2017
 
How to Become a Thought Leader in Your Niche
How to Become a Thought Leader in Your NicheHow to Become a Thought Leader in Your Niche
How to Become a Thought Leader in Your Niche
 

Similar to Cics web interface new

Computer networking mcis 6163 project
Computer networking mcis 6163 projectComputer networking mcis 6163 project
Computer networking mcis 6163 projectAnakinzs
 
Html intake 38 lect1
Html intake 38 lect1Html intake 38 lect1
Html intake 38 lect1ghkadous
 
Building Enterprise Interoperability Applications Using Microsoft
Building Enterprise Interoperability Applications Using MicrosoftBuilding Enterprise Interoperability Applications Using Microsoft
Building Enterprise Interoperability Applications Using Microsoftwebhostingguy
 
58615764 net-and-j2 ee-web-services
58615764 net-and-j2 ee-web-services58615764 net-and-j2 ee-web-services
58615764 net-and-j2 ee-web-serviceshomeworkping3
 
Pinterest like site using REST and Bottle
Pinterest like site using REST and Bottle Pinterest like site using REST and Bottle
Pinterest like site using REST and Bottle Gaurav Bhardwaj
 
How to use Informatica Power Center as a RESTful Web Service Client?
How to use Informatica Power Center as a RESTful Web Service Client?How to use Informatica Power Center as a RESTful Web Service Client?
How to use Informatica Power Center as a RESTful Web Service Client?AmeliaWong21
 
How to use Informatica Power Center as a RESTful Web Service Client?
How to use Informatica Power Center as a RESTful Web Service Client?How to use Informatica Power Center as a RESTful Web Service Client?
How to use Informatica Power Center as a RESTful Web Service Client?AmeliaWong21
 
Introduction To Code Igniter
Introduction To Code IgniterIntroduction To Code Igniter
Introduction To Code IgniterAmzad Hossain
 
z/Ware 2.0 Technical Overview
z/Ware 2.0 Technical Overviewz/Ware 2.0 Technical Overview
z/Ware 2.0 Technical Overviewillustrosystems
 
Ibm tivoli access manager for e business tracing http connections redp4622
Ibm tivoli access manager for e business tracing http connections redp4622Ibm tivoli access manager for e business tracing http connections redp4622
Ibm tivoli access manager for e business tracing http connections redp4622Banking at Ho Chi Minh city
 

Similar to Cics web interface new (20)

Fm 2
Fm 2Fm 2
Fm 2
 
Cgi
CgiCgi
Cgi
 
Computer networking mcis 6163 project
Computer networking mcis 6163 projectComputer networking mcis 6163 project
Computer networking mcis 6163 project
 
Unit 02: Web Technologies (2/2)
Unit 02: Web Technologies (2/2)Unit 02: Web Technologies (2/2)
Unit 02: Web Technologies (2/2)
 
Html intake 38 lect1
Html intake 38 lect1Html intake 38 lect1
Html intake 38 lect1
 
Building Enterprise Interoperability Applications Using Microsoft
Building Enterprise Interoperability Applications Using MicrosoftBuilding Enterprise Interoperability Applications Using Microsoft
Building Enterprise Interoperability Applications Using Microsoft
 
58615764 net-and-j2 ee-web-services
58615764 net-and-j2 ee-web-services58615764 net-and-j2 ee-web-services
58615764 net-and-j2 ee-web-services
 
Pinterest like site using REST and Bottle
Pinterest like site using REST and Bottle Pinterest like site using REST and Bottle
Pinterest like site using REST and Bottle
 
flask.pptx
flask.pptxflask.pptx
flask.pptx
 
How to use Informatica Power Center as a RESTful Web Service Client?
How to use Informatica Power Center as a RESTful Web Service Client?How to use Informatica Power Center as a RESTful Web Service Client?
How to use Informatica Power Center as a RESTful Web Service Client?
 
How to use Informatica Power Center as a RESTful Web Service Client?
How to use Informatica Power Center as a RESTful Web Service Client?How to use Informatica Power Center as a RESTful Web Service Client?
How to use Informatica Power Center as a RESTful Web Service Client?
 
Python cgi programming
Python cgi programmingPython cgi programming
Python cgi programming
 
Lecture1
Lecture1Lecture1
Lecture1
 
Networking in Java
Networking in JavaNetworking in Java
Networking in Java
 
Introduction To Code Igniter
Introduction To Code IgniterIntroduction To Code Igniter
Introduction To Code Igniter
 
z/Ware 2.0 Technical Overview
z/Ware 2.0 Technical Overviewz/Ware 2.0 Technical Overview
z/Ware 2.0 Technical Overview
 
PPT
PPTPPT
PPT
 
World Wide Web(WWW)
World Wide Web(WWW)World Wide Web(WWW)
World Wide Web(WWW)
 
Ibm tivoli access manager for e business tracing http connections redp4622
Ibm tivoli access manager for e business tracing http connections redp4622Ibm tivoli access manager for e business tracing http connections redp4622
Ibm tivoli access manager for e business tracing http connections redp4622
 
php
phpphp
php
 

Recently uploaded

AMBER GRAIN EMBROIDERY | Growing folklore elements | Root-based materials, w...
AMBER GRAIN EMBROIDERY | Growing folklore elements |  Root-based materials, w...AMBER GRAIN EMBROIDERY | Growing folklore elements |  Root-based materials, w...
AMBER GRAIN EMBROIDERY | Growing folklore elements | Root-based materials, w...BarusRa
 
Best VIP Call Girls Noida Sector 47 Call Me: 8448380779
Best VIP Call Girls Noida Sector 47 Call Me: 8448380779Best VIP Call Girls Noida Sector 47 Call Me: 8448380779
Best VIP Call Girls Noida Sector 47 Call Me: 8448380779Delhi Call girls
 
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...babafaisel
 
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai DouxDubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Douxkojalkojal131
 
Fashion trends before and after covid.pptx
Fashion trends before and after covid.pptxFashion trends before and after covid.pptx
Fashion trends before and after covid.pptxVanshNarang19
 
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779Delhi Call girls
 
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service 🧵
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service  🧵CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service  🧵
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service 🧵anilsa9823
 
VIP Kolkata Call Girl Gariahat 👉 8250192130 Available With Room
VIP Kolkata Call Girl Gariahat 👉 8250192130  Available With RoomVIP Kolkata Call Girl Gariahat 👉 8250192130  Available With Room
VIP Kolkata Call Girl Gariahat 👉 8250192130 Available With Roomdivyansh0kumar0
 
Peaches App development presentation deck
Peaches App development presentation deckPeaches App development presentation deck
Peaches App development presentation decktbatkhuu1
 
DragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptxDragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptxmirandajeremy200221
 
Stark Industries Marketing Plan (1).pptx
Stark Industries Marketing Plan (1).pptxStark Industries Marketing Plan (1).pptx
Stark Industries Marketing Plan (1).pptxjeswinjees
 
Captivating Charm: Exploring Marseille's Hillside Villas with Our 3D Architec...
Captivating Charm: Exploring Marseille's Hillside Villas with Our 3D Architec...Captivating Charm: Exploring Marseille's Hillside Villas with Our 3D Architec...
Captivating Charm: Exploring Marseille's Hillside Villas with Our 3D Architec...Yantram Animation Studio Corporation
 
SCRIP Lua HTTP PROGRACMACION PLC WECON CA
SCRIP Lua HTTP PROGRACMACION PLC  WECON CASCRIP Lua HTTP PROGRACMACION PLC  WECON CA
SCRIP Lua HTTP PROGRACMACION PLC WECON CANestorGamez6
 
(AISHA) Ambegaon Khurd Call Girls Just Call 7001035870 [ Cash on Delivery ] P...
(AISHA) Ambegaon Khurd Call Girls Just Call 7001035870 [ Cash on Delivery ] P...(AISHA) Ambegaon Khurd Call Girls Just Call 7001035870 [ Cash on Delivery ] P...
(AISHA) Ambegaon Khurd Call Girls Just Call 7001035870 [ Cash on Delivery ] P...ranjana rawat
 
VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...
VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...
VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...Suhani Kapoor
 
Top Rated Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Call Girls in Nagpur High Profile
 
Punjabi Housewife Call Girls Service Gomti Nagar \ 9548273370 Indian Call Gir...
Punjabi Housewife Call Girls Service Gomti Nagar \ 9548273370 Indian Call Gir...Punjabi Housewife Call Girls Service Gomti Nagar \ 9548273370 Indian Call Gir...
Punjabi Housewife Call Girls Service Gomti Nagar \ 9548273370 Indian Call Gir...nagunakhan
 
The history of music videos a level presentation
The history of music videos a level presentationThe history of music videos a level presentation
The history of music videos a level presentationamedia6
 
VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...
VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...
VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...Suhani Kapoor
 

Recently uploaded (20)

AMBER GRAIN EMBROIDERY | Growing folklore elements | Root-based materials, w...
AMBER GRAIN EMBROIDERY | Growing folklore elements |  Root-based materials, w...AMBER GRAIN EMBROIDERY | Growing folklore elements |  Root-based materials, w...
AMBER GRAIN EMBROIDERY | Growing folklore elements | Root-based materials, w...
 
Best VIP Call Girls Noida Sector 47 Call Me: 8448380779
Best VIP Call Girls Noida Sector 47 Call Me: 8448380779Best VIP Call Girls Noida Sector 47 Call Me: 8448380779
Best VIP Call Girls Noida Sector 47 Call Me: 8448380779
 
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
 
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai DouxDubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
 
Fashion trends before and after covid.pptx
Fashion trends before and after covid.pptxFashion trends before and after covid.pptx
Fashion trends before and after covid.pptx
 
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
 
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service 🧵
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service  🧵CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service  🧵
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service 🧵
 
VIP Kolkata Call Girl Gariahat 👉 8250192130 Available With Room
VIP Kolkata Call Girl Gariahat 👉 8250192130  Available With RoomVIP Kolkata Call Girl Gariahat 👉 8250192130  Available With Room
VIP Kolkata Call Girl Gariahat 👉 8250192130 Available With Room
 
Peaches App development presentation deck
Peaches App development presentation deckPeaches App development presentation deck
Peaches App development presentation deck
 
DragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptxDragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptx
 
Stark Industries Marketing Plan (1).pptx
Stark Industries Marketing Plan (1).pptxStark Industries Marketing Plan (1).pptx
Stark Industries Marketing Plan (1).pptx
 
Captivating Charm: Exploring Marseille's Hillside Villas with Our 3D Architec...
Captivating Charm: Exploring Marseille's Hillside Villas with Our 3D Architec...Captivating Charm: Exploring Marseille's Hillside Villas with Our 3D Architec...
Captivating Charm: Exploring Marseille's Hillside Villas with Our 3D Architec...
 
SCRIP Lua HTTP PROGRACMACION PLC WECON CA
SCRIP Lua HTTP PROGRACMACION PLC  WECON CASCRIP Lua HTTP PROGRACMACION PLC  WECON CA
SCRIP Lua HTTP PROGRACMACION PLC WECON CA
 
(AISHA) Ambegaon Khurd Call Girls Just Call 7001035870 [ Cash on Delivery ] P...
(AISHA) Ambegaon Khurd Call Girls Just Call 7001035870 [ Cash on Delivery ] P...(AISHA) Ambegaon Khurd Call Girls Just Call 7001035870 [ Cash on Delivery ] P...
(AISHA) Ambegaon Khurd Call Girls Just Call 7001035870 [ Cash on Delivery ] P...
 
B. Smith. (Architectural Portfolio.).pdf
B. Smith. (Architectural Portfolio.).pdfB. Smith. (Architectural Portfolio.).pdf
B. Smith. (Architectural Portfolio.).pdf
 
VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...
VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...
VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...
 
Top Rated Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
 
Punjabi Housewife Call Girls Service Gomti Nagar \ 9548273370 Indian Call Gir...
Punjabi Housewife Call Girls Service Gomti Nagar \ 9548273370 Indian Call Gir...Punjabi Housewife Call Girls Service Gomti Nagar \ 9548273370 Indian Call Gir...
Punjabi Housewife Call Girls Service Gomti Nagar \ 9548273370 Indian Call Gir...
 
The history of music videos a level presentation
The history of music videos a level presentationThe history of music videos a level presentation
The history of music videos a level presentation
 
VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...
VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...
VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...
 

Cics web interface new

  • 1. CICS WEB INTERFACE (OVERVIEW) CREATED BY : BAL MUKUND BIHARI EMAIL: MUKUND4LIFE@GMAIL.COM 1
  • 2. DO YOU KNOW? We can code HTML tag in cics We can code java program into the cics We can code scripting language into cics. Some other facility also are provided CREATED BY : BAL MUKUND BIHARI EMAIL: MUKUND4LIFE@GMAIL.COM 2
  • 3. CICS WEB APPLICATION CREATED BY : BAL MUKUND BIHARI EMAIL: MUKUND4LIFE@GMAIL.COM Description: CICS web interface are use in business logic interface to link to other services , and Eventually ,to the target CICS application program. Benefits: Provide Web access to existing CICS programs without requiring a Web Server, without reprogramming a existing business logic, Support access by methods other than the Web using the business logic interface The 3270 Bridge provide - a turnkey solution, - Support BMS MAP customization for the Web. 3
  • 4. CICS WEB APPLICATION OVERVIEW CICS CREATED BY : BAL MUKUND BIHARI EMAIL: MUKUND4LIFE@GMAIL.COM TCP/IP SUPPORT CICS Web Support Business Logic Interface CICS Application Program COMMAREA HTTP WEB Browser 4
  • 5. CREATED BY : BAL MUKUND BIHARI EMAIL: MUKUND4LIFE@GMAIL.COM CWI High Level Flow TCP/IP SUPPORT Sockets Listener Task Web Attach Task Code Conversion Analyzer Code Conversion Alias Transaction Business Logic Interface Converter CICS Application Code Conversion 5 CICS System
  • 6. MAIN COMPONENTS OF CWI TCP/IP Support: all the request communicated through TCP/IP port assigned to the CICS region.  Web attached task: its links to a series of programs  converter : convert the HTTP request header from code page to EBCDIC.  Analyzer: analyze the content for further decisions  Web Attach Task: it start remaining task into cics like normal cics processing  Alias transaction:: it link to business logic interface under option HTTP request get decoded into COMMAREA and also it link to the target application program  BLI return to alias which link to the code conversion program one last time to convert the output from EBCDIC to code page of client.  The CWI return this HTML response to the originating Wb browser. CREATED BY : BAL MUKUND BIHARI EMAIL: MUKUND4LIFE@GMAIL.COM 6
  • 7. INITIATING A CICS TRANSACTION URL: http:serverIP:port/cics/cwba/cicspgm?data=110 http: protocol being used for the above request ServerIP: The IP address of the server this is nothing but IP address of cics port: port number assigned to CWI Cics: the converter that used , CICS is a default analyzer not to ask for converter. Cwba: transaction name Cicspgm: cics application program to be executed Data=110 : user data to be passed the application. CREATED BY : BAL MUKUND BIHARI EMAIL: MUKUND4LIFE@GMAIL.COM 7
  • 8. PROCESSING HTTP REQUESTS Retrieve the method version, URL path etc from an inbound request EXEC CICS EXTRACT HTTPMETHOD (data-area1) HTTPVERSION (data-area2) PATH (data-area3) Browse through all the version various HTTP headers in an inbound request STARTBROWSE HTTPHEADER READNEXT HTTPHEADER (data-area) VALUE (data-area2) END BROWSE HTTPHEADER Receive HTTP request body or entire non-HTTP request RECEIVE INTO (data-area) CREATED BY : BAL MUKUND BIHARI EMAIL: MUKUND4LIFE@GMAIL.COM 8
  • 9. WRITING A COVERTOR PROGRAM  Converter name specified by analyzer  Linked by Business logic interface (BLI)  Executes under Alias transaction ID  Runs in the same region where request received  Each request uses same program for both encode and decode.  Decode function builds COMMAREA for target program  Encode function builds HTTP response  Purpose: remove HTTP and HTML considerations from target program  Architected COMMREA  COPY books for parameters and constants CREATED BY : BAL MUKUND BIHARI EMAIL: MUKUND4LIFE@GMAIL.COM 9
  • 10. DOCUMENT TEMPLATE Build HTML templates offline Use Template manager or EXEC CICS DOCMENTS CREATE a new documents SET value for symbols INSERT object into documents Text strings Symbols values bookmarks CREATED BY : BAL MUKUND BIHARI EMAIL: MUKUND4LIFE@GMAIL.COM NAME=xxxxxx&PHON=999999 Heading Bookmarks More text Bookmarks Template ... Data 10
  • 11. CREATING THE TEMPLATE It can be stored into portioned data set member or in TDQ (Transient data queue) or TS ( temporary storage) or VSAM file etc. Template content :  HTML TAGS and attributes  Variables : Begin with & and End with ;  Template Is case sensitive <html> <p> customer &NAME; <p>phone &PHON; </html> CREATED BY : BAL MUKUND BIHARI EMAIL: MUKUND4LIFE@GMAIL.COM 11
  • 12. USING THE DOCUMENTS API EXEC CICS DOCUMENTS CREATE DOCTOKEN (token) TEMPLATE(‘inquiry-heading) DOCUMENT SET DOCTOKEN (token) SYMBOL(‘NAME’) VALUE( cust-name) DOCUMENT SET DOCTOKEN (token) SYMBOL(‘name’) VALUE( cust-name) EXEC CICS DOCUMENT INSERT DOCTOKEN(TOKEN) TEMPALTE(‘inquiry-footing’) EXEC CICS WEB SEND DOCTOKEN (token) <html><head> <title> Customer inquiry </title></head> <body> <p>Customer &NAME; <p>Phone: &PHON; </body</html> CREATED BY : BAL MUKUND BIHARI EMAIL: MUKUND4LIFE@GMAIL.COM 12
  • 13. EXEC CICS DOCUMENT : It assembling HTML documents EXEC CICS Web : it access the HTTP web command request and used to send the response. Create : it start a new document using a header template and return the document token that is used to for subsequent call. SET : it manipulates symbols and there associated value. INSERT: Place an object into the document like footing or heading WEB SEND : It schedule the document for out put CREATED BY : BAL MUKUND BIHARI EMAIL: MUKUND4LIFE@GMAIL.COM 13
  • 14. CREATED BY : BAL MUKUND BIHARI EMAIL: MUKUND4LIFE@GMAIL.COM 14