Questions tagged [shiro]

Apache Shiro is a Java security framework that performs authentication, authorization, cryptography, and session management.

Apache Shiro is a Java security framework that performs authentication, authorization, cryptography, and session management. Shiro's API provides mechanisms to secure a variety of application types, including mobile software, web apps, and enterprise systems.

Shiro can be configured using .ini files, programmatic setup, or a combination of both. For more information see:

1252 questions
-1
votes
1 answer

A child container failed during start

I am getting below error; SEVERE: A child container failed during start java.util.concurrent.ExecutionException: org.apache.catalina.LifecycleException: Failed to start component…
Kunal
  • 464
  • 2
  • 8
  • 23
-1
votes
1 answer

Need Shiro C# client

As per detailed architecture http://shiro.apache.org/architecture.html Apache shiro support C# clients but I was not able to find a good documentation/example on how to create one. If you can are aware any documentation or ideas on how to do this…
user973779
  • 87
  • 1
  • 1
  • 5
-1
votes
1 answer

PHP Cryptography code explanation

public static function getEncryptedData($value){ if(!$value){return false;} $text = $value; $iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_ECB); $iv = mcrypt_create_iv($iv_size, MCRYPT_RAND); …
simplfuzz
  • 12,479
  • 24
  • 84
  • 137
-2
votes
1 answer

Can i do someting before view being generated using spring mvc jsp shiro

I want to check session and add it's information to model, but i don't want to add code in every controller, so is there something I can use to solve this problem?
deru
  • 3
  • 1
-2
votes
1 answer

NPE in DataSource object

I would like to use Apache Shiro in a Java EE application. I tried this custom realm: public class JdbcRealm extends AuthorizingRealm implements Serializable { @Resource(name = "jdbc/DefaultDB") private DataSource dataSource; protected…
Peter Penzov
  • 1,126
  • 134
  • 430
  • 808
-2
votes
1 answer

Apache-Shiro and Chrome

We have a web application. We are using tomcat 7 ans shiro. The site working well on IE and Firefox, but not in Chrome: Say we have 2 users: one is admin and can access the whole site. The other is guest and can access to only one part of the site.…
AxelF
  • 109
  • 3
  • 15
-4
votes
1 answer

How to have a pop-up screen to warn that the time out of the session is over in shiro?

I have my project with shiro and I need when closing inactivity timeout, pops out pop up warning the user that the session will close. At the moment I have shiro with Servlet Container
1 2 3
83
84