English 中文(简体)
如何限制我手工艺节目的使用
原标题:How to restrict the access of running my cics program
  • 时间:2012-04-25 18:36:16
  •  标签:
  • cobol
  • cics

我有论题应用,我不想开发一个标志性屏幕,而是要限制用户使用,然后核实是否允许用户操作我的申请。 这是可能的吗? 谢谢。

最佳回答

可能比利用美国ER ID和比较清单,在CICS环境中限制获得某些交易的途径更好。 大多数商店都制定了标准技术,限制在中心内部进行交易。 然而,如果你必须找到用户,那么就象这样尝试:

       EXEC CICS ASSIGN                                              
            USERID(WS-USERID)                                        
       END-EXEC.   

WS-USERID is a workingstor PIC X(8) field.

这与

http://www.ohchr.org。

How to check against multiple user ids? You need a list of authorized users to compare the current user id against. If the user id is in the list, the user is authorized to use the transaction. Typically you have a couple options for managing such a list:

工作-生活管理表的解决办法是最不灵活的,因为每增加或删除新用户时,方案可能需要更新和重组。

However, as pointed out by myself and cschneid, access security is best handled outside of applicaion programs using something like RACF or ACF2. Your local systems administration should be able to help you get this set up.

问题回答

海运公会可以与外部安保管理人员,例如RACF、CA-ACF2或CA-Top Secret交谈。 申请往往通过在外部安保主管中制定正确的规则或说明而在交易一级得到保证。

这样,安全行动是在适用逻辑之外进行的。 安保人员而不是申请开发商准许进入。

遵循你的意见:。 NealB s关于多个用户的答复: 你们的安全管理人员可以把所涉所有用户都添加到一个团体,然后确定允许该团体进行交易。

你们真的应该让你们的安全管理部门处理交易准入问题。 良好的系统设计使安保管理无法应用。

有了CICS TS V4.2及以上,加上安全推广特性包(在V5.2中综合),你可以使用从分发的申请中得出的SAML说法,以提供更细微的准入控制。





相关问题
architectures of COBOL and Java

Can anyone tell me the differnces in styles and architectures between these very differenct approaches please?

How to decrypt a string in cobol

i m looking for ways to decrypt a string in cobol that was encrypted in .net using RijndaelManaged. I have control of the algorithm so it doesn t need to be Rijdnael, but i just need to ensure that ...

How can duplicates be removed from a file using COBOL?

The input file have records as: 8712351,8712353,8712353,8712354,8712356,8712352,8712355 8712352,8712355 Using COBOL, I need to remove duplicates from the above file and write to an output file. I ...

热门标签