0
votes
1answer
59 views
Why does HttpContext.Current.User.Identity.Name return the wrong username when used in a webpart?
In a Sharepoint web page I am having a problem identifying the logged in user!
The Masterpage contains a normal ootb control that displays the username
<%@ Register TagPrefix= …
1
vote
4answers
94 views
is it good to have primary keys as Identity field
Hi , I have read a lot of articles about whether we should have primary keys that are identity columns, but I'm still confused.
There are advantages of making columns are identity …
0
votes
2answers
36 views
dynamically populate identy in web.config
Is there a way i can dynamically populate the username and password of identity in web.config from my code behind... as i cannot hard code it.
<identity impersonate="true" user …
0
votes
2answers
50 views
Passing user’s identity across tiers with ASP.NET and WCF
I'm new to WCF. Let's say I have two asp.net apps, one that uses windows authentication (an intranet app), and one that uses forms authentication (an internet app). I want both of …
0
votes
1answer
23 views
Object Identity Maps and webapps
In a recent discussion on ORMs for webapps someone mentioned that there are times you don't want to have IdentityMaps for webapps. I don't understand this, because it seems as thou …
0
votes
2answers
36 views
SQL CE Compact 3.5 Identity columns for a table.
Is there a query I can write against an INFORMATION_SCHEMA or against the system tables to determine if a column is an identity column in SQL CE version 3.5?
1
vote
2answers
33 views
SQL Server 2005 - Working with IDENTITY column
Hi,
I am working on SQL Server 2005 tables. Here I need to add a column named ‘ID’ as ‘IDENTITY’ column (With starting and incrementing values as 1, 1).
Now my problem is that t …
0
votes
1answer
50 views
SQL Server 2005 Identity Specification not respecting seed value
I am in the process of converting an Access database to SQL Server 2005. I have successfully migrated the data and original schema using SSMA and am now in the process of normalizi …
0
votes
2answers
305 views
SQL Server - Get Inserted Record Identity Value when Using a View’s Instead Of Trigger
For several tables that have identity fields, we are implementing a Row Level Security scheme using Views and Instead Of triggers on those views. Here is a simplified example stru …
0
votes
1answer
34 views
tableadapter VB.net 2008 - retrieve identity
Hello,
I am inserting a record to a MSSQL table using a tableadapter using something like:
Dim da_mytable As New t_mytableTableAdapter
da_mytable.Insert(xxxx,xxxx,xxxx)
The SQL t …
3
votes
9answers
259 views
What should be used to check identity in C++?
I have two pointers to objects and I want to test if they are the exact same object in the most robust manner. I explicitly do not want to invoke any operator == overloads and I wa …
1
vote
1answer
59 views
Why does WCF complain over identity check failure?
I'm creating a WCF application where I'll be using certificates to encrypt the communication between the client and server. In my development environment, I want to use a test cert …
0
votes
0answers
49 views
Seam: login using external SSO application
I have a Seam application that have to use an external one to login. The logic is as follows:
My app sends user to external SSO URL
User does what it takes to authenticate there …
0
votes
1answer
41 views
newid() vs newsequentialid() What are the differences/pros and cons?
In a database where all of your primary keys are GUIDs, what are the differences/implications and/or pros and cons using newid() versus newsequentialid() as the "default value or b …
14
votes
7answers
540 views
Python: Why is (”hello” is “hello”)?
Why is "hello" is "hello" == True in Python?
I read the following here:
"If two string literals are equal, they have been put to same
memory location. A string is an immutable e …
