showWSNService command
Use the showWSNService command to show the properties of a WS-Notification service.
如果要執行這個指令,請使用 wsadmin Scripting 用戶端的 AdminTask 物件。
wsadmin Scripting 用戶端是從 Qshell 執行.
如需相關資訊,請參閱利用 wsadmin Script 配置 Qshell 來執行 WebSphere Script.
服務整合匯流排指令有指令行說明:
- 如需可用的 WS-Notification 指令清單,以及每個指令的簡要說明,請在 wsadmin 提示下,輸入下列指令:
print AdminTask.help('WSNotificationCommands')
- 如需給定指令的概觀說明,請在 wsadmin 提示下,輸入下列指令:
print AdminTask.help('command_name')
Purpose
This command shows the properties
of a WS-Notification service in a human-readable form. There are
two patterns for use of this command:
- The required WS-Notification service is determined by the target object used.
- The required WS-Notification service is determined by the values specified on the parameters.
Target object
WSNService (conditional - must be provided if the bus and name parameters are not provided).
Required parameters
None.
Conditional parameters
- -bus
- The name of the service integration bus on which the WS-Notification service is located. This must be specified if a target object is not specified.
- -name
- The name of the WS-Notification service to be displayed. This must be specified if a target object is not specified.
Optional parameters
None.
Examples
Display the WS-Notification service
obtained in the example from topic "Listing WS-Notification
services by using the wsadmin tool", by using the target
object pattern.
- Using Jython:
AdminTask.showWSNService(wsnServiceList)
- Using Jacl:
$AdminTask showWSNService $wsnServiceList
Display the WS-Notification service obtained in the example from topic "Listing WS-Notification
services by using the wsadmin tool", by using the parameters
pattern.
- Using Jython:
AdminTask.showWSNService(["-bus", "bus1", "-name", "NewWSNService"])
- Using Jacl:
$AdminTask showWSNService {-bus bus1 -name NewWSNService}