I am setting up Nutch for our intranet. It has sites protected by authentication box. I was advised to use protocol-httpclient and authentication related patches in JIRA. Neither the protocol-httpclient alone nor protocol-httpclient with authentication patch works. I have defined all the properties carefully after including protocol-httpclient in properties.
<property> <name>http.auth.ntlm.username</name> <value>myusername</value> <description> username for http ntlm auth </description> </property> <property> <name>http.auth.ntlm.password</name> <value>mypassword</value> <description> password for http ntlm auth </description> </property> <property> <name>http.auth.ntlm.domain</name> <value>lan.gmu.edu</value> <description> password for http ntlm auth </description> </property> <property> <name>http.auth.ntlm.host</name> <value>gmusearch</value> <description> password for http ntlm auth </description> </property> <property> <name>http.auth.basic.username</name> <value>myusername</value> <description> username for http basic auth </description> </property> <property> <name>http.auth.basic.password</name> <value>mypassword</value> <description> password for http basic auth </description> </property> I can't find any useful information in the debug logs. In a past discussion on Aug 8, I read basic authentication to work. But unfortunately it doesn't work for me. Is there anything else that needs to be done?
