To
get or set the address selectors for trigger address tracing,
use the following sis-console
commands, Ant task, or related MBean operations.
Console commands
SIP
getTriggerAddressTracingSelectors
Command |
gettriggeraddresstracingselectors <ra-entity> <trigger-type> Get the current configured initial event parameters selected for trigger address tracing examination. The trigger type is either 'originating' or 'terminating' |
Example |
To get the trigger address tracing selectors for originating triggers for the SIS instance named $ ./sis-console gettriggeraddresstracingselectors sis originating The following selectors are currently configured: [CallingPartyNumber] |
setTriggerAddressTracingSelectors
Command |
settriggeraddresstracingselectors <ra-entity> <trigger-type> <selectors> Set the initial event parameters selected for trigger address tracing examination. The trigger type is either 'originating', 'terminating', or 'third_party'. The selectors are a comma-separated list from the following possibilities: [Request-URI, From, To, P-Asserted-Identity, P-Called-Party-ID, P-Served-User] |
Example |
To set the trigger address tracing selectors for originating triggers for the SIS instance named $ ./sis-console settriggeraddresstracingselectors sis originating From,P-Called-Party-ID The following selectors have now been configured: [From, P-Called-Party-ID] To remove all existing selectors for terminating triggers for the SIS instance named $ ./sis-console settriggeraddresstracingselectors sis terminating "" The following selectors have now been configured: [] |
IN
getTriggerAddressTracingSelectors
Command |
gettriggeraddresstracingselectors <ra-entity> <trigger-type> Get the current configured initial event parameters selected for trigger address tracing examination. The trigger type is either 'originating', 'terminating', or 'third_party' |
Example |
To get the trigger address tracing selectors for originating triggers for the SIS instance named $ ./sis-console gettriggeraddresstracingselectors sis originating The following selectors are currently configured: [CallingPartyNumber] |
setTriggerAddressTracingSelectors
Command |
settriggeraddresstracingselectors <ra-entity> <trigger-type> <selectors> Set the initial event parameters selected for trigger address tracing examination. The trigger type is either 'originating', 'terminating', or 'third_party'. The selectors are a comma-separated list from the following possibilities: [CallingPartyNumber, CalledPartyNumber, CalledPartyBCDNumber, RedirectingPartyID, LocationNumber, OriginalCalledPartyID, AdditionalCallingPartyNumber, DestinationSubscriberNumber, SmscAddress] |
---|---|
Example |
To set the trigger address tracing selectors for originating triggers for the SIS instance named $ ./sis-console settriggeraddresstracingselectors sis originating CallingPartyNumber,RedirectingPartyID The following selectors have now been configured: [CallingPartyNumber, RedirectingPartyID] To remove all existing selectors for terminating triggers for the SIS instance named $ ./sis-console settriggeraddresstracingselectors sis terminating "" The following selectors have now been configured: [] |
Ant task
SIP
settriggeraddresstracingselectors
Task |
<settriggeraddresstracingselectors triggertype="..."> <selector name="..."/> ... </settriggeraddresstracingselectors> |
Example |
<sis-sip-management> <settriggeraddresstracingselectors triggertype="originating"> <selector name="From"/> <selector name="P-Called-Party-ID"/> </settriggeraddresstracingselectors> </sis-sip-management> |
IN
settriggeraddresstracingselectors
Task |
<settriggeraddresstracingselectors triggertype="..."> <selector name="..."/> ... </settriggeraddresstracingselectors> |
Example |
<sis-in-management> <settriggeraddresstracingselectors triggertype="originating"> <selector name="CalledPartyNumber"/> <selector name="RedirectingPartyID"/> </settriggeraddresstracingselectors> </sis-in-management> |
MBean operations
SIP
MBean |
---|
getSelectors
Operation |
public SipTriggerAddressTracingSelector[] getSelectors(TriggerType triggerType) throws NullPointerException, ManagementException; |
---|
setSelectors
Operation |
public void setSelectors(TriggerType triggerType, SipTriggerAddressTracingSelector[] selectors) throws NullPointerException, ManagementException; |
---|
IN
MBean |
---|
getSelectors
Operation |
public INTriggerAddressTracingSelector[] getSelectors(TriggerType triggerType) throws NullPointerException, ManagementException; |
---|
setSelectors
Operation |
public void setSelectors(TriggerType triggerType, INTriggerAddressTracingSelector[] selectors) throws NullPointerException, ManagementException; |
---|