An inherent property of an entity that distinguishes that entity from all others. Frequently used to refer to user identity and authentication.
0
votes
0answers
29 views
Zend Session Identity losing data?
I have a problem. I lose SESSION when i want to get data by using $auth->hasIdentity():
MY code is below:
This is my Bootstrap.php
public function _initSession(){
Zend_Session::start();
}
...
0
votes
0answers
16 views
ios build using buildserver, picking correct codesign identity
Using hudson buildserver, building ios app,ipa for test & live environments.
Code siging working fine with this code, when the developer checks in with correct code sign identities either for ...
0
votes
1answer
13 views
Usage of Identity Server with ADFS
Currently my system is configured to get security tokens through identity server. We plan to change this to use ADFS and Identity server for authentication for AD users and others.
I need a workable ...
0
votes
0answers
20 views
Problems with Microsoft Identity (WIF) Example „Invoking a WCF Service on the Backend via Delegated Access”
I have a prboem with a WIF/Identity delegation Sample that we urgently need:
Since days I try to bring ClaimsAwareWebSite- Delegation Demo Solution up and Running, but it does not work.
I have a ...
1
vote
0answers
41 views
Simple user identity detection in PHP
What are some PHP identity detection libraries/functions that support cookies and IP? (and possibly other methods - like those in this awesome post: http://stackoverflow.com/a/16120977)?
I know ...
-1
votes
4answers
50 views
Verify a user identity via Phone Number or other unique ID (iOS/Android)
Following scenario:
I want to create an wifi hotspot on a public place (e.g. train station). Therefore i want to write an mobile application (iOS and/or Android) which works as a portal page. As I ...
0
votes
1answer
49 views
Breeze using incorrect autoGeneratedKeyType in meta data parse
We're using BreezeJS for a project. It's a wonderful tool, thanks for creating it!
I have a table that has a two-column primary key. Also on this table is an identity column that is not part of the ...
0
votes
0answers
27 views
SCIM (System for Cross-domain Identity Management) library for C#
The SCIM standard was created to simplify user management in the cloud by defining a schema for representing users and groups and a REST API for all the necessary CRUD operations.
It is intended to ...
0
votes
0answers
37 views
WSO2 Identity Server: Cannot assign user role with SCIM
I am using WSO2 IS 4.1.0.When trying to assign a role by using SCIM i got following message in server log.
[2013-05-05 22:28:58,481] INFO ...
0
votes
0answers
25 views
Identity column pair
In SQL Server 2008 R2, is it possible to declare a (grouping, identity) pair where the identity is individually counted for each grouping value?
For example, in a table called Invoice I have these ...
0
votes
1answer
20 views
increment existing db columns
I am trying to make a exact copy of a table but change the values of 2 columns. Basically I have 800 entries in the db table and need 800 more but i need the value of one of the columns (Set_id to be ...
0
votes
0answers
20 views
Type-safe IDs in service layer for error prevention
I'm currently writing on the business logic of an Java-application. I've splitted it into domain layer and service layer. The service layer provides interfaces which allow access on the data via data ...
1
vote
1answer
70 views
REST authentication / authorization using JWT federated identities
I am looking at developing an application that exposes services using REST. These services will be accessed via browser and non-browser clients. I expect that there will be a number of installations ...
0
votes
2answers
42 views
jQuery: how do I select no elements?
I want to create a jQuery selection that is guaranteed to have no DOM nodes in it. Obviously, I can do this with various hacks, like selecting an id that I know does not exist, but that sucks. How do ...
0
votes
0answers
15 views
how to get id of another table to save in another table
i have a sign up page and the inputs are saved in multiple tables. and the master table only caters ID (addresssID)..how can i get the id from the address table of the address that the user created so ...
0
votes
1answer
39 views
SQL Server IDENTITY skipping [duplicate]
I've got a .NET application which has been running for about 10 years using SQL server as a backend. For some reason, over the last 2-3 months, it has decided to skip out around 990 (I think it has ...
0
votes
2answers
27 views
Retrieve domain instance by generated id
I am using a Domain class with a generated identity:
class User {
...
static mapping = {
id generator: 'assigned', name: 'uid'
}
Long uid
...
}
but when I try to retrieve an ...
2
votes
2answers
85 views
SQL Server query to find clustered indexes
Is it possible to write a query that returns all tables that have clustered indexes that are not based on an identity key?
2
votes
2answers
47 views
Why don't methods have reference equality?
I had a bug where I was relying on methods being equal to each other when using is. It turns out that's not the case:
>>> class What(object):
def meth(self):
pass
>>> ...
0
votes
1answer
41 views
Is UserExtendedProperties ANID2 consistent across devices?
I'm in a situation where I need to find out if an application is used by the same user but on different windows phone device. In other words I need some kind of user ID that is consistent for ...
0
votes
2answers
36 views
Windows file creation dates in C#.NET
Is it possible that multiple files can be created at the exact same time? Well obviously it is possible in some cases (I don't know those cases) when I call FileInfo classes CreationTimeUtc() method, ...
0
votes
2answers
91 views
Combine WSO2 ESB with WSO2 IS
I'm considering using the functions of WSO2 IS. However, I already have WSO2 ESB deployed in a production environment, so I'd prefer to add IS features to the already existent ESB environment.
I was ...
0
votes
1answer
71 views
iOS Provisioning Profile Validation Errors
I am trying to create a development provisioning profile for my application.
I have a valid certificate in the app center and in my MacBook it also shows that certificate as valid.
I have also ...
2
votes
1answer
30 views
FireBird - serial field as in PGSQL?
PGSQL supports "serial" field type, which is converted to:
colname integer DEFAULT nextval('tablename_colname_seq') NOT NULL
This makes the identifier generating very easy.
In the FireBird I saw ...
-2
votes
4answers
37 views
Backwards Method?
I'm creating a program to create an Identity Matrix - which is pretty easy. But now I need to create the Identity Matrix, but backwards. The result needs to be like so:
0 0 1
0 1 0
1 0 ...
0
votes
0answers
22 views
FNH Mappings with DB2 GeneratedBy Identity
I am trying to map a table with an identity key field.
When I try to save I get the error SQL0803 Duplicate key value specified
INSERT INTO libpjk/Audit (AuditId, AuditDate, UserId, Keys, ValBefore, ...
0
votes
1answer
46 views
Prevent SQL Server IDENTITY grow on INSERT failure
I noticed that in SQL Server, when INSERT failure, the IDENTITY ID still grows.
This is not a problem in MySQL
here's the sample http://sqlfiddle.com/#!3/51b7d/8
How can I prevent that?
Thanks
2
votes
3answers
65 views
Authentication by user
have scoured by couldn't find anything relevant.
I have to this point built a cool web app in MVC using C#. I created a User model as
public class User
{
// Must be named EntityNameId, must ...
0
votes
1answer
20 views
Tuple structural identity
Also using assertion libraries with methods devoted to comparing list, I'm unable to match this two results in unit tests:
var list1 = new List<Tuple<string, IEnumerable<string>>>
{
...
0
votes
3answers
231 views
SQL Server 2008: how to design a table with 2 primary keys and ID with autoincrement related to 1 key value
Let me explain this a bit better: I need to design a database that needs to be installed in different locations (which might or not be connected to each other).
My thought was: why don't I use a ...
0
votes
1answer
58 views
openldap fortress vs Apache Shiro
I am trying to download openldap and I came across an ldap Java JDK called OpenLdap fortress. http://www.openldap.org/fortress/
It seems to be good for Identity Management Access, which sounds good, ...
0
votes
1answer
19 views
Identify commit in which a particular file was deleted
I am working on a project which is hosted on GIT. In some directory in my repo, somebody has deleted a file say [a.txt] at path [/home/git/myProject/generic]. Now, a lot of commits have happened on ...
1
vote
2answers
81 views
F# distinctBy behavior
I don't understand behavior of distinctBy in this snippet:
let s = [123; 231; 321]
let s1 = s |> Seq.map (string >> Seq.sort)
let s2 = s |> Seq.distinctBy (string >> ...
0
votes
1answer
21 views
How to determine what id to use for columns that arn't using auto increments
I have created 4 tables and use ids to link them together. Now how do I determine what to use as ids?
tables creation
import sqlite3 as lite
queries = []
queries.append([''.join('CREATE TABLE ...
1
vote
4answers
37 views
Identities Appearing in Tables have Gaps [duplicate]
We have begun to see identities created in some of our tables are no longer precisely sequential. That is to say they remain incrementally higher but there are large gaps in the values.
For instance, ...
0
votes
0answers
19 views
UserRegistrationAdminService version 4.0.0 doesnt work with IS-4.1.0
I am using the UserRegistrationAdminService stub version 4.0.0 and communicating with the IS-4.1.0 and get this exception.
org.apache.axis2.AxisFault: The endpoint reference (EPR) for the Operation ...
1
vote
1answer
100 views
How to generate unique id in Dart
I write websocket chat.
How to generate unique id for user?
now i use this code:
id = new DateTime.now().millisecondsSinceEpoch;
is there any more neat solution?
0
votes
1answer
260 views
ASP .NET MVC 4 Put join query result inside viewmodel and pass it to a view
I'm new to MVC and I need to bright up my mind about some concept of ASP .NET MVC.
In my spare time I'm trying to learn more about MVC building a web application to manage some user content. For more ...
0
votes
1answer
79 views
Using the SQLSRV Native Client in PHP does connection pooling affect @@IDENTITY in anyway?
I do not have an issue in test but I am wondering about a live environment with thousands of simultaneous users.
If I execute two queries separately:
insert into table (somecolumnname) values ...
0
votes
0answers
104 views
Setting primary identity in ClaimsPrincipal.Current
How to change in ClaimsPrincipal.Current identity collection the primary one identity ?
I saw there is ClaimsPrincipal.PrimaryIdentitySelector, but I am not sure when it is fired and how it have to ...
0
votes
0answers
55 views
Identity Flow in WCF using Transport Security with Basic Authentication
I am using WCF to develope web services with wsHttpBinding and Transport security set to 'Basic':
<security mode="Transport">
<transport clientCredentialType="Basic" ...
0
votes
3answers
57 views
SQL - ID to date, multiple dates
This is my table:
Date SSSN MyID Hours
01012013 1234 8
01012013 2345 7
01012013 3456 8
02012013 1234 5
02012013 2345 ...
0
votes
1answer
112 views
Authenticating calls to my Web API from third party applications with Azure ACS
I'm using Azure ACS for authentication to my Web API project and it's working great with IP's such as Google and Live. I have a requirement to allow third party (partners) to develop against my API ...
0
votes
3answers
106 views
define two different login process in one app
I have a problem with the login process in my yii app. I have two different kind of users including admin users that manage the site and customers. I'm using CwebUser and UserIdentitiy to manage login ...
0
votes
0answers
201 views
Get the Identity value after insert in mybatis
I am using MyBatis and its generator in eclipse and Database is SQL SERVER 2008 R2.
Using struts2 framework, too.
I m having two tables called ITEMS and ITEM_CATEGORY_FIELDS.
ITEMS has one primary ...
0
votes
2answers
83 views
what's the difference between Single Sign On and Federated Sign On for mobile platforms
I've got a question about SSO and Federated SO. What is the difference between these two?
What we are trying to accomplish is give user ability to login with their Facebook, Twitter or Linked In ...
0
votes
3answers
201 views
Setting up Azure ACS roles
Hey guys not sure if this is the right forum for this but I'm at my wits end trying to figure this out.
So a quick background of what I'm trying to do. I'm working on my senior project for college ...
0
votes
0answers
46 views
Windows Identity in front of Service Controller
I am trying to use a Service Controller to check/start/stop services on remote servers on my network. The servers that use our NT credentials work great with the following code but we have a few ...
2
votes
3answers
71 views
Data Matching with SQL and assigning Identity ID's
How to write a query that will match data and produce and identity for it.
For Example:
RecordID | Name
1 | John
2 | John
3 | Smith
4 | Smith
5 | Smith
6 | ...
0
votes
1answer
412 views
Thread.CurrentPrincipal is authenticated but ClaimsPrincipal.Current is not
I'm using Claims based Authorization in my WebApi project and have a method where I check if the current Identity is authenticated. When I use ClaimsPrincipal.Current the current Identity is not ...




