• If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Announcement

Collapse
No announcement yet.

Portal tabs with different activation groups?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Portal tabs with different activation groups?

    Is there a way to have each portal tab start back-end PGMs with different activation groups?
    In this way every tab could handle system record locking to perform protected updates on the business-logic database.
    In the actual situation we can't use iSeries record locking mechanism to protect multi-step updates in concurrency situations.

    Thanks

  • #2
    WORKAROUND: Portal tabs with different activation groups

    Actually we are using a workaround that works like this:

    - Before opening a new tab we call a back-end that assigns an unique numeric ID (ex: 001)

    - This back-end takes VVCALL.pgm and duplicates it with a new name
    and a new activation group,( ex: VVCALL001.pgm )

    - Javascript then creates the tab with that ID (tab_001) and forward every request in that tab to the new vvcall (VVCALL001.pgm).

    Benefits: we can have N tabs opened of the SAME function, and
    N different activation groups (VVCALL001,002,003...) with different locking statuses.
    Edit/Delete Message

    Comment

    Working...
    X