Sample: Sender Identifier Expression

The samples for Sender Identifier Expression are provided in TIBCO_HOME/administrator/<version>/samples/senderIdentifierExpression/. The samples demonstrate how to configure and update Sender Identifier Expression through Business Studio and Administrator CLI. It contains a Readme file that provides guidelines on using the samples provided. The SOAP Request payload for the "AddUserComposite" sample is:

The Sender Identifier Expression to designate "city" as the "Sender Identifier" in this SOAP Request:
  • using the namespaces with wildcards is
    /*[local-name()='Envelope']/*[local-name()='Body']/*[local-name()='AddUser']/city/text()
  • using the exact namespaces is
    /*[namespace-uri()='http://schemas.xmlsoap.org/soap/envelope/' and local-name()='Envelope']/*[namespace-uri()='http://schemas.xmlsoap.org/soap/envelope/' and local-name()='Body']/*[namespace-uri()='http://AddUser/Sample/' and local-name()='AddUser']/city/text()

Both of these XPath expressions evaluate to city name "Palo Alto" for the above SOAP Request.