Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
sunbelt-plb-samples/legacy_demo/aspsrv.pls at main · KcsDev1982/sunbelt-plb-samples · GitHub
Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
KcsDev1982
/
sunbelt-plb-samples
Public
Notifications
You must be signed in to change notification settings
Fork
2
Star
5
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Files
Expand file tree
main
Breadcrumbs
sunbelt-plb-samples
/
legacy_demo
/
aspsrv.pls
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
155 lines (148 loc) · 6.48 KB
main
Breadcrumbs
sunbelt-plb-samples
/
legacy_demo
/
aspsrv.pls
Copy path
Top
File metadata and controls
Code
Blame
155 lines (148 loc) · 6.48 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
..............................................................
. Files:
. plbsamp.asp - ASP script to access and retrieve data
. from a PL/B program named 'aspsrv.plc'.
.
. aspsrv.pls - Simple PL/B program which reads an AAM
. file and retrieves data by event commands.
. Data is returned to ASP script by modifying
. an input event argument.
.
. Purpose:
. This test is to demonstrate how one would access a PL/B program
. using ASP scripting to retrieve data.
.
. Usage:
. PLBSAMP.ASP
.
. 1. Creates an program object named 'PlbSrv' using
. a new PL/B class identified as:
.
. ProgID='Plbwin.ProgramNE'
. CLASSID={7B8BCB91-BC42-45A6-BC18-4D7D4497DE6E}
.
. 2. Using 'PlbSrv.Run("aspsrv"), the ASP logic causes
. a PLBWIN Automation Server thread to start executing
. the 'aspsrv.plc' program. Notice, that the "aspsrv"
. in this case identifies a command line to start the
. execution which can contain PLBWIN options if required.
.
. 3. This ASP sample is NOT performing any error checking
. using the ErrorText method.
.
. 4. Uses 'PlbSrv.EventSend 1, ResString' program object
. method to send an event identifier number 1 and the data
. contained in 'ResString' to the 'aspsrv.plc' server
. program. The ASP logic flow is suspended at that
. point until the PL/B server program retrieves the
. necessary data and returns. As implemented in this
. demo, the input event number 1 for the PL/B server
. program causes an AAM Read by key to occur.
.
. Also, note that the 'ResString' in this case is being
. used as both an input to the 'aspsrv.plc' program
. and an output from the 'aspsrv.plc' program to the ASP
. script. The 'aspsrv.plc' program uses SETPROP for the
. internal VARIANT named '*ARG1' when sending a result
. back to the ASP script.
.
. 5. Uses 'PlbSrv.EventSend 2, ResString' program object
. method to send an event identifier number 2 with the
. 'ResString' VARIANT variable to be used for returning
. a result. As implemented in this demo, the input
. event nubmer 2 for the PL/B server program causes
. an AAM ReadKG operation to retrieve a next record.
. The 'aspsrv.plc' program again uses the SETPROP for
. the internal VARIANT named '*ARG1' to send a result
. back to the ASP script in the 'ResString' variable.
.
. 6. Uses 'PlbSrv.EventSend 3' program object method
. to send an event identifier number 3 to the 'aspsrv.plc'
. server program. The server program will perform
. cleanup actions and stop at that point.
.
. Note:
. a. The PLBWIN Automation Server task remains loaded
. and is available to start executing other
. PL/B programs for subsequent ASP operations.
.
. b. The 'PlbSrv' program object can not be used
. for any other actions.
.
. aspsrv.PLC
.
. 1. Creates a working phone list AAM file if it does not
. exist.
.
. 2. Uses EventReg to register three input events numbered
. '1', '2', and '3' as recieved from the '*CLIENT' ASP
. client.
.
. These events are always process as FASTEVENT events.
. This means that these events are process immediately.
. Event number '1' is used to cause an AAM read by key.
. Event number '2' is used to cause an AAM ReadKG operation.
. Event number '3' is used to cause the server program
. to stop executing.
.
. 4. When Events numbered '1' and '2' are processed, then
. the result is returned using the internal *ARG1 variant
. object which is being used to return results to the
. ASP client process. Also, note that the Event numbered
. '1' uses the 'ResString' as an input which contains the
. data to be used in the AAM keyed search.
.
. 5. When an Event number '3' is processed, then the
. 'aspsrv.plc' server program is stopped. Once this
. server program is terminated in this manner, then
. this program thread can not be reused. The client
. process must create a new program object as required.
.
..............................................................
PhoneFile AFILE
Name DIM 20
Phone DIM 20
Key DIM 23
Data DIM 40
WINSHOW
TRAP DoPrep If IO
OPEN PhoneFile, "TestPhone"
TRAPCLR IO
EVENTREG *Client, 1, DoRead, ARG1=Name
EVENTREG *Client, 2, DoReadNext
EVENTREG *Client, 3, DoExit
DISPLAY "Started"
LOOP
EVENTWAIT
REPEAT
STOP
DoPrep
PREP PhoneFile, "TestPhone.txt", "TestPhone.aam":
"1-20","40",Share
WRITE PhoneFile;"Sam Smith ","555-1234"
WRITE PhoneFile;"Fred Jones ","555-9988"
WRITE PhoneFile;"Tom Smith ","555-1334"
RETURN
DoRead
DISPLAY "DoRead"
PACK Key, "01F", Name
READ PhoneFile,Key;Name,Phone
IF Over
MOVE "!" To Data
ELSE
PACK Data From Name,Phone
ENDIF
SETPROP *Arg1,VARVALUE=Data
RETURN
DoReadNext
READKG PhoneFile;Name,Phone
IF Over
MOVE "!" To Data
ELSE
PACK Data From Name,Phone
ENDIF
SETPROP *Arg1,VARVALUE=Data
RETURN
DoExit
CLOSE PhoneFile
STOP
You can’t perform that action at this time.