USAGE:

   Windows
   -------
      java -cp .;JStandardSamples.jar;lib/* QuoteManager.OptionMonthSample.Main
                [-h <host> -conn <connectionType>] -u <username> -p <password> 
                [-t <type> -s <symbols>]
   Linux
   ------
      java -cp .:JStandardSamples.jar:lib/* QuoteManager.OptionMonthSample.Main
                [-h <host> -conn <connectionType>] -u <username> -p <password> 
                [-t <type> -s <symbols>]

where

   Arg    Value                    Description
   ---    -----                    -----------
   -h     <host>                   Specifies the address to use to connect to the
                                   ICE Data Services network.  
                                   For example: cm*.dataservices.theice.com                                

   -conn <connectionType>          Specifies the type of connection to use with the ICE Data Services
                                   network.  Valid values include:
                                   
                                      0 - SOCKTYPE_LEGACY    Uses a non TLS connection.
                                      1 - SOCKTYPE_TLS       Uses a secure/encrypted socket connection.
                                      2 - SOCKTYPE_TLS_PLUS  Not yet implemented; reserved for future support.
                                   
   -u     <username> (required)    The username for the account entitled to receive 
                                   data from ICE Data Services.

   -p     <password> (required)    The password for the account entitled to receive
                                   data from ICE Data Services.

                                   note: If you do not have an account, please 
                                         contact an ICE Data Services representative.
                                     
   -t     <type>                   Specifies one of the following request types:
                                   
                                      - STOCK_OPTIONS
                                        Indicates the request is for a stock.
                                        The returned data will be limited to the months and 
                                        years available for a given stock.
                                        
                                      - FUTURE_OPTIONS
                                        Indicates the request is for a future.
                                        The returned data will be limited to the months and 
                                        years available for a given future.

   -s     <symbols>                The symbol, or symbols, to use for making the Option 
                                   Month request. A single instrument may be entered, or a 
                                   comma separated list of symbols. Symbols that include a 
                                   space must be enclosed in quotes. 
                                   
                                   Stock Example:
                                   
                                     -s IBM
                                     
                                   Futures Example:
                                   
                                     -s ES
                                     
                                   Multiple Symbols Example:
                                   
                                     -s IBM,AAPL

                                   IMPORTANT: 
                                   You cannot request stocks and futures together.
                                   
Note:  If you do not enter a value for <host>, <type>, or <symbols> the values listed in the
       OptionMonthSample.properties file will be used.  <username> and <password> must be 
       entered at the command line.