Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
37 views

Glassfish/Hibernate save without calling save explicitely

I am using Glassfish 2 and container managed persistence with Hibernate 3.2 as persistence provider. I have some finder method in my business logic, which manipulates some persistent entities, which ...
3
votes
1answer
266 views

How do i catch exceptions from container managed transaction commit?

I have a @Stateless EJB with a @WebService interface, using container managed transactions, meaning transactions are automatically committed by the container after a method has been called if it ...
2
votes
1answer
293 views

Alternative ways to configure security constraints with container managed security outside web.xml?

if you use Java EE 6 container managed security, you can configure security constraints for resources inside the web.xml deployment descriptor. Are there alternative ways to do this? For example the ...
2
votes
2answers
390 views

Is it possible to retrieve username, password and roles from a database instead of retrieving them from tomcat-user.xml while using container-managed security

I have a web application which i deploy in Tomcat. I want to secure all pages under the url path administration/*. I have set up container-managed security entering the next snippet in the web.xml ...
1
vote
1answer
39 views

Does .NET 4.0 have something similar to Container-Managed Transactions from Java?

Sure, there is Transaction Scope, but is there also something like this: http://java.sun.com/j2ee/tutorial/1_3-fcs/doc/Transaction3.html
1
vote
7answers
291 views

Help me make this code exception-safe

So I have this library code, see... class Thing { public: class Obj { public: static const int len = 16; explicit Obj(char *str) { strncpy(str_, ...
0
votes
1answer
50 views

Java Container Managed Security Not Redirecting to Login Page

I have a JSF 2 web application I am building on GlassFish 3. I am using container managed security to handle the login. Every page in my web app needs to be secure. All pages are in the root directory ...
0
votes
1answer
181 views

Protected URLs leaking unprotected components of the webapge to unauthenticated users

I believe implementing security for a JSF application through <login-config>+<security-constraint>+ <security-role> & through use of <filter> are two different ways !? Are ...
0
votes
1answer
1k views

Weblogic 10.3: Webapp security using web.xml and DB roles inside WLS console

Scenario We are using Weblogic Server 10.3.4 to run our webapp which has security constraints enabled in order to require a user to sign in before he/she can use the application. The user and group ...