Solrnet - How to initialize instance with basic authentication

2.5k Views Asked by At

It is possible to connect solr instance with basic authentication ?

I have tried with :

Startup.Init<Page>("http://user:mdp@localhost:8080/solr");

But it doesn't work.

have you got a solution ?

Thanks.

2

There are 2 best solutions below

0
On BEST ANSWER

Implement a IHttpWebRequestFactory that returns an authenticated web request. See http://code.google.com/p/solrnet/issues/detail?id=66

0
On

Try this

string solrUser = "user"; // replace with your credentials
string solrPwd = "mdp"; // replace with your credentials

var connection = new SolrConnection("http://localhost:8080/solr")
            {
                HttpWebRequestFactory = new HttpWebAdapters.BasicAuthHttpWebRequestFactory(solrUser, solrPwd)
            };

Startup.Init<Page>(connection);