Click here to Skip to main content
15,885,214 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Microsoft.AspNet.FriendlyUrls Pin
Richard Deeming6-Jul-17 1:38
mveRichard Deeming6-Jul-17 1:38 
QuestionHow to associate a role with action from my custom UI Pin
Mou_kol4-Jul-17 4:04
Mou_kol4-Jul-17 4:04 
AnswerRe: How to associate a role with action from my custom UI Pin
F-ES Sitecore4-Jul-17 4:17
professionalF-ES Sitecore4-Jul-17 4:17 
QuestionLDAP Group List for Windows User Pin
Dirk Bahle3-Jul-17 9:56
Dirk Bahle3-Jul-17 9:56 
AnswerRe: LDAP Group List for Windows User Pin
F-ES Sitecore3-Jul-17 23:15
professionalF-ES Sitecore3-Jul-17 23:15 
QuestionGet the query string with parameteres ( parameter value can be change) Pin
Member 44632353-Jul-17 1:35
Member 44632353-Jul-17 1:35 
AnswerRe: Get the query string with parameteres ( parameter value can be change) Pin
Richard Deeming3-Jul-17 1:51
mveRichard Deeming3-Jul-17 1:51 
QuestionMVC Application RoleManager issue after being deployed in Azure Pin
Farhad Eft29-Jun-17 4:54
Farhad Eft29-Jun-17 4:54 
I have an issue with my ASP.NET MVC4 application when I publish it to Azure. The roleManager part is not working and the application returns an error when it reaches to this code in my view:

bool isAdmin = User.IsInRole("admin");

And the error is the following:

A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified)
    
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 
    
    SQLExpress database file auto-creation error: 
    
    The connection string specifies a local Sql Server Express instance using a database location within the application's App_Data directory. The provider attempted to automatically create the application services database because the provider determined that the database does not exist. The following configuration requirements are necessary to successfully check for existence of the application services database and automatically create the application services database:
    
    If the application is running on either Windows 7 or Windows Server 2008R2, special configuration steps are necessary to enable automatic creation of the provider database. Additional information is available at: http://go.microsoft.com/fwlink/?LinkId=160102. If the application's App_Data directory does not already exist, the web server account must have read and write access to the application's directory. This is necessary because the web server account will automatically create the App_Data directory if it does not already exist.
    If the application's App_Data directory already exists, the web server account only requires read and write access to the application's App_Data directory. This is necessary because the web server account will attempt to verify that the Sql Server Express database already exists within the application's App_Data directory. Revoking read access on the App_Data directory from the web server account will prevent the provider from correctly determining if the Sql Server Express database already exists. This will cause an error when the provider attempts to create a duplicate of an already existing database. Write access is required because the web server account's credentials are used when creating the new database.
    Sql Server Express must be installed on the machine.
    The process identity for the web server account must have a local user profile. See the readme document for details on how to create a local user profile for both machine and domain accounts.
    
    
    Source Error: 
    
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
    
    Stack Trace: 
    
    
    [SqlException (0x80131904): A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified)]
       System.Data.SqlClient.SqlInternalConnectionTds..ctor(DbConnectionPoolIdentity identity, SqlConnectionString connectionOptions, SqlCredential credential, Object providerInfo, String newPassword, SecureString newSecurePassword, Boolean redirectedUserInstance, SqlConnectionString userConnectionOptions, SessionData reconnectSessionData, DbConnectionPool pool, String accessToken, Boolean applyTransientFaultHandling) +821
       System.Data.SqlClient.SqlConnectionFactory.CreateConnection(DbConnectionOptions options, DbConnectionPoolKey poolKey, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningConnection, DbConnectionOptions userOptions) +5771923
       System.Data.ProviderBase.DbConnectionFactory.CreateNonPooledConnection(DbConnection owningConnection, DbConnectionPoolGroup poolGroup, DbConnectionOptions userOptions) +38
       System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, DbConnectionInternal& connection) +507
       System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions) +154
       System.Data.ProviderBase.DbConnectionClosed.TryOpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions) +21
       System.Data.SqlClient.SqlConnection.TryOpenInner(TaskCompletionSource`1 retry) +90
       System.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource`1 retry) +217
       System.Data.SqlClient.SqlConnection.Open() +96
       System.Web.Management.SqlServices.GetSqlConnection(String server, String user, String password, Boolean trusted, String connectionString) +75
    
    [HttpException (0x80004005): Unable to connect to SQL Server database.]
       System.Web.Management.SqlServices.GetSqlConnection(String server, String user, String password, Boolean trusted, String connectionString) +125
       System.Web.Management.SqlServices.SetupApplicationServices(String server, String user, String password, Boolean trusted, String connectionString, String database, String dbFileName, SqlFeatures features, Boolean install) +89
       System.Web.Management.SqlServices.Install(String database, String dbFileName, String connectionString) +29
       System.Web.DataAccess.SqlConnectionHelper.CreateMdfFile(String fullFileName, String dataDir, String connectionString) +386


Interestingly in my local environment, it works fine, and it happens only in Azure.
For publishing to Azure I reconfigured the following properties in my web.config file as well, BUT I am still suspicious if I am missing some configuration somewhere else, since other parts of the application work fine such as login and registration:

Connection String:

<connectionStrings>
        <!--<add name="DefaultConnection" connectionString="Data Source=(LocalDb)\MSSQLLocalDB;AttachDbFilename=|DataDirectory|\aspnet-Portal.mdf;Initial Catalog=aspnet-Portal;Integrated Security=True" providerName="System.Data.SqlClient" />-->
        <add name="DefaultConnection" connectionString="Data Source=tcp:***,1433;Initial Catalog=***;Persist Security Info=False;User ID=***;Password=***;MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=False;Connection Timeout=30;" providerName="System.Data.SqlClient" />
      </connectionStrings>


And my Entity Framework configuration:

<entityFramework>
        <!--<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">-->
        <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework">
          <parameters>
            <!--<parameter value="mssqllocaldb" />-->
            <parameter value="Data Source=Data Source=***,1433;Initial Catalog=***;Persist Security Info=False;User ID=***;Password=***;MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=False;Connection Timeout=30;" />
          </parameters>
        </defaultConnectionFactory>
        <providers>
          <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
        </providers>
      </entityFramework>


I Was wondering, if there is any other configuration which I need to modify for RoleManager in order to work in Azure?

Thank you for your time and consideration.
AnswerRe: MVC Application RoleManager issue after being deployed in Azure Pin
F-ES Sitecore29-Jun-17 23:41
professionalF-ES Sitecore29-Jun-17 23:41 
Suggestionproject definition Pin
Member 1327996126-Jun-17 17:59
Member 1327996126-Jun-17 17:59 
GeneralRe: project definition Pin
Richard MacCutchan26-Jun-17 20:56
mveRichard MacCutchan26-Jun-17 20:56 
AnswerRe: project definition Pin
ZurdoDev27-Jun-17 9:54
professionalZurdoDev27-Jun-17 9:54 
QuestionHow to navigate from one page to another in ASP.Net MVC and Web Api application Pin
indian14323-Jun-17 12:41
indian14323-Jun-17 12:41 
AnswerRe: How to navigate from one page to another in ASP.Net MVC and Web Api application Pin
F-ES Sitecore25-Jun-17 23:01
professionalF-ES Sitecore25-Jun-17 23:01 
GeneralRe: How to navigate from one page to another in ASP.Net MVC and Web Api application Pin
indian14326-Jun-17 8:28
indian14326-Jun-17 8:28 
GeneralRe: How to navigate from one page to another in ASP.Net MVC and Web Api application Pin
jkirkerx26-Jun-17 13:26
professionaljkirkerx26-Jun-17 13:26 
GeneralRe: How to navigate from one page to another in ASP.Net MVC and Web Api application Pin
F-ES Sitecore26-Jun-17 22:53
professionalF-ES Sitecore26-Jun-17 22:53 
GeneralRe: How to navigate from one page to another in ASP.Net MVC and Web Api application Pin
indian14327-Jun-17 7:17
indian14327-Jun-17 7:17 
GeneralRe: How to navigate from one page to another in ASP.Net MVC and Web Api application Pin
Richard Deeming27-Jun-17 9:31
mveRichard Deeming27-Jun-17 9:31 
GeneralRe: How to navigate from one page to another in ASP.Net MVC and Web Api application Pin
indian14327-Jun-17 11:55
indian14327-Jun-17 11:55 
GeneralRe: How to navigate from one page to another in ASP.Net MVC and Web Api application Pin
F-ES Sitecore27-Jun-17 22:31
professionalF-ES Sitecore27-Jun-17 22:31 
GeneralRe: How to navigate from one page to another in ASP.Net MVC and Web Api application Pin
indian14328-Jun-17 6:40
indian14328-Jun-17 6:40 
GeneralRe: How to navigate from one page to another in ASP.Net MVC and Web Api application Pin
F-ES Sitecore28-Jun-17 22:22
professionalF-ES Sitecore28-Jun-17 22:22 
GeneralRe: How to navigate from one page to another in ASP.Net MVC and Web Api application Pin
indian14328-Jun-17 6:44
indian14328-Jun-17 6:44 
QuestionHTTP Error 500.19 - Internal Server Error Pin
indian14321-Jun-17 11:29
indian14321-Jun-17 11:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.