An inherent property of an entity that distinguishes that entity from all others. Frequently used to refer to user identity and authentication.
0
votes
1answer
13 views
Unique and reproducible identifier for Java Object (Eclipe EMF's resources and model elments)
I've been googling around for a solution, and read a lot of questions/answers here in SOF, but didn't find anything I could use.
My problem is the following: I need to uniquely identify EMF elements ...
0
votes
1answer
14 views
What does bar means in ggplot geom=“bar”? I am confused with stat=“identity”
I have a question about the ggplot2 package.
Using the diamonds data, I can't tell the difference in the following 3 groups of code.
qplot(color, data = diamonds, geom = "bar")
qplot(color, data = ...
0
votes
1answer
10 views
Why is spdiag deprecated in Octave, but not speye?
I've noticed that spdiag is deprecated, but not speye. Why is this? Both diag and eye generate diagonal matrices, so shouldn't speye be unnecessary as well (or at least exactly as unnecessary as ...
1
vote
0answers
27 views
Access User Windows authentication /active directory IIS asp.net
I have two sites...one is a regular webforms and the other is pretty much a duplicate of the site, but done in MVC4. The webforms site is getting the user identity like this:
string userId = ...
0
votes
0answers
3 views
How do I prevent MS WS-Federations Identity Providers from auto-logging my users back in?
Right now my application uses WS_Federated login, and wit works just fine, but when I log out, it will automatically log me back in when I click on the login link.
I have verified that ...
0
votes
0answers
31 views
SQL creating table in oraclexe 10.2.0 [duplicate]
Could you please help me? I am using oraclexe 10.2.0
SQL> create table new_emp(id_num int IDENTITY(1,1),fname varchar2(20));
id_num int IDENTITY(1,1),
ERROR at line 1: ORA-00907: missing ...
0
votes
1answer
21 views
How to identify the platform between facebook app canvas / website using PHP
how can I check if a user is coming from facebook or directly from the site. ... i have used this method $_REQUEST['signed_request'] but they response only one time ... you guys have any alternate ...
0
votes
0answers
11 views
How to federate between two Thinktecture Identity Servers
I am trying to configure federation with two identity servers.
In his federation video Domink shows how to configure a relying party and an identity provider in the R-STS but does not show how to ...
0
votes
1answer
17 views
OData: last insert ID equivalent
We're currently interfacing with an OData database, over HTTP.
I need to POST objects (i.e. create them). This works, but how can I get the identifier of the created object?
Comparing this to SQL, ...
1
vote
2answers
39 views
the semantic of Data Type in UML
data Type is a descriptor of a set of values that lack identity
What does mean by Lack of identity here?
0
votes
1answer
40 views
How to validate cloned inputs using Javascript?
I have a problem using the identity element.
Basically, I want to create a simple html form where the user can input a phone number - related to a certain code - that needs to be validated and sent to ...
1
vote
0answers
35 views
WSO2 Identity Server external LDAP throws OBJECT_CLASS for OID identityperson does not exist
I am using the Identity Server 4.1.0 and also I am running an ApacheDS within the Apache Directory Studio. So what I want now is connect my IS to the external LDAP.
IS is connecting fine to the ldap, ...
0
votes
1answer
34 views
WSO2 Authentication - Difference between JSESSIONID and RememberMeDataValue
When logging in, into WSO2 Identity Server using the SOAP AuthenticationAdmin, I can choose to use the 'loginWithRememberMeOption'. When using this option, the Identity Server will provide a ...
3
votes
1answer
23 views
Application Url vs Redirect Url
We've an application called Mural.ly (https://mural.ly), our app has a Facebook Page (http://facebook.com/murallysocial).
We're using Singly (http://singly.com) to handle all our authentication ...
0
votes
1answer
48 views
WSO2 ESB EntitlementMediator Error occurred while evaluating the policy
I followed the guide "http://docs.wso2.org/wiki/display/IS410/Adding+Fine-grained+Authorization+for+Proxy+Services+in+ESB" to integrate ESB with Identity Server.
I tried by wso2esb-4.6.0 and ...
0
votes
1answer
33 views
On SQL INSERT can I use the identity column for part of the insert data in another column at the same time?
CREATE TABLE Table1 :
Id int IDENTITY(1,1),
PK_Column1 nvarchar(50) Primary Key.
INSERT INTO Table1 (PK_Column1) VALUES ('Name'+Id)
Result:
Id PK_Column1
1 Name1
Is this possible? Or do I ...
1
vote
2answers
20 views
SQL INDENTITY DOESN'T RECEIVE PARAMETERS
I'm trying to set IDENTITY seed parameter while creating table, getting it from a var. Something like this
DECLARE @MaxID INTEGER
SET @MaxID = (SELECT TOP 1 ID FROM dbo.ProductQuotes ORDER BY ID ...
0
votes
0answers
19 views
SQL Server : How to start IDENTITY for First record by 1 for new Table
I've created New Table and force IDENTITY ID in the table to start by 1
by below example SQL
DBCC CHECKIDENT ("MyTable", RESEED, 0);
Unfortunately, the first record gets ID = 0
Then I've deleted ...
0
votes
0answers
17 views
Devise identity confirmation
not sure this is going to be easily done or even possible without some other service but thought I'd ask anyway.
Basically a have a doctors site set up and i would like for patients to be able to ...
0
votes
2answers
48 views
SQL: last id from a table selecting database
I have the following query in my php script:
SELECT last_value FROM sys.identity_columns WHERE OBJECT_NAME(OBJECT_ID) = 'MYTABLE' AND last_value IS NOT NULL
This works great, it returns the last ...
2
votes
4answers
59 views
Why are CPython ints unique and long not? [duplicate]
Using Python2.7, if I try to compare the identity of two numbers, I don't get the same results for int and long.
int
>>> a = 5
>>> b = 5
>>> a is b
True
long
...
0
votes
2answers
51 views
Top SAML 2.0 identity providers in the market
I am working on a product (service provider) which uses SAML 2.0 for authentication purpose. Having said that I wanted to know what you all think are the top and most trusted identity providers that ...
4
votes
3answers
78 views
How to make two objects have the same id in python?
If I have a class like below:
class Point(object):
def __init__(self, x, y):
self.x = x
self.y = y
And have 2 objects:
a = Point(1,2)
b = Point(1,2)
How can I modify class ...
0
votes
1answer
55 views
How to get RequestSecurityToken.AppliesTo from a custom SecurityTokenHandler
I'm implementing a custom UserNameSecurityTokenHandler which validates a request token based on 3 things: username, password, and the AppliesTo value of a RequestSecurityToken. While the username and ...
1
vote
1answer
26 views
How can I guarantee that I am connecting to my service and not someone else?
I have a setup that looks like:
I am using windows authentication to encrypt the connections. The Main Service is secure, no one has access to it, so it is safe to store the username and passwords ...
1
vote
1answer
12 views
How do you unauthenticate User.Identity
Within an ASP.Net application I am working on, the process is as follows.
The user logs in.
If this is the first time the user has logged into the system ever, it authenticates the user then ...
0
votes
2answers
68 views
Sybase ASE remote row insert locking
Im working on an application which access a Sybase ASE 15.0.2 ,where the current code access a remote database
(CIS) to insert a row using a proxy table definition (the destination table is a DOL - ...
1
vote
1answer
25 views
Select Identity without 'into"
Alright, I'm 99% sure it's possible... How do I select an identity column without using 'into' in SSMS 2008?
For example,
I know this doesn't work, but it's what I'm looking for...
Select PK as ...
0
votes
0answers
11 views
OpenPGP Web of Trust application to identity authentication
I'm collaborating in an opengov movement in my local community: http://www.partidodelared.org/
We are thinking about how to implement a distributed non-binary authentication and identity system, to ...
0
votes
1answer
18 views
need to integrate Business Process Server with wso2 identity server
Hi I need urgent help on integration process of wso2 BPS with wso2 IS. Basically my requirement is to add workflow feature in user management process. For example if one admin modifies user profiles, ...