Skip to Main Content
IBM Z Software


This portal is to open public enhancement requests against IBM Z Software products. To view all of your ideas submitted to IBM, create and manage groups of Ideas, or create an idea explicitly set to be either visible by all (public) or visible only to you and IBM (private), use the IBM Unified Ideas Portal (https://ideas.ibm.com).


Shape the future of IBM!

We invite you to shape the future of IBM, including product roadmaps, by submitting ideas that matter to you the most. Here's how it works:

Search existing ideas

Start by searching and reviewing ideas and requests to enhance a product or service. Take a look at ideas others have posted, and add a comment, vote, or subscribe to updates on them if they matter to you. If you can't find what you are looking for,

Post your ideas
  1. Post an idea.

  2. Get feedback from the IBM team and other customers to refine your idea.

  3. Follow the idea through the IBM Ideas process.


Specific links you will want to bookmark for future use

Welcome to the IBM Ideas Portal (https://www.ibm.com/ideas) - Use this site to find out additional information and details about the IBM Ideas process and statuses.

IBM Unified Ideas Portal (https://ideas.ibm.com) - Use this site to view all of your ideas, create new ideas for any IBM product, or search for ideas across all of IBM.

ideasibm@us.ibm.com - Use this email to suggest enhancements to the Ideas process or request help from IBM for submitting your Ideas.

Status Delivered
Categories Explorer
Created by Guest
Created on Jan 29, 2015

CICS Explorer Allow Multiple External Connection Link Customization via the .ini file

Currently you can only customize CICS Explorer via the plugin_customization.ini file with One connection file link. We would like the ability to add multiple connection links to the plugin_customization.ini file, so that we could have a link to a Production Connection file and a link to a separate Test Connection file

This would allow us to update a Production zFS connection file independently from a Test zFS connection file.

Idea priority High
  • Guest
    Reply
    |
    Oct 5, 2015

    Due to processing by IBM, this request was reassigned to have the following updated attributes:
    Brand - Servers and Systems Software
    Product family - Transaction Processing
    Product - CICS Transaction Server

    For recording keeping, the previous attributes were:
    Brand - WebSphere
    Product family - Transaction Processing
    Product - CICS Transaction Server

  • Guest
    Reply
    |
    Apr 9, 2015

    Hi Lisa, any news on testing this ?

  • Guest
    Reply
    |
    Mar 5, 2015

    Thanks for the information. We will Test and Let you know.

  • Guest
    Reply
    |
    Mar 1, 2015

    So it turns out you should already be able to do this. Here's an example of defining one connection source from the deployment redpaper (http://www.redbooks.ibm.com/redpapers/pdfs/redp5054.pdf):

    com.ibm.cics.core.connections/connections/CONNECTION_SOURCES/pluginCust-201309061131/LOCATION=http\://myserver/connections.pref
    com.ibm.cics.core.ui/CICSRGN.columnNames=regionName,jobName,MVSSystemID,taskCount

    The first line defines a new connection source, the second line defines some default columns for the CICSRGN table.
    Let's consider the first line only:

    com.ibm.cics.core.connections/connections/CONNECTION_SOURCES <- subnodes of this address define new connections sources
    pluginCust-201309061131 <- the ID of a particular connections source. This is user-controllable, but needs to be unique!
    LOCATION <- a property telling Explorer where to look for the connections. Can be a local file system path, or an http path to a remote resource

    So if you wanted to define 2 independent custom connection sources, you can simply include one line for each location, with different IDs:

    com.ibm.cics.core.connections/connections/CONNECTION_SOURCES/source1-201309061131/LOCATION=http\://myserver/connections1.pref
    com.ibm.cics.core.connections/connections/CONNECTION_SOURCES/source2-201309061131/LOCATION=http\://myserver/connections2.pref

    Note that you can use whatever you like for the ID as long as it's unique, but it's probably best to use java conventions and use something like a company-specific package name:

    com.ibm.cics.core.connections/connections/CONNECTION_SOURCES/com.mydomain.cicsexplorer.connections.1/LOCATION=http\://myserver/connections1.pref
    com.ibm.cics.core.connections/connections/CONNECTION_SOURCES/com.mydomain.cicsexplorer.connections.2/LOCATION=http\://myserver/connections2.pref

    Where mydomain.com is a domain you own, that no-one else should be using.

    Additionally, CICS Explorer uses the IDs to detect updates to the connections within the connection providers. If you change the IDs that you're using for your connection sources, that'll get modelled as some connections being removed, and a different set being added, rather than the connections contained within the source being updated. This means it's probably a bad idea to use a timestamp for your connection source ID, the way the deployment redpaper suggests!

    Let me know how you get on. If this works for you, we should be able to close this RFE.