Pass Through XML

Use this property to pass page parameters onto the page specified in the URL to XML property. This supports the Common Use Variables stated at the beginning of this help topic. You must encode the < and > symbol when using the parameters (e.g., < &lt; and > &gt;).

Example:

          <PassThrough>

                   <Pass>

                             <PTType>get</PTType>

                             <PTRequest>SearchString</PTRequest>

                             <PTName>SearchString</PTName>

                             <PTDefault>[Me]</PTDefault>

                   </Pass>

                   <Pass>…</Pass>

</PassThrough>

PTDefault (Optional) – String

The default text to be sent to the page that you are requesting data from, if the parameter is not passed into this page.

PTName (Required) – String

The name of the parameter to be passed onto the page that you are requesting data from.

PTRequest (Required) – String

The name of the parameter being received by this page.

PTType (Required) – String

Controls the type of pass through. Use "post" to store the parameters in the header of your request, or use "get" to store them in the URL.

Options:

      post

      get

Back to Top