How do I set the proxy settings when using the K2 Spider Com/Java Object API?
The NetSetting class controls all aspects of network settings related to web crawling/indexing, including the proxy settings. The options related to proxy setting are: hostName, portNum, userName, password, and noProxyArray. This class is set within the IdxJobInfoArguments. For example: myIndJobInfoArg = new IdxJobInfoArguments myIndJobInfoArg.netSetting.hostName = “MyProxyServerName” myIndJobInfoArg.netSetting.portNum = 8080 The retry, password, and delay options are also used in conjunction with the Proxy server. See the NetSetting class in the VIndex Javadoc.