An example configuring a new URL provider follows:
Using Jacl:
set node [$AdminConfig getid /Cell:mycell/Node:mynode/]
An example of this output follows:
mynode(cells/mycell/nodes/mynode:node.xml#Node_1)
Using Jacl:
$AdminConfig required URLProvider
An example of this output follows:
Attribute Type streamHandlerClassName String protocol String name String
Using 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]
An example of this output follows:
{name URLP1} {streamHandlerClassName {Put the stream handler classname here}} {protocol {Put the protocol here}}
Using Jacl:
$AdminConfig create URLProvider $node $urlpAttrs
An example of this output follows:
URLP1(cells/mycell/nodes/mynode:resources.xml#URLProvider_1)
Using Jacl:
$AdminConfig save