Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

riyadh21/MongoDB.Web

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

19 Commits

Repository files navigation

MongoDB.Web

A collection of ASP.NET providers (caching, membership, profiles, roles, session state, web events) for MongoDB.

NuGet Package: http://nuget.org/List/Packages/MongoDB.Web

Configuration

To use MongoDB.Web, add the providers you're interested in to your Web.config file:

<appSettings>
 <add key="MONGOHQ_URL" value="mongodb://localhost/ASPNETDB"/> 
</appSettings>
<system.web>
 <caching>
 <outputCache defaultProvider="MongoDBOutputCache">
 <providers>
 <add name="MongoDBOutputCache" type="MongoDB.Web.Providers.MongoDBOutputCacheProvider"
 connectionString="mongodb://localhost" database="ASPNETDB" collection="OutputCache" />
 </providers>
 </outputCache>
 </caching>
 <healthMonitoring enabled="true">
 <providers>
 <add name="MongoDBWebEventProvider" type="MongoDB.Web.Providers.MongoDBWebEventProvider" bufferMode="Notification"
 connectionString="mongodb://localhost" database="ASPNETDB" collection="WebEvents" />
 </providers>
 <rules>
 <add name="LogAllEvents" eventName="All Events" provider="MongoDBWebEventProvider" />
 </rules>
 </healthMonitoring>
 <membership defaultProvider="MongoDBMembershipProvider">
 <providers>
 <clear />
 <add name="MongoDBMembershipProvider" type="MongoDB.Web.Providers.MongoDBMembershipProvider" applicationName="/"
 appSettingsConnectionStringKey="MONGOHQ_URL" collection="Users"
 enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false"
 maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" />
 </providers>
 </membership>
 <profile defaultProvider="MongoDBProfileProvider" enabled="true">
 <properties>
 <add name="Age" type="Int32"/>
 <add name="Country" type="string"/>
 <add name="Gender" type="string"/>
 </properties>
 <providers>
 <clear/>
 <add name="MongoDBProfileProvider" type="MongoDB.Web.Providers.MongoDBProfileProvider" applicationName="/"
 connectionString="mongodb://localhost" database="ASPNETDB" collection="Profiles" />
 </providers>
 </profile>
 <roleManager enabled="false">
 <providers>
 <clear/>
 <add name="MongoDBRoleProvider" type="MongoDB.Web.Providers.MongoDBRoleProvider" applicationName="/"
 connectionString="mongodb://localhost" database="ASPNETDB" collection="Roles" />
 </providers>
 </roleManager>
 <sessionState mode="Custom" customProvider="MongoDBSessionStateProvider">
 <providers>
 <add name="MongoDBSessionStateProvider" type="MongoDB.Web.Providers.MongoDBSessionStateProvider"
 connectionString="mongodb://localhost" database="ASPNETDB" collection="ASPState" />
 </providers>
 </sessionState>
</system.web>

About

MongoDB.Web is a collection of ASP.NET providers (caching, membership, profiles, roles, session state, web events) for MongoDB.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

Contributors

AltStyle によって変換されたページ (->オリジナル) /