soitgoes / LoveSeat

Bringing CouchDB and .NET little closer
Other
96 stars 50 forks source link

List exception thrown #66

Open ghost opened 8 years ago

ghost commented 8 years ago

This is how I am trying to connect to couchdb instance and fetch a list -

CouchClient cl = new CouchClient("localhost", 5984, "uname", "pwd", false, AuthenticationType.Basic); IListResult ilr = cl.GetDatabase("db").List("l", "v", null, "d");

This throws a null reference exception. There is also not much to debug to know what is the issue here.

Instead when I execute the list via Browser, I get proper response. Is this the issue with LoveSeat or do I need to do anything else here to call a list.

http://localhost:5984/db/_design/d/_list/l/v

soitgoes commented 8 years ago

List and Shows are not implemented at the moment

ghost commented 8 years ago

Are there any plans in the future? I moved back to doing HTTP calls directly.