Network Deployment (Distributed operating systems), v8.0 > Scripting the application serving environment (wsadmin) > Scripting for Mail, URLs, and other Java EE resources > Configure mail, URLs, and resource environment entries with wsadmin scripting
Configure new URL providers using wsadmin.sh
We can use scripting and wsadmin.sh to configure new URL providers. See the topic Starting the wsadmin scripting client article for more information.
Configure a new URL provider:
Procedure
- 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.sh for more information.
- Synchronize the node. See the topic Synchronizing nodes with the wsadmin tool for more information.
Use the wsadmin scripting AdminConfig object for scripted administration
Saving configuration changes with wsadmin.sh
Synchronize nodes using wsadmin.sh
Start the wsadmin scripting client using wsadmin.sh
Related
Commands for the AdminConfig object using wsadmin.sh