Siebel Portal Framework Guide > Delivering Content to External Web Applications > XML Request Structure >

XML Command Block


To initiate an action on a Siebel eBusiness XML screen, you must use a specific set of XML tags and they must conform to a specific structure. Table 8 lists the three valid XML tags that are used to perform a command.

Table 8.  XML Tags
Tag
Description
<EXEC>
The root tag for each command that you want to send to the SWE. The <EXEC> tag encloses the <CMD> and <ARG> tags. This tag represents a single command.
<CMD>
This tag indicates the SWE command that you want to access and encloses all arguments for the command.
<ARG>
This tag indicates the object on which the command is to be executed and any additional parameters that are required. Unlike the <EXEC> and <CMD> tags, which are used only once in a command block, you can have multiple arguments within a command block.

For example, using the information from Table 8, a valid syntax format for an XML command block is as follows:

<EXEC>

<CMD NAME="SWEcmd" VALUE="command name">

<ARG NAME="argumentName">argument1Value</ARG>

<ARG NAME="argumentName">argument2Value</ARG>

...

<ARG NAME="argumentName">argumentNValue</ARG>

<ARG NAME="SWESetMarkup"> XML | HTML </ARG>

<ARG NAME="SWEDataOnly"> TRUE | FALSE </ARG>

<ARG NAME="SWESetNoTempl"> TRUE </ARG>

</CMD>

</EXEC>

Each <EXEC> tag encloses a complete command block. The <CMD> and <ARG> tags are enclosed within the <EXEC> tag, and their attributes and values specify which commands are executed by the SWE.

A valid XML command block must conform to a specific structure. It must have a valid execute tag followed by a command tag that encloses the arguments. The syntax of the name-value pairs and the attributes that accompany the XML tags within a command block must follow a specific format. This section details the syntax of each XML tag. For the DTD for the inbound XML document, see Inbound DTD.

EXE Tag

The Execute tag is the root tag for each command that you want to execute.

Description

Think of the Execute tag as a container. Each container represents a single SWE command or screen action. Enclosed within an Execute tag are the commands, arguments, and information required to complete a single command. There should be only one <EXEC> tag for each command that you want to execute. The PATH attribute is the only attribute used by the <EXEC> tag, although it is not required.

Attributes

Table 9 lists the attributes used with the Execute tag:

Table 9.  EXEC Tag Attributes
Attribute
Description
PATH
The PATH attribute is used to indicate the location of the SWE object manager. By default, the eBusinessSWEXML application looks in its root directory for the SWE object manager. If you want to specify an object manager for the Web application to use, you must indicate its location using the PATH attribute.
Example

The following example uses the Execute tag to enclose the login command.

<?xml version="1.0" encoding="UTF-8"?>

<EXEC PATH="/callcenter/start.swe">

<CMD NAME="SWECmd" VALUE="ExecuteLogin">

<ARG NAME="SWEUserName">jdoe</ARG>

<ARG NAME="SWEPassword">jdoepassword</ARG>

<ARG NAME="SWESetMarkup">XML</ARG>

<ARG NAME="SWEDataOnly">TRUE</ARG>

<ARG NAME="SWESetNoTempl">TRUE</ARG>

</CMD>

</EXEC>

CMD Tag

The Command tag is required for each command block and is used to indicate the SWE command that you want to execute.

Description

Like the Execute tag, the Command tag also acts as a container. Enclosed between the open and close Command tags are the arguments required to complete a command. There should be only one <CMD> tag for each command block that you want to execute.

Attributes

Table 10 lists the attributes that are used with the Command tag:

Table 10.  CMD Tag Attributes
Attribute
Description
NAME
The NAME attribute should always be set to "SWECmd". This indicates that the type of command you want to execute is a SWE command.
VALUE
The VALUE attribute specifies which SWECmd you want to execute. Listed below are the SWE commands most commonly used with eBusiness:
  • ExecuteLogin
  • GotoPageTab
  • InvokeMethod
  • LogOff
Example

Using the information from the table above, the following example illustrates how to use the Command tag to execute a login command:

<?xml version="1.0" encoding="UTF-8"?>

<EXEC PATH="/callcenter/start.swe">

<CMD NAME="SWECmd" VALUE="ExecuteLogin">

<ARG NAME="SWEUserName">jdoe</ARG>

<ARG NAME="SWEPassword">jdoepassword</ARG>

<ARG NAME="SWESetMarkup">XML</ARG>

<ARG NAME="SWEDataOnly">TRUE</ARG>

<ARG NAME="SWESetNoTempl">TRUE</ARG>

</CMD>

</EXEC>

ARG Tag

A command block can contain multiple Argument tags. Each Argument tag indicates an additional command parameter required to complete the action specified in the command block.

Description

The Argument tag uses name/value pairs to send command parameters to the SWE. A command will not execute without having all the appropriate parameters passed to the SWE.

Attributes

Table 11 lists the attributes that are used with the Argument tag.

Table 11.  ARG Tag Attributes
Attribute
Description
NAME
This is the only attribute used by the Argument tag. The NAME attribute is used to indicate an argument, or the name of a parameter, for which you are sending additional information. The parameter's value is entered between the open and close Argument tags.
Listed below are the parameter names most commonly used with eBusiness:
  • SWEApplet
  • SWEDataOnly
  • SWEMethod
  • SWEPassword
  • SWEScreen
  • SWESetNoTempl
  • SWESetMarkup
  • SWESetRowCount
  • SWEStyleSheet
  • SWEUserName
  • SWEView
Table 12 lists the values that are most commonly used with these parameter names.
Example

For each argument name that you include in a command block, you must also indicate a value for the argument. For example, to use the InvokeMethod command, you must indicate which method you want to invoke. Additionally, if the method is one that requires parameters, as is the case with the WriteRecord, you must send those parameters to the SWE. With the WriteRecord method, you need to indicate the view and the applet you are working with. You also need to indicate the column to which you want to write the record, and finally you need to indicate what information you want to write. The following example illustrates how to use Argument tags to send the required parameters for a WriteRecord method:

<?xml version="1.0" encoding="UTF-8"?>

<EXEC PATH="/callcenter/start.swe">

<CMD NAME="SWECmd" VALUE="InvokeMethod">

<ARG NAME="SWEMethod">WriteRecord</ARG>

<ARG NAME="SWEView">Account List View</ARG>

<ARG NAME="SWEApplet">Account List Applet</ARG>

<ARG NAME="Lot Name">65 metal car</ARG>

<ARG NAME="Starting Price">3.00</ARG>

<ARG NAME="SWESetMarkup">XML</ARG>

<ARG NAME="SWEDataOnly">TRUE</ARG>

<ARG NAME="SWESetNoTempl">TRUE</ARG>

</CMD>

</EXEC>hr

Required Arguments

The following three arguments are required for each command block sent to the SWE:

<ARG NAME="SWESetMarkup">XML | HTML | WML</ARG>

<ARG NAME="SWEDataOnly">TRUE | FALSE</ARG>

<ARG NAME="SWESetNoTemp">TRUE</ARG>

Common Name-Value Pairs

Table 12 lists commonly used argument name-value pairs.

Table 12.  ARG Parameter Name-Values Pairs 
Parameter Name
Parameter Values
SWEApplet
Applet name
SWEDataOnly
TRUE
FALSE
SWEMethod
  • DeleteRecord
  • EditRecord
  • ExecuteQuery
  • GoToNextSet
  • GotoPageTab
  • NewRecord
  • NewQuery
  • WriteRecord
SWEPassword
Password
SWEScreen
Screen name
SWESetMarkup
HTML
XML
SWEUserName
User name
SWEView
View name

NOTE:  When determining what arguments to define, it is a good idea to look at the XML Response. The response will include what arguments are expected.


 Siebel Portal Framework Guide
 Published: 09 September 2004