BugNET

Open source issue tracking & project management

Forums

HomeHomeSupportSupportGeneral SupportGeneral SupportProblem with other .NET applications on same server as BugNETProblem with other .NET applications on same server as BugNET
Previous
 
Next
New Post
4/3/2009 7:28 AM
 

Since I have installed BugNET, we now cannot run any other web applications that we have on the same server using .NET security.

I get the following error in my other application:

Configuration Error

Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.

Parser Error Message: The connection name 'LocalSqlServer' was not found in the applications configuration or the connection string is empty.

 
New Post
4/3/2009 8:24 AM
 

After doing a little digging and meeting with the developer of the other web application, the solution is to make sure you add a "role manager" item to the system.web section of the web.config in the root directory of your BugNet installation as follows:

    <roleManager>
      <providers>
        <remove name="AspNetSqlRoleProvider" />
        <add name="AspNetSqlRoleProvider" connectionStringName="LocalSqlServer" applicationName="/" type="System.Web.Security.SqlRoleProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
      </providers>
    </roleManager>

Now both apps are happy on the same server using different databases for their .NET security (the other app referring to a remote SQL DB and BugNET accessing a local instance of SQL).

 

 
Previous
 
Next
HomeHomeSupportSupportGeneral SupportGeneral SupportProblem with other .NET applications on same server as BugNETProblem with other .NET applications on same server as BugNET


Forum Policy

These Discussion Forums are dedicated to the discussion of the BugNET issue tracker.

For the benefit of the community and to protect the integrity of the project, please observe the following posting guidelines:
1. No Advertising.
2. No Flaming or Trolling.
3. No Profanity, Racism, or Prejudice.
4. Site Moderators have the final word on approving/removing a thread or post or comment.
5. English language posting only, please.