Previous     Contents     Index     Next     
BuyerXpert/SellerXpert 4.1 (BuyerXpert SP3) Administrator's Guide



Chapter 12       Administering Configuration Files


The types of configuration files discussed in this appendix are:



Master Configuration File

The master configuration file of BuyerXpert/SellerXpert, master.ntv, can be found in the following locations:

APPS/com/iplanet/buyer/config
APPS/com/iplanet/buyer/admin/config


Note The name and location of the master.ntv file cannot be changed.



Both framework and application configuration information exists as a set of NTV structures (sections) in the master.ntv file. The sections are called:

  • Repository

  • Messages

  • Codes

  • AppInfo

  • Data model

Each of these structures is made up of one of several files residing in app-root/AppName/config.

The set of NTV files making up configuration the NTV files is determined by the following syntax in the master configuration file:

NTV {
   "repository" StrArr [ "rep_common.ntv", "rep_oms.ntv", "rep_catalog.ntv" ],
   "messages" StrArr [ "/ecommerce/arch/config/arch_msg.ntv", "msg.ntv",
"msg_oms.ntv" ],
   "codes" Str "codes.ntv",
   "appInfo" Str "appInfo.ntv"
   }

This master file says that the repository is the result of merging of three NTV files, as well as the message NTV file. A file name like rep_common.ntv is relative to the application's configuration directory, which is app-root/appName/config, whereas an absolute path starting with / (slash) is relative to app-root. Since every AppName/config directory can contain multiple subdirectories, one for each supported locale, there should be a master.ntv file in each of them.

Sometimes it is helpful to have more than one configuration for a single application. For example, servlets developed exclusively for testing purposes may require special configuration (such as repository entries) which are not necessary for the real application. This is solved by having multiple master files; master.ntv for the real application configuration and master_test.ntv for testing.

To command the test servlet to use the test configuration, pass an additional URL parameter:

__Cfg=test


Note This value is kept in session data, so it is enough to pass it only once per session.



The extends and defaults attributes allowing you to specify inheritance relationships across NTV entries are supported for all configuration NTVs. Moreover, the semantics of extends is expanded so that cross-level inheritance is now possible. For example, the following NTV structure will be expanded so that Node3 will inherit Attr1 and Node4 will inherit Attr2.

NTV   {
   "Node1" NTV {
      "Attr1" Str "Value1"
   },
   "Node2" NTV {
      "Node3" NTV {
         "extends" Str ".Node1" // starts with "." meaning relative to the root
      },
      "Node4" NTV {
         "extends" Str "A.B" // relative to the current level
      },
      "A" NTV {
         "B" NTV {
            "Attr2" Str "Value2"
         }
      }
   }
   }


When specified together, the extends attribute is processed before defaults. And file mergers (specified by master.ntv) are done before inheritance relationships are processed.

In the master.ntv file, the names of the different sections (repository, messages, and so on) cannot be changed. The ordering of the sections is not relevant.

  1. The repository section lists all the DOR (Data Object Repository) files. The DOR files define the mapping between POF objects and Business Objects. The DOR files also act as a repository for UI elements such as text boxes, list boxes, and so on. More information on DOR files follows.

  2. The messages section lists all the files that contain messages that get displayed in the user interface. More information on the messages files follows.

  3. The codes section lists all the codes files. More information on the codes files follows.

  4. The appInfo section lists all the configuration information for the different modules as well as the configuration information for the application itself. The application information is in a file called buyerInfo.ntv, which has to be the last in the list of appInfo files. This is to ensure that the entries in buyerInfo.ntv override any duplicate entries in the module-specific configuration files.

  5. The data model section lists datamodel files. The data model specifies the types of POFs available for use by BuyerXpert/SellerXpert. It also specifies the mapping of the persistent objects to the data source schema.



Application Info Files

The application information (appInfo) files are used by the different components to store configuration information. Most of this information cannot be changed.

For example, the order management system stores the criteria for splitting a requisition into purchase orders in the lguConfig.ntv file. The information in this file cannot be changed. However, xdoc stores some information in the following file, which is configurable:

ias/APPS/com/iplanet/buyer/config/xdoc/xdocinfo.ntv

Some of the appInfo files that you will be configuring include:


buyerInfo.ntv

The most important appInfo file is buyerInfo.ntv. This file deserves more explanation, because it contains application configuration information with which the administrator has to be familiar.

Here is how a sample buyerInfo.ntv looks:

NTV-ASCII {

"default_locale" Str "en/US",

"on_auth_error" Str "NonAuthTemplate.jsp",

"log" NTV {

"locale" Str "en/US",

"default" NTV {

"active" Bool "true",

"reporter" NTVArr [

{

"name" Str "printout",

},

],

"filter" NTVArr [

{

"module" Str "",

"severity" Int "100"

},

],

}

},

"trace" NTV {

"locale" Str "en/US",

"default" NTV {

"active" Bool "false",

"params_for_exceptions" Bool "true", // exception params in log file

"stack_for_exceptions" Bool "true", // stack trace in log file

"stack_top_ignore" StrArr [ "CXDebug.", "CXReporting." ],

"stack_bottom_cut" StrArr [ "BeanLogic.execute", "CXBaseServlet.do" ],

"reporter" NTVArr [

{

"name" Str "printout",

},

],

"filter" NTVArr [

{

"module" Str "",

"severity" Int "100"

},

],

}, // End of default message_type

"perf_trace" NTV {

"active" Bool "false", // disabled for now. will enable later.

"params_for_exceptions" Bool "true", // exception params in log file

"stack_for_exceptions" Bool "true", // stack trace in log file

"stack_top_ignore" StrArr [ "CXDebug.", "CXReporting." ],

"stack_bottom_cut" StrArr [ "BeanLogic.execute", "CXBaseServlet.do" ],

"reporter" NTVArr [

{

"name" Str "printout",

},

],

"filter" NTVArr [

{

"module" Str "",

"severity" Int "100"

},

],

}, // End of default message_type

},

"data_sources" NTV {

"pof_jdbc" NTV {

"type" Str "jdbc",

"data_source" Str "jdbc/default",

"user_name" Str "mangesh",

"password" Str "mangesh",

"tx_source" Str "pof_jdbc_tx"

},

"pof_jdbc_tx" NTV {

"type" Str "jdbc",

"data_source" Str "jdbc/default_tx",

"user_name" Str "mangesh",

"password" Str "mangesh",

},

"pof_ldap" NTV {

"data_source" Str "pinevalley",

"type" Str "ldap",

"port"Int "22222",

"user_name" Str "cn=Directory Manager",

"password" Str "adminadmin",

"max_conn_in_pool" Int "500",

"tx_source" Str "pof_ldap"

},

"attr_server" NTV { // this section is to overwrite the

// default attribute server connection defined

// in /ecommerce/attrsvr/config/appinfo

// uncomment out the following for changes

// apply to your environment

"data_source" Str "jdbc/rules", // use separate connection for performance

// reasons

// "data_source" Str "jdbc/default",

"user_name" Str "mangesh",

"password" Str "mangesh",

"tx_source" Str "attr_server_tx",

"optimizer_max_permutations" Int "1000"

},

"attr_server_tx" NTV { // this section is to overwrite the

// default attribute server connection defined

// in /ecommerce/attrsvr/config/appinfo

// uncomment out the following for changes

// apply to your environment

"data_source" Str "jdbc/rules_tx", // use separate connection for performance

// reasons

// "data_source" Str "jdbc/default",

"user_name" Str "mangesh",

"password" Str "mangesh",

},

},

"attr_server" NTV { // this section is to overwrite the

// default attribute server schema prefix

// in /ecommerce/attrsvr/config/appinfo

// uncomment out the following for changes

// apply to your environment

"prefix" Str "BX40_"

},

"object_space" NTV {

"data_sources" NTV {

"pof_jdbc" NTV {

},

"pof_ldap" NTV {

"root_dn" Str "o=iplanet.com",

},

},

},

"data_source_access" Str "com.iplanet.ecommerce.membership.util.AuthDataSourceAccess"

}

Some appInfo entries are reserved for use by the framework:

  • on_auth_error (String)—A name of the JSP template to be used for displaying an appropriate message when all the user authentication information is lost (this can happen when a user session expires). The value of this attribute could also be an absolute URL of a servlet. In this case, this servlet will be redirected when an authentication problem occurs.

  • log (NTV)—Settings related to logging (the default reporting mechanism, the logging locale and message filters). These settings control the behavior of the CXReporting.report method.

  • trace (NTV)—Parameters related to tracing (the trace stream definition, message filters and settings defining the volume of information directed to the trace stream). This entry controls the behavior of the CXDebug.trace method.

  • data_sources (NTV)—Configuration for data sources used by the application.

  • object_space (NTV)—Additional configuration for data sources used by POF.

  • data_source_access (Str)—The fully qualified name of the Java class performing application-specific connection management. This class should be derived from com.netscape.ecommerce.arch.CXDataSourceAccess.

  • attr_server (NTV)—Data needed to instantiate an attribute server. This NTV contains the following values:

    • data_source (String)—The name of the data source (should be configured inside data_sources) containing attribute server data.

    • prefix (String)—Specifies a set of attribute server tables. (Multiple sets can reside in the same database. They are differentiated by this prefix.)

The datasources section lists the data stores that will be used by the application. The RDBMS datasources have to be registered with the Application Server using the resreg utility provided by iAS.

The datasource format is as follows:

DataSources := "data_sources" NTV { <DataSourceStanzas> }

DataSourceStanzas := "<name>" NTV {

    "type" Str "<DataSourceType>",

    "data_source" Str "<dataSourceName>",

   [ "user_name" Str "<jdbcUserName>", ]

   [ "password" Str "<jdbcPassword>", ]

    [ "port" Int "<ldapPort>", ]

   }[ , <DataSourceStanzas> ]

   DataSourceType := jdbc | ldap

Details related to the data_sources, object_space and data_source_access entries can be found in the POF documentation.

To avoid name collisions, each functional module is given a subtree in the appInfo NTV, configuration data specific to the module should be placed in this subtree. For example:

NTV {

   "oms" NTV {

      // OMS config data

   }

   "catalog" NTV {

      // Catalog config data

   }

      ...

   }


Tracing-Related Settings

The attributes mentioned in this section are specified inside the trace entry of the appInfo NTV. All attributes are set on the per message type basis. Namely, the trace entry typically looks like the following:

"log" NTV {

   "locale" Str "en",

   "perf_trace" NTV {

      // settings for the "perf_trace" message type

      "active" ...

      "reporter" ...

      "filter" ...

      ...

   },

   "default" NTV {

      // settings for the "default" message type

      "active" ...

      "reporter" ...

      "filter" ...

      ...

   }

}

The active, reporter and filter attributes have the same syntax and semantics as they have inside the log entry. There are also other attributes defining the volume of information directed to the trace stream:

  • params_for_exceptions (boolean)—If set to true and an instance of CXException is passed to CXDebug.trace, an NTV containing exception parameters is written to the trace stream.

  • stack_for_exception (boolean)—If set to true and an instance of Throwable is passed to CXDebug.trace, its stack trace is written to the stream.

  • stack_for_all (boolean)—Like the above, but the stack trace is written for all calls of the trace method (even if the object passed is not the exception. In this case, the stack trace relates to the point at which the method is called).

  • stack_top_only (boolean)—If set to true, only the first (topmost) line of the stack trace is printed.

  • stack_top_ignore (StrArr)—This attribute is used to reduce the amount of unnecessary information placed to the trace stream. When a stack trace is printed, its topmost lines containing either element of this array as a substring are suppressed. The usual value is ["CXDebug.", "CXReporting."].

  • stack_bottom_cut (StrArr)—This attribute serves the same purpose as the one above. If a line of a stack trace contains either element of this array, this line as well as all lines below it are suppressed. The usual value is ["BeanLogic.execute", "CXBaseServlet.do"].

The filter attribute is mostly the same as inside the log entry. The difference is that it is possible to specify volume settings (except stack_top_ignore and stack_bottom_cut) on the per filter element basis. For example, the following filter element is prescribed to write out exception parameters for all errors of the catalog module:

{

   "severity" Int "10",

   "module" Str "catalog",

   "params_for_exceptions" Bool "true"

}

Per-element volume settings take precedence over the common ones. If a tracing message meets multiple filter conditions, the message is printed out as if their volume settings were united.


mail.ntv File

The ias/APPS/com/iplanet/ecommerce/workflow/config/mail.ntv file is listed below:

NTV-ASCII {

   "WFMailSetting" NTV {

   "sender" Str "admin",

   "smtphost" Str "sumith.red.iplanet.com",

},

}

The sender should contain a valid user ID and smtphost should contain a valid smtp host name. These entries are used to form an email address as follows: sender@smtphost.

This email address is used for sending email notifications.


xdocinfo.ntv File

The ias/APPS/com/iplanet/buyer/config/xdoc/xdocinfo.ntv file is listed below:

NTV-ASCII {

"defReporter" NTV {

   "reporter" Str "naslog"

},

"xdoc_dir" Str "/u/sridatta/map",

   "submit_to_ecx_script_850" Str "submitToECX_850.sh",

   "submit_to_ecx_script_860" Str "submitToECX_860.sh",

   "submit_timecard_to_ecx_script" Str "/u/akhil/bx40/timecards/ecx/submitTimecardToECX.sh",

   "timecard_receiver" Str "legacyTC", //

   "timecard_sender" Str "buyerTC", //

   "timecard_filetype" Str "timecard",

   "timecard_loc" Str "/tmp",

   "timecard_file" Str "timecard.xml",

"xdoc_archive_dir" Str "/tmp",

"xdocMailSetting" NTV {

"sender" Str "BUYERXPERT",

"smtphost" Str "sunrise.red.iplanet.com",

"subject" Str "Status change in BuyerXpert",

"url" Str "http://jackiel2:8080/NASApp/buyer/"

"cc" Str "jackiel@netscape.com"

"status_message" Str "BuyerXpert status change. Please contact your admin"

},

"xdocMessages" NTV {

"inbound_error_message" Str "Error processing the inbound request. Please contact your

   administrator",

"po_transmission_failure" Str "Transmission of the PO failed. Please contact your

   administrator",

"cancel_transmission_failure" Str "Transmission of the PO cancellation failed. Please

   contact your administrator"

},

}

There is a script that configures xdoc for outbound documents. Run the script:

   IAS-ROOT/buyer/sample_data/xdoc/scripts/config_xdoc.pl

This script will do the necessary updates to the preceding configuration file.


omsServiceInfo.ntv File

The ias/APPS/com/iplanet/buyer/oms/omsServiceInfo.ntv file is listed below:

NTV-ASCII

{

   "file_attachement" NTV

   {

    //** com/iplanet/buyer/attachment is a link entry of "/tmp"

    directory and should reside at web server docs directory

   "file_system_entry" Str "/tmp",

   "web_entry_link" Str "com/iplanet/buyer/attachment"

   },

}

The "file_system_entry" specifies the physical location where attachments for notes reside. This value is configurable.


reportsInfo.ntv File

If you have the Actuate server running on one machine and BuyerXpert/SellerXpert and the Oracle instance running on another machine, you need modify Acutate_Path to point to a running Actuate server.

To do this:

  1. Go to the IAS_HOME/buyer/buyer/config/reports directory.

  2. Edit the reportsInfo.ntv file by modifying Actuate_Path to point to a running Actuate server. For example:

       http://colonial.red.iplanet.com:5050/acweb/colonial

  3. Verify that linkto is pointing to your BuyerXpert/SellerXpert URL.

  4. Log into the machine that is running the Actuate server and add the Oracle instance that the client machine points to in the tnsnames.ora file.

  5. Create a file, such as bx_input.txt, that contains the user name, password, and ORACLE_SID that BuyerXpert/SellerXpert is using on the client machine.

  6. In the reportsInfo.ntv file, enter this file in the actuate_login field.

  7. Restart the iPlanet Application Server:

    1. ./KIVAes.sh stop

    2. ./KIVAes.sh start


omsInfo.ntv File

The order management NTV file specifies the number of requisitions and timecards to be displayed per page. For example, on the Track screen.

The off-catalog NTV file is for the off catalog screen items. It specifies whether or not the off-catalog screen is optional, the default value, and the validation model.

By setting the ShowCheckoutConfirmation to False, the Confirm Checkout screen is bypassed.

The reqState NTV file specifies the display strings that correspond to the states of a requisition. For example, a requisition state will be displayed at Pending Approval if the status of the requisition is PENDING_APPROVAL.

The ias/APPS/com/iplanet/buyer/oms/omsInfo.ntv file is listed below:

NTV-ASCII {
"NonAuthTemplate" Str "NonAuthTemplate.jsp",
"default_uom" Str "each",
"defReporter" NTV {
"reporter" Str "Printout"
},
"oms" NTV {
                  "ordersPerPage" Int "5",
                  "requisitionsPerPage" Int "5",
                  "timecardsPerPage" Int "2",
},
"offCatalog" NTV {
"defaultUnit" Str "each",
"defaultQty" Dec "1",
},
"NonCatalog" NTV {
"Product Code" NTV {
"optional" Bool "true",
"default" Str "",
},
"Product Description" NTV {
"optional" Bool "false",
"default" Str "",
},
"Commodity Code" NTV {
"optional" Bool "true",
"validation" Bool "false",
"default" Str "",
},
"Supplier" NTV {
"optional" Bool "true",
"validation" Bool "false",
"default" Str "other",
},
"Quantity" NTV {
"optional" Bool "true",
"default" Dec "1",
},
"UOM" NTV {
"validation" Bool "false",
"default" Str "each",
},
},
"HostCompany" Str "Mercury Enterprises",
"UnknownCompany" Str " Unknown Seller Company ",
"MaxLength" Int "20",
"ReqNamePrefix" Str "Req - ",
"CopyString" Str "Copy of ",
"ReorderString" Str "Reorder of ",
"TemplateString" Str "Template - ",
            "Req" Str "Requisition",
"Template" Str "Template",
"PO" Str "Purchase Order",
"ANY" Str "Any",
"ALL" Str "All",
"ShowCheckoutConfirmation" Bool "true",
"reqState" NTV {
"-"                                                            Str "All",
                  "CREATED"                                          Str "Created",
                  "PENDING_APPROVAL"                                          Str "Pending Approval",
                  "APPROVED"                                          Str "Approved",
                  "DECLINED"                                          Str "Declined",
                  "WITHDRAWN"                                          Str "Withdrawn",
                  "CANCELLATION_TRANSMITTED"                                          Str "Cancel Transmitted",
"PARTIALLY_CANCELLATION_TRANSMITTED"                                                                  Str "Partially Cancellation Transmitted",
"FAILED_CANCEL_TRANSMISSION"                                                            Str "Failed Cancel Transmission",
"PARTIAL_ACKNOWLEDGED"                                                      Str "Partially Acknowledged",
"CANCELLED"                                                      Str "Cancelled",
"CANCEL_REJECTED"                                                      Str "Cancel Rejected",
"ORDER_REQUESTED"                                                      Str "Order Requested",
"ORDER_TRANSMITTED"                                                      Str "Order Transmitted",
"FAILED_ORDER_TRANSMISSION"                                                      Str "Failed Order Transmission",
"PARTIAL_RECEIVED"                                                      Str "Partially Received",
"RECEIVED"                                                      Str "Received",
"PARTIAL_INVOICED"                                                      Str "Partially Invoiced",
"INVOICED"                                                      Str "Invoiced",
"PARTIAL_SHIPPED"                                                      Str "Partially Shipped",
"SHIPPED"                                                      Str "Shipped",
"CLOSED"                                                      Str "Closed",
"ORDER_REJECTED"                                                      Str "Order Rejected",
"ACKNOWLEDGED"                                                      Str "Acknowledged",
"DELIVERED"                                                      Str "Delivered",
},
"defaultUnit" Str "each",
}


Data Model Files



This section describes the data/object configuration files, which are dataModel files and DOR (Data Object Repository) files.

The configuration that you would have to do in the data model is related to xdoc. When xdoc is configured for non-OBI, then there are some custom properties in the dataModel that determine which attributes of a purchase order are to be written out for sending to the vendor. Here is an example of this custom attribute:

"order_header" NTV {

"class_name" Str "order_header",

"attributes" NTV {

"order_id" NTV {

"attr_name" Str "order_id",

"schemas" NTVArr [

{

"schema" Str "order_header",

"schema_attr" Str "order_id"

}

],

"custom_props" NTV {

"PurchaseOrder" Bool "false"

},

},

   "need_by_date" NTV {

"attr_name" Str "need_by_date",

"schemas" NTVArr [

{

"schema" Str "order_header",

"schema_attr" Str "need_by_date"

}

],

   "custom_props" NTV {

   "PurchaseOrder" Bool "true"

   },

   },

   .....

}

The above example shows that the order_id attribute of a requisition should not be written out while writing out an outbound purchase order, whereas the "need_by_date" needs to be written out.

The above example shows how attributes of a given object can be selectively written out during xdoc. You can also specify the "PurchaseOrder" custom_property for relationships. This allows us to say "if line_group is written out then line objects associated with line_group also have to be written out." Of course, while writing out the line object, the "PurchaseOrder" custom property for each attribute of the line_group will be examined. Only those attributes which have "PurchaseOrder" = true will be written out.

An example of the custom_prop for a relationship is given below:

"line_group_lines" NTV {

"source" NTV {

"data_object" Str "line_group",

"access_name" Str "lines",

"cardinality" Str "1..n",

"custom_props" NTV {

"clone" Bool "true",

"PurchaseOrder" Bool "true",

"OrderChange" Bool "true",

},

"assoc_rel" Str "line_group_lg_line_assocs",

"assoc_role" Str "source",

},

"target" NTV {

"data_object" Str "line",

"access_name" Str "line_groups",

"cardinality" Str "1..n",

"assoc_rel" Str "line_lg_line_assocs",

"assoc_role" Str "source",

},

},

The PurchaseOrder custom property is examined while writing out purchase orders sent to the vendor. Similarly, there is another custom property called OrderChange which is used to determine the objects and attributes that are to be sent to a vendor for an "Order Cancellation Request."



DOR Files



The repository is an NTV structure (physically existing as a set of files in app-root/AppName/config) that defines categories of data items that can be input and/or output by the application. Each category is represented by a single entry that looks like the following:

"productQuantity" NTV {

"datatype" Str "Int",

"type" Str "Text",

...... optional attributes go here ....

}

In this example:

  • "productQuantity" is a data item name (which can be referred to by PC scriptlets).

  • "datatype" is a mandatory attribute defining the domain of valid values and the way of transforming those values from native format to external representation and vice versa.

  • "Int" means the domain of integer numbers. Native type int and the standard conversions between integers and strings.

  • "type" is another mandatory attribute, defining how to construct HTML UI controls through which you can enter a value of the data item.

  • "Text" denotes the HTML input field as a way of entering values.

In general, the roles of "type" and "datatype" can be described as follows:

At page generation time: The datatype is used to convert the default value of a data element from its native format to external representation. The type is used to build HTML UI element(s) so that their initial appearance corresponds to the external representation.

At form submission time: The Web browser, Web server and iAS infrastructure guarantee that the external representation of user input is delivered to the application.The datatype is used to validate the external representation delivered and to convert it back to native format. Another responsibility of the datatype is generating a descriptive error message provided the user input is not valid.

Type and datatype are fully orthogonal. UI elements that are generated based on types deal with external representations only and have nothing to do with the native data formats, which are taken care of by datatypes.

The set of possible types and datatypes is not something hardcoded in the CX framework. Indeed, the CX 4.0 architecture provides a relatively easy way to introduce new types and datatypes.

Business objects are also reflected in the repository (hence its name, Data and Object repository). For a simplified business object user having two attributes (Name and Password), the repository entry looks like the following:

"User" NTV {

   "Name" NTV {

      "datatype" Str "String",

      "type" Str "Text",

      "min" Int "3",

      "label" Str "user name"

   },

   "Password" NTV {

      "datatype" Str "String",

      "type" Str "Text",

      "password" Bool "true",

      "label" Str "password"

   }

}



Customization/Localization Files



This section describes the customization/localization configuration files, which are messages files and codes files.


Messages File

A typical messages.ntv file looks similar to the following:

NTV-ASCII {

"Adjustment:NoAttr" Str "No Attributes received by import for Adjustment.",

"Adjustment:OperationFailed" Str "Ajustment import operation failed.",

   ....

}

As part of any localization effort, the message itself can be customized. The message code (for example, "Adjustment:NoAttr") should not be changed.


Codes File

The codes file allows you to define static lists of data which display in pull-down lists in the user interface. A pull-down list allows users to choose an item from the list rather than typing it in. Typical lists are all states or all countries.

The following codes.ntv file lists the states and their abbreviations as well as the countries and their abbreviations.


Note It is important to use the correct state and country abbreviations when mapping for pull-down lists or the Import utility.



NTV-ASCII {

"us_state" NTV {

"AL" Str "Alabama",

"AK" Str "Alaska",

"AS" Str "American Samoa",

"AZ" Str "Arizona",

"AR" Str "Arkansas",

"AA" Str "Armed Forces Americas",

"AE" Str "Armed Forces Europe",

"AP" Str "Armed Forces Pacific",

"CA" Str "California",

"CO" Str "Colorado",

"CT" Str "Connecticut",

"DE" Str "Delaware",

"DC" Str "District Of Columbia",

"FL" Str "Florida",

"GA" Str "Georgia",

"GU" Str "Guam",

"HI" Str "Hawaii",

"ID" Str "Idaho",

"IL" Str "Illinois",

"IN" Str "Indiana",

"IA" Str "Iowa",

"KS" Str "Kansas",

"KY" Str "Kentucky",

"LA" Str "Louisiana",

"ME" Str "Maine",

"MD" Str "Maryland",

"MA" Str "Massachusetts",

"MI" Str "Michigan",

"MN" Str "Minnesota",

"MS" Str "Mississippi",

"MO" Str "Missouri",

"MT" Str "Montana",

"NE" Str "Nebraska",

"NV" Str "Nevada",

"NH" Str "New Hampshire",

"NJ" Str "New Jersey",

"NM" Str "New Mexico",

"NY" Str "New York",

"NC" Str "North Carolina",

"ND" Str "North Dakota",

"MP" Str "Northern Mariana I",

"OH" Str "Ohio",

"OK" Str "Oklahoma",

"OR" Str "Oregon",

"PW" Str "Palau",

"PA" Str "Pennsylvania",

"PR" Str "Puerto Rico",

"RI" Str "Rhode Island",

"SC" Str "South Carolina",

"SD" Str "South Dakota",

"TN" Str "Tennessee",

"TX" Str "Texas",

"UT" Str "Utah",

"VT" Str "Vermont",

"VI" Str "Virgin Islands",

"VA" Str "Virginia",

"WA" Str "Washington",

"WV" Str "West Virginia",

"WI" Str "Wisconsin",

"WY" Str "Wyoming"

}

"country" NTV {

"AD" Str "Andorre",

"AE" Str "United Arab Emirates",

"AF" Str "Afghanistan",

"AG" Str "Antigua and Barbuda",

"AI" Str "Anguilla",

"AL" Str "Albania",

"AM" Str "Armenia",

"AN" Str "Netherlands Antilles",

"AO" Str "Angola",

"AQ" Str "Antarctica",

"AR" Str "Argentina",

"AS" Str "American Samoa",

"AT" Str "Austria",

"AU" Str "Australia",

"AW" Str "Aruba",

"AZ" Str "Azerbaijan",

"BA" Str "Bosnia and Herzegovina",

"BB" Str "Barbados",

"BD" Str "Bangladesh",

"BE" Str "Belgium",

"BF" Str "Burkina Faso",

"BG" Str "Bulgaria",

"BH" Str "Bahrain",

"BI" Str "Burundi",

"BJ" Str "Benin",

"BM" Str "Bermuda",

"BN" Str "Brunei",

"BO" Str "Bolivia",

"BR" Str "Brazil",

"BS" Str "Bahamas",

"BT" Str "Bhutan",

"BV" Str "Bouvet Island",

"BW" Str "Botswana",

"BY" Str "Belarus",

"BZ" Str "Belize",

"CA" Str "Canada",

"CC" Str "Cocos Islands",

"CF" Str "Central Africa",

"CG" Str "Congo",

"CH" Str "Schweiz",

"CI" Str "Cote d'Ivoire",

"CK" Str "Cook Islands",

"CL" Str "Chile",

"CM" Str "Cameroon",

"CN" Str "China",

"CO" Str "Colombia",

"CR" Str "Costa Rica",

"CS" Str "Czechoslovakia",

"CU" Str "Cuba",

"CV" Str "Cape Verde",

"CX" Str "Christmas Island",

"CY" Str "Cyprus",

"CZ" Str "Czech Republic",

"DD" Str "Deutschland",

"DE" Str "Deutschland",

"DJ" Str "Djibouti",

"DK" Str "Denmark",

"DM" Str "Dominica",

"DO" Str "Dominican Republic",

"DZ" Str "Algeria - Jaza'ir",

"EC" Str "Ecuador",

"EE" Str "Estonia - Eesti",

"EG" Str "Egypt - Misr",

"EH" Str "Western Sahara",

"ER" Str "Eritrea",

"ES" Str "Spain-Espana",

"ET" Str "Ethiopia",

"FI" Str "Finland - Suomi",

"FJ" Str "Fiji",

"FK" Str "Falkland Islands",

"FM" Str "Micronesia",

"FO" Str "Faroe Islands",

"FR" Str "France",

"FX" Str "Metropolitan France",

"GA" Str "Gabon",

"GB" Str "United Kingdom",

"GD" Str "Grenada",

"GE" Str "Georgia",

"GF" Str "French Guiana",

"GH" Str "Ghana",

"GI" Str "Gibraltar",

"GL" Str "Greenland",

"GM" Str "The Gambia",

"GN" Str "Guinea",

"GP" Str "Guadaloupe",

"GQ" Str "Equatorial Guinea",

"GR" Str "Greece-Ellas",

"GS" Str "South Georgia",

"GT" Str "Guatemala",

"GU" Str "Guam",

"GW" Str "Guinea-Bissau - Guine-Bissau",

"GY" Str "Guyana",

"HK" Str "Hong Kong (UK)",

"HM" Str "Heard Island and McDonald Islands (Australia)",

"HN" Str "Honduras",

"HR" Str "Croatia - Hrvatska",

"HT" Str "Haiti",

"HU" Str "Hungary - Magyarorszag",

"ID" Str "Indonesia",

"IE" Str "Ireland - Éire",

"IL" Str "Israel - Yisra'el",

"IN" Str "India - Bharat",

"IO" Str "Indian Ocean Territory (UK)",

"IQ" Str "Iraq",

"IR" Str "Iran",

"IS" Str "Island - Iceland",

"IT" Str "Italy - Italia",

"JM" Str "Jamaica",

"JO" Str "Jordan - Urdun",

"JP" Str "Japan",

"KE" Str "Kenya",

"KG" Str "Kyrgyzstan",

"KH" Str "Cambodia - Kampuchea",

"KI" Str "Kiribati",

"KM" Str "Comoros - Comores",

"KN" Str "Saint Kitts and Nevis",

"KP" Str "Korea - Choson",

"KR" Str "Korea",

"KW" Str "Kuwait - Kuwayt",

"KY" Str "Cayman Islands",

"KZ" Str "Kazakhstan",

"LA" Str "Laos",

"LB" Str "Lebanon - Lubnaniyah",

"LC" Str "Saint Lucia",

"LI" Str "Liechtenstein",

"LK" Str "Sri Lanka",

"LR" Str "Liberia",

"LS" Str "Lesotho",

"LT" Str "Lithuania - Lietuva",

"LU" Str "Luxembourg",

"LV" Str "Latvia - Latvija",

"LY" Str "Libya - Libiya",

"MA" Str "Morocco - Maghrib",

"MC" Str "Monaco",

"MD" Str "Moldova",

"MG" Str "Madagascar",

"MH" Str "Marshall Islands",

"MK" Str "Macedonia - Makedonija",

"ML" Str "Mali",

"MM" Str "Burma - Myanma",

"MN" Str "Mongolia - Mongol Uls",

"MO" Str "Macau",

"MP" Str "Northern Mariana Islands",

"MQ" Str "Martinique (France)",

"MR" Str "Mauritania - Muritaniyah",

"MS" Str "Montserrat",

"MT" Str "Malta",

"MU" Str "Mauritius",

"MV" Str "Maldives",

"MW" Str "Malawi",

"MX" Str "Mexico",

"MY" Str "Malaysia",

"MZ" Str "Mozambique - Mocambique",

"NA" Str "Namibia",

"NC" Str "New Caledonia - Nouvelle-Caledonie",

"NE" Str "Niger",

"NF" Str "Norfolk Island (Australia)",

"NG" Str "Nigeria",

"NI" Str "Nicaragua",

"NL" Str "Netherlands - Nederland",

"NO" Str "Norway -Norge",

"NP" Str "Nepal",

"NR" Str "Nauru",

"NU" Str "Niue",

"NZ" Str "New Zealand",

"OM" Str "Oman - Uman",

"PA" Str "Panama",

"PE" Str "Peru",

"PF" Str "Polynesie Francaise",

"PG" Str "Papua New Guinea",

"PH" Str "Philippines - Pilipinas",

"PK" Str "Pakistan",

"PL" Str "Poland - Polska",

"PM" Str "Saint-Pierre et Miquelon",

"PN" Str "Pitcairn Islands",

"PR" Str "Puerto Rico",

"PT" Str "Portugal",

"PW" Str "Palau - Belau",

"PY" Str "Paraguay",

"QA" Str "Qatar",

"RE" Str "Reunion",

"RO" Str "Romania",

"RU" Str "Russia - Rossiya",

"RW" Str "Rwanda",

"SA" Str "Saudi Arabia",

"SB" Str "Solomon Islands",

"SC" Str "Seychelles",

"SD" Str "Sudan",

"SE" Str "Sweden - Sverige",

"SG" Str "Singapore - Singapura",

"SH" Str "Saint Helena (UK)",

"SI" Str "Slovenia - Slovenija",

"SJ" Str "Svalbard og Jan Mayen",

"SK" Str "Slovakia - Slovensko",

"SL" Str "Sierra Leone",

"SM" Str "San Marino",

"SN" Str "Senegal",

"SO" Str "Somalia",

"SR" Str "Suriname",

"ST" Str "Sao Tome e Principe",

"SU" Str "Soviet Union - Sovietskiy Soyuz",

"SV" Str "El Salvador",

"SY" Str "Syria - Suriyah",

"SZ" Str "Swaziland",

"TC" Str "Turks and Caicos Islands",

"TD" Str "Chad - Tchad",

"TF" Str "Southern and Antarctic Lands",

"TG" Str "Togo",

"TH" Str "Thailand",

"TJ" Str "Tajikistan - Tojikiston",

"TK" Str "Tokelau (New Zealand)",

"TM" Str "Turkmenistan - Tiurkmenostan",

"TN" Str "Tunisia - Tunis",

"TO" Str "Tonga",

"TP" Str "Timor",

"TR" Str "Turkey - Turkiye",

"TT" Str "Trinidad and Tobago",

"TV" Str "Tuvalu",

"TW" Str "Taiwan - T'ai-wan",

"TZ" Str "Tanzania",

"UA" Str "Ukraine - Ukrayina",

"UG" Str "Uganda",

"UM" Str "United States Minor Outlying Islands",

"US" Str "United States of America",

"UY" Str "Uruguay",

"UZ" Str "Uzbekistan - Uzbekiston",

"VA" Str "Holy See",

"VC" Str "Saint Vincent and the Grenadines",

"VE" Str "Venezuela",

"VG" Str "Virgin Islands (UK)",

"VI" Str "Virgin Islands (USA)",

"VN" Str "Vietnam - Viet Nam",

"VU" Str "Vanuatu",

"WF" Str "Wallis et Futuna",

"WS" Str "Samoa",

"YD" Str "Yemen",

"YE" Str "Yemen",

"YT" Str "Mayotte (France)",

"YU" Str "Yugoslavia",

"ZA" Str "South Africa",

"ZM" Str "Zambia",

"ZR" Str "Zaire",

"ZW" Str "Zimbabwe",

},

"searchOption" NTV {

"ALL" Str "Match All Fields",

"ANY" Str "Match Any Field",

},

}


Previous     Contents     Index     Next     
Copyright © 2001 Sun Microsystems, Inc. Some preexisting portions Copyright © 2001 Netscape Communications Corp. All rights reserved.

Last Updated October 08, 2001