Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

According to the mongodb website, I should be able to connect to a replica set if I just give it one member from the replica set:

"The C# Driver is able to connect to a replica set even if the seed list is incomplete. It will find the primary server even if it is not in the seed list as long as at least one of the servers in the seed list responds (the response will contain the full replica set and the name of the current primary)." http://www.mongodb.org/display/DOCS/CSharp+Driver+Tutorial#CSharpDriverTutorial-Connectionstrings

However, I cannot get my driver to connect if I just give it a secondary member.

This is my current connection statement:

m_server = MongoServer.Create(new MongoServerSettings { ConnectionMode = ConnectionMode.ReplicaSet, Server = new MongoServerAddress(connection) });

The 'connection' variable is: mongodb://servername/?safe=true

I saw this: https://jira.mongodb.org/browse/CSHARP-500, and I did run rs.status(), and did use the correct server name. Any help is appreciated!

share|improve this question

1 Answer

up vote 2 down vote accepted

So, the connection variable is a full connection string, not something to pass to MongoServerAddress. Also, you can specify the connection mode on the connection string as well. Try this:

connection = "mongodb://servername/?safe=true&connect=replicaset";
m_server = MongoServer.Create(connectionString);
share|improve this answer
Yep, that worked! Why does it not work using MongoServerSettings? Bug? – anthv123 Aug 9 '12 at 17:37
No, you weren't using mongo server settings properly, as I noted. The connection string does not go to in a MongoServerAddress. new MongoServerAddress(host) or MongoServerAddress(host, port) is the proper construction. – Craig Wilson Aug 9 '12 at 18:33
Gotcha... I misunderstood that first sentence. Thanks for the help! – anthv123 Aug 9 '12 at 19:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.