Connect to ElasticSearch .net

I am trying to connect at elasticsearch server using .net and i can’t pass login step.
I use system.web, system.net, newtonsoft.json. I don’t have internet connection to download nest or elasticsearch.net.
I tried to acces the url using web.client but i had 401 error so i used this

string username = "your";
string password = "password";
HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http:Link:elasticPort");
StreamWriter writer = new StreamWriter(request.GetRequestStream(), Encoding.ASCII);
writer.Write("nick=" + username + "&password=" + password);
}

HttpWebResponse response = (HttpWebResponse)request.GetResponse();

But i have this error:

System.Net.ProtocolViolationException:Cannot send a content-body with this verb-type

The main target is to connect to elasticSearch to get access at indexes.
Is there a better solution to connect?

Answers:

Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.

Method 1

I found the solution, a webclient object, with credentials property like:

Webclient client = new webclient();
Client.Credentials = new NetworkCredential(“user”,”passwd”);


All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x