The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
13 views

Integrating inherited_resources and authority

I'm currently trying to integrate inherited_resources and authority into my Rails app. I'm a little bit stuck as to the best place to check the ability to do a controller action based on the ...
0
votes
1answer
29 views

Where does makecert.exe store the digital certificate

I created a self-signed certificate and a client certificate using this tutorial and the makecert.exe tool: http://msdn.microsoft.com/en-us/library/ff647171.aspx However, when I go to MMC and try to ...
0
votes
1answer
22 views

Can Authority Ruby Gem be used with logged out users?

I get the following error: undefined method `can_read?' for nil:NilClass ..when trying to access a product page with a logged-out user. At the moment I have class ProductAuthorizer < ...
0
votes
3answers
180 views

Redirect User / Admin to different Webpage during log-in depending on Authority [closed]

I want to redirect the user of my webpage based on their Authority level. Authority : 'Admin' or 'User' I kept on searching regarding this matter but I can't seem to find solution to my problem.. ...
0
votes
0answers
101 views

Double Hop NT Authority Anonymous Login

We are having an interesting problem with NT Authority\Anonymous Logon. Sorry to be so long winded. We have IIS 7.5 and Sql Server Express 2012 on the same server running Windows Server 2012. We ...
0
votes
0answers
31 views

Multiple authorities in ProviderTestcase2 constructor?

Below is code clip for MyProviderTest: public MyProviderTest() { super(MyProvider.class, "com.simz.provider.user"); } I have to use other authorities. I have tried public MyProviderTest() { ...
1
vote
1answer
276 views

How do roles and rights translate to Spring Security?

In my applications I usually create three tables for access management. Roles, Rights and an association table that maps between Roles and Rights. I am trying to translate this approach to Spring ...
0
votes
1answer
556 views

How to change the expiration date for a self created Certificate Authority in keychain

I'm trying to create a Certificate Authority in Keychain on Mac using stored public & private keys. The output CA has an expiration date of a year from the creation date. I would like to ...
1
vote
2answers
1k views

Alfresco Creating a new user group that permits only creating user and groups

I want to create a new user group. The members in this user group can create new users and new groups. I think creating users or groups require admin permission. This user group does not have ...
0
votes
2answers
250 views

Topic creation in ActiveMQ

http://docs.oracle.com/javaee/1.4/api/javax/jms/Session.html#createTopic(java.lang.String) This API says that session.createTopic(topicname) is not for creating the physical topic. What does this ...
4
votes
2answers
928 views

Android - Having Provider authority in the app project

An android library project contains a few providers whose authority is defined like the following in a contract class : public static final String CONTENT_AUTHORITY = ...
0
votes
1answer
230 views

Found authority component in URI: when trying yo open an image

In my application i collect some images form the device's gallery as files' names. I whant to display one of the images when ever application started. When i use the following code - Intent intent = ...
2
votes
2answers
293 views

Benefits in security to a CA signed SSL certificate

This is just a general question regarding the debate between self-signed certificates and CA certificates... I understand the benefits for a CA certificate due to the avoided warnings generated in ...
1
vote
0answers
257 views

VB.NET SSL Certificate Authentication Exception

I am new to VB.Net coding && I am having some problems with my HTTTP(s) debugger application. [using a self-signed certificate] Every other thing works fine but when authentication occurs ...
2
votes
2answers
328 views

What is the semantics of the double slash following the scheme in a URI?

According to http://tools.ietf.org/html/rfc3986 and http://en.wikipedia.org/wiki/Uniform_resource_identifier, a URI may or may not contain a double slash following the scheme identifier. This makes ...
0
votes
1answer
60 views

Do I strictly need authorities for user-service in Spring?

If I remove <authorities-by-username-query="myquery"> in my jdbc-user-service then my form always gives me 'bad credentials'. I've checked it triple times , I cannot authorize person ...
-1
votes
1answer
50 views

Getting Started with SSL [closed]

I'm new to SSL. Because of Facebook changes on October 1sth 2011 I've been forced to look for a Certificate Authotity to get an SSL certificate. There are so many choices out there and my boss is ...
1
vote
1answer
93 views

SAP: Where are the authority objects?

Any ideas where I can find a list of existing authority objects? I'm looking for the 'default' ones like S_CARRID.
1
vote
1answer
2k views

Content provider and sqlite database, uri syntax

I have been unsuccessfully trying to access database trough content provider for couple of days now. I think that I don't understand the syntax of the Uri that is used to point to the database. Maybe ...
1
vote
4answers
1k views

what's the best way to check user's current authority in spring3 controller methods?

User's authority is frequently changed in my web service. In this case, how do I check user's authority effectively? I wrote code that check user's authority in every controller temporarily. But I ...
2
votes
1answer
229 views

Regex matching url authority parts

I need to match these parts of the following string: (user)@(hostname):(port) User and port can optionally be matched. First I managed it with this regular expression: ...
4
votes
1answer
2k views

android duplicate provider authority

I have had users complaining of a "duplicate provider authority" error when trying to install my android application. I initially thought it might be an old version interfering with the new version, ...
2
votes
2answers
166 views

How to know whether I have admin authority in windows?

Is there any APIs in windows to detect whether the current user(current now) has the admin authority? BOOL IsHasAuthority() { } Many Thanks!
1
vote
2answers
2k views

C# utility to create a CA

I'd like to create a utility in C# to allow someone to easily create a Certificate Authority (CA) in Windows. Any ideas/suggestions? I know I can use OpenSSL to do this. In the end, I'll want this ...
44
votes
5answers
27k views

.NET - Get protocol, host, and port

Is there a simple way in .NET to quickly get the current protocol, host, and port? For example, if I'm on the following URL: http://www.mywebsite.com:80/pages/page1.aspx I need to return: ...