WAS v8.5 > Script the application serving environment (wsadmin) > Scripting for Mail, URLs, and other Java EE resources > Configure mail, URLs, and resource environment entries with wsadmin scriptingConfigure new URL providers using wsadmin.sh
We can use scripting and wsadmin to configure new URL providers.
Before starting this task, wsadmin must be running. See the topic Starting the wsadmin scripting client article for more information. Configure a new URL provider:
- Identify the parent ID and assign it to the node variable.
Jacl:
set node [$AdminConfig getid /Cell:mycell/Node:mynode/]
Jython:
node = AdminConfig.getid('/Cell:mycell/Node:mynode/') print node
Example output:
mynode(cells/mycell/nodes/mynode|node.xml#Node_1)
- Identify the required attributes:
Jacl:
$AdminConfig required URLProvider
Jython:
print AdminConfig.required('URLProvider')
Example output:
Attribute Type streamHandlerClassName String protocol String name String- Set up the required attributes:
Jacl:
set name [list name URLP1] set shcn [list streamHandlerClassName "Put the stream handler classname here"] set protocol [list protocol "Put the protocol here"] set urlpAttrs [list $name $shcn $protocol]Example output:
{name URLP1} {streamHandlerClassName {Put the stream handler classname here}} {protocol {Put the protocol here}}Jython:
name = ['name', 'URLP1'] shcn = ['streamHandlerClassName', "Put the stream handler classname here"] protocol = ['protocol', "Put the protocol here"] urlpAttrs = [name, shcn, protocol] print urlpAttrsExample output:
[[name, URLP1], [streamHandlerClassName, "Put the stream handler classname here"], [protocol, "Put the protocol here"]]
- Create a URL provider:
Jacl:
$AdminConfig create URLProvider $node $urlpAttrs
Jython:
print AdminConfig.create('URLProvider', node, urlpAttrs)
Example output:
URLP1(cells/mycell/nodes/mynode|resources.xml#URLProvider_1)
- Save the configuration changes. See the topic Saving configuration changes with wsadmin for more information.
Related
Use the wsadmin scripting AdminConfig object for scripted administration
Save configuration changes with wsadmin
Start the wsadmin scripting client using wsadmin.sh
Reference:
Commands for the AdminConfig object using wsadmin.sh