Windows Server 2003 Standard edition.
jerome_data 0
Posts
-
SQL SERVER EXPRESS and NT AUTHORITY\NetworkService -
SQL SERVER EXPRESS and NT AUTHORITY\NetworkServiceHi, By default when i install SQL Express Edition i don't havethe connexion named NT AUTHORITY\NetworkService. My problem is than i use integrated security in my connection string to allow instance user. Integrated security need NT AUTHORITY\NetworkService to allow connexion to database. How to create this account? Who have a idea? Thanks
-
The indicator opening session of user instant is not supported in this version of SQL Server??Hello, I try to implement a WSE 3.0(webservice) in database in SQL server 2005 Standard. The scenario is : - 1) Winform that call a webservice(send a token to webservice). - 2) The Webservice call a Custom UsernameTokenManager (using the protected override string AuthenticateToken( UsernameToken token )) - 3)Sql Server version is Standard version on my Server, but this database is configured by aspnet_regsql.exe to allow Membership functionnalities. All works correctly to create user thru the webservice, but when i try to validate the user with (Membership.ValidateUser(login,password)i have this error: The indicator opening session of instant user is not supported in this version of SQL Server. Can you help me?? Thanks
-
WSE 3.0 and SoapHeaderException with database???Hi, I try to implement WSE and Custom UsernameTokenManager (http://msdn2.microsoft.com/en-us/library/aa480575.aspx#wss_ch3_impdirectauth_wse30_topic6) to connect todatabase I use in my webconfig: <connectionStrings> <add name="MySqlConnection" connectionString="Data Source=MySqlServer;Initial Catalog=aspnetdb;Integrated Security=SSPI;" /> </connectionStrings> <system.web> ... <membership defaultProvider="SqlProvider" userIsOnlineTimeWindow="15"> <providers> <clear /> <add name="SqlProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="MySqlConnection" applicationName="MyApplication" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="true" requiresUniqueEmail="true" passwordFormat="Hashed" /> </providers> </membership> But when i test my webservice i have this message: Server unavailable, please try later ConnectionString is ok. Thanks