// Name & Address Server Properties // TraceLevel enables or disables tracing of server input and output data. // If tracing is enabled, output is to file NASvrTrace.log // Values are 1 to enable, 0 to disable. Tracing will degrade performance, // so it is best used in test environments only. TraceCharSet represents // the character set of the data being traced. Several possible values are // UTF-8, UTF-16, and US-ASCII. See the IANA Charset Registry at // http://www.iana.org/assignments/character-sets for the full set of supported // names. The system default character set will be used if TraceCharSet is not specified. TraceLevel=0 TraceCharSet= // Socket timeout specifies the number of seconds the name/address server will // wait for a parse request before closing the connection. SocketTimeout=180 // ClientThreads specifies the number of threads used to service client connections. // One client connection is made for each database session or slave session if a map // is parallelized. If the number of clients exceeds the number of threads, all clients // will still be serviced as the threads will be shared between clients. ClientThreads // is generally set to the maximum number of clients that will be connected simultaneously. // The number of connected clients will be shown in NASvr.log after a map run. ClientThreads=4 // EnableAdaptorMultithreading specifies whether the service provider adaptor // may be executed concurrently by client threads. The vendor of the adaptor will // specify whether the adaptor is thread safe and allows concurrency. If concurrency // is allowed, better performance will be achieved on multiprocessor hardware. EnableAdaptorMultithreading=false // NAME_ADDR_SVC_CLASS and NAME_ADDR_SVC_CLASSPATH specify the service provider adaptor // class and classpath needed to find the class. Environment variables of the same name // may be set, but these properties will override the environment variables. // The NameAddrSimulator class may be used for demonstration (its outputs are hard coded values). Third party // adaptors must be purchased directly from a third party vendor, and their installation instructions will provide // the values for the service class and classpath. NAME_ADDR_SVC_CLASS=oracle.wh.nas.impl.NameAddrSimulator NAME_ADDR_SVC_CLASSPATH=../../lib/int/nameAddrSimulator.jar // Port specifies the TCP port this server listens on. Port=4040 // EnableDiacriticalconversion specifies whether characters having diacritical marks // should be converted to equivalent characters without the marks. EnableDiacriticalConversion=false