Work with the Portal Scripting Interface | HCL Digital Experience
Learn more about the different modes that you can use with the Portal Scripting Interface.
Prerequisite information
The Portal Scripting Interface provided by HCL Digital Experience is based on the wsadmin scripting tool that is provided by IBM® WebSphere® Application Server. Therefore, before you use the Portal Scripting Interface, familiarize yourself with how to use the WebSphere® Application Server wsadmin tool.
Interactive mode
Use the interactive mode if you want to interact directly and dynamically with the portal to perform simple administrative tasks that should only be executed once. For example, the administrator wants to modify the permissions of a page for a certain principal, or the administrator wants to add a portlet to a page. Use the interactive mode if you do not intend to repeat the operation.
- AIX®HP-UXLinux™Solaris:
wp_profile_root/PortalServer/bin
- IBM® i:
wp_profile_root/PortalServer/bin
- Windows™:
wp_profile_root\PortalServer\bin
- z/OS®:
wp_profile_root/PortalServer/bin
- AIX®HP-UXLinux™Solaris: ./wpscript.sh
- IBM® i: wpscript.sh
- Windows™: wpscript.bat
- z/OS®: ./wpscript.sh
Before initiating a session in interactive mode, make sure that HCL
Portal is running. You can invoke the portal script client using the wpscript.sh
command from the wp_profile_root/PortalServer/bin
directory. You
must be logged in using the administrative user ID. The following procedures provide
examples:
- If WebSphere® Application Server
security is enabled, specify a user ID and password during login as shown in the following example:
- AIX®HP-UXLinux™Solaris: ./wpscript.sh -port port_number -user user_id -password password
- IBM® i: wpscript.sh -port port_number -user user_id -password password
- Windows™: wpscript.bat -port port_number -user user_id -password password
- z/OS®: ./wpscript.sh -port port_number -user user_id -password password
The most basic parameters are explained briefly in the following table.
Table 1. Description of the basic parameters used with the wpscript.bat|sh task Parameter Description -lang Specifies the language of the script file, command, or an interactive shell. Specify one of the following values for the -lang parameter:- jacl
- jython
This parameter is optional and has no default value. This option overrides language determinations that are based on script file names, profile script file names, or the com.ibm.ws.scripting.defaultLang property.
Important: If you do not specify the script language in the command line or as a parameter, and the wsadmin tool cannot determine the script language, an error occurs. If you do not specify the script language as the value for -lang, the wsadmin tool determines the script language as follows:- If you specify the -f script_file_name argument, the wsadmin tool determines the language from the name of the target script file.
- If you specify the -profile profile_script_name argument, the wsadmin tool determines the language from the name of the profile script.
-conntype The type of connection that should be established between scripting. Valid connection types include:- SOAP
- RMI
- NONE
The default value is SOAP. This parameter is optional. Use the -conntype NONE option to run in local mode. The result is that the scripting client is not connected to a running server. If the connection type NONE is selected, the scripting beans are inactive and cannot be used for administration, with the exception of the help command.
-port The connection port number. This parameter is optional. The port number depends on values chosen during installation. You can verify the value that is set for the WasSoapPort property in the wkplc.properties file found in the appropriate directory given here:- AIX®HP-UXLinux™Solaris: wp_profile_root/ConfigEngine
- IBM® i: wp_profile_root/ConfigEngine
- Windows™: wp_profile_root\ConfigEngine
If you are running wpscript on a server that is part of a cell managed by a deployment manager, the port_number can vary depending on what ports are in use on the system when the deployment manager is created. To verify the value, check the setting for SOAP_CONNECTOR_ADDRESS in serverindex.xml located in the appropriate directory given here:- AIX®HP-UXLinux™Solaris: dmgr_profile_root/config/cells/cell_name/nodes/node_name
- IBM® i: dmgr_profile_root/config/cells/cell_name/nodes/node_name
- Windows™: dmgr_profile_root\config\cells\cell_name\nodes\node_name
For z/OS®: The name of the connection port. This is the SOAP port of the portal server. This parameter is optional. To determine the SOAP port, access the WebSphere® Integrated Solutions Console, go to . For example, if you are running wpscript on a server that is part of a cell managed by a deployment manager, the SOAP port might be 10033.
-user The user ID under which you establish the connection. This parameter can be mandatory, depending on your security configuration.
-password The password for the user ID under which you establish the connection.
- Log on to the portal using one of the following script commands:
Jython:
Portal.login("user_ID", "password")
JACL:
$Portal login user_ID password
- Issue portal script commands as required.
- After you have completed all tasks by the portal scripting interface, close and exit the script processor. All changes that you committed are applied to the portal configuration.
Script mode
Use the script mode to apply predefined changes to the configuration of a portal.
The wpscript tool executes a Jython or JACL script that contains the administrative operations. The scripting client inherits the script processor from wsadmin, so an administrator can exploit the Jython or JACL scripting language, in order to write re-usable, extendable administration scripts. This mode is typically preferred if reproducible administration tasks are created: For example, the administrator can write a script that produces a complete page subtree, and adds individual page layouts and portlets on each page.
Users who have access permission to perform XML configuration interface requests can change configurations of all resources. The Portal Scripting Interface is mostly consistent with the administration model that is exposed by the Portal user interface.
Before using script mode, make sure that HCL Portal is running and a portal script file is available. You must be logged in using the WebSphere administrative user ID. Use the following procedure:
All changes committed by the script are immediately applied to the portal configuration.
- Portal Jython script example
- The following example is a Jython script file named testme.py:
# Scripting bean example: create a simple page (multi-column Layout) # # Procedure: create a multi-column page under the page that is currently # selected, and place the given portlets into the layout. # # parameters: # name The name of the page # portlet_names A list of portlet names. # returns: # oid The id of the page that has been created def create_multi_col_page(name, portlet_names): thePage = Content.create("page", name, "html") Content.select(thePage) lyt0 = Layout.create("container", "horizontal", "select") for pn in portlet_names: pid = Portlet.find("portlet", "cn", pn) Layout.create("control", pid) return thePage # main code starts here # set User ID/ pwd for portal Login command # Hint: User ID and passwords should normally not be placed inside a # configuration script; better use property files or command line arguments user = "user_ID" pwd = "password" Portal.login(user, pwd) # determine and select the parent of the page to be created. # In this example, This is the "Home" label. Content.select(Content.find("all", "uniquename", "ibm.portal.Home") # Invoke the page creation procedure. The label of the page is "My test page", # portlets to be added are the reminder portlet and the welcome portlet. newbie = create_multi_col_page("A Page", ["Reminder", "Welcome_to_HCL Portal and HCL Web Content Manager"]) print "ok, we are done."
- Portal JACL script example
- The following example is a JACL script file named testme.jacl:
# Scripting bean example: create a simple page (multi-column Layout) # # Procedure: create a multi-column page under the page that is currently # selected, and place the given portlets into the layout. # # parameters: # name The name of the page # portlet_names A list of portlet names. # returns: # oid The id of the page that has been created proc create_multi_col_page { name portlet_names } { global Content Layout Portlet set thePage [$Content create page $name html] $Content select $thePage set lyt0 [$Layout create container horizontal select] foreach pn $portlet_names { set pid [$Portlet find portlet cn $pn] $Layout create control $pid } return $thePage } # main code starts here # set User ID/ pwd for portal Login command # Hint: User ID and passwords should normally not be placed inside a # configuration script; better use property files or command line arguments set user user_ID set pwd password $Portal login $user $pwd # determine and select the parent of the page to be created. # In this example, This is the "Home" label. $Content select [$Content find all uniquename "ibm.portal.Home"] # Invoke the page creation procedure. The label of the page is "My test page", # portlets to be added are the reminder portlet, and the welcome portlet. set newbie [create_multi_col_page "A Page" { "Reminder" "Welcome_to_HCL Portal and HCL Web Content Manager" } ] puts "ok, we are done."
- Profiles.
- Command line arguments.
- argc
- Use this variable in JACL scripts to specify the number of command line arguments.
- argv
- Use this variable in Jython and JACL scripts to specify the command line arguments.
user = "portaladmin"
pwd = "adminpwd"
and
replace them with the following statements:
if len(sys.argv) != 2:
print "invocation syntax: wpscript testme.py <user> <pwd>"
sys.exit(1)
user = argv[0]
pwd = argv[1]
set user portaladmin
set pwd adminpwd
and
replace them with the following
statements:if { $argc != 2 } {
puts "invocation syntax: wpscript testme.jacl <user> <pwd>"
exit
}
set user [lindex $argv 0]
set pwd [lindex $argv 1]
The security-sensitive username and password are removed from the script. The modified code expects the user ID and password to be specified as command line arguments, for example:
Jython: wpscript.sh -port port_number -f testme.py user_IDpassword
JACL:wpscript.sh -port port_number -f testme.jacl user_ID password
Run scripting commands in a profile
A profile is a script that runs before the main script, or before entering interactive mode. Profiles can be used to set up environment specific behavior or user specific data. Profiles are specified when invoking wpscript, using the -profile parameter. For example, the login command can be placed in a profile.
- Jython profile script example
-
The following example is a Jython profile script named mylogin.py:
# scripting profile # contains log-in procedure on portal with disabled security if len(sys.argv) != 2: print "invocation syntax: wpscript -f testme.jacl -profile mylogin.py user_ID password" sys.exit(1) user = argv[0] pwd = argv[1] Portal.login(user, pwd)
Remove or comment out the following statements in the testme.py script file:if len(sys.argv) != 2: print "invocation syntax: wpscript testme.py user_ID password" sys.exit(1) user = argv[0] pwd = argv[1] Portal.login(user, pwd)
To invoke
mylogin.py
, enter the following command: wpscript.sh -port port_number -profile mylogin.py -f testme.py user_ID password - JACL profile script example
-
The following example is a JACL profile script named mylogin.jacl:
# scripting profile # contains log-in procedure on portal with disabled security if { $argc != 2 } { puts "invocation syntax: wpscript -f testme.jacl -profile mylogin.jacl user_ID password" exit } set user [lindex $argv 0] set pwd [lindex $argv 1] $Portal login $user $pwd
Remove or comment out the following statements in the testme.jacl script file:if { $argc != 2 } { puts "invocation syntax: wpscript testme.jacl user_ID password" exit } set user [lindex $argv 0] set pwd [lindex $argv 1] $Portal login $user $pwd
To invoke
mylogin.jacl
, enter the following command: wpscript.sh -port port_number -profile mylogin.jacl -f testme.jacl user_ID password
- Jython scripts
-
# scripting profile # contains log-in procedure on portal with enabled security Portal.login()
- JACL scripts
-
# scripting profile # contains log-in procedure on portal with enabled security $Portal login