Does anyone have a recommendation about web service security architecture in Java (preferably under JBoss)? Any recommended reading?
I want to expose a fairly rich web service to the world but ... |
What would be the basic and obvious security considerations and recommendations in a Java EE Web application?
|
Anyone know of any good documentation on securing a JBoss installation? What I'm mainly looking at is disabling the admin console to only localhost or (even better) requiring authentication to access ... |
In jboss-web.deployer/conf/web.xml there is a listener defined called SecurityFlustSessionListener.
This listener searches for the component java:comp/env/security/securityMgr and if not found prints that info in the debug log. It is understood ... |
I've got a Java servlet that handles file uploads, but resides in the "intranet" instance of JBoss. It needs to write files to a directory in the "internet" instance of JBoss ... |
Hey,
I am new to soapUI 3.5. I tried some wsdl that acquire security against web service deployed on jboss 4.2.1
while running test on soapUI . It gives me
...
|
What is the relation between web.xml and jboss-web.xml? Seems like:
- Jboss-web.xml
- specifies the security domain (which can be found in login-config.xml)
- web.xml
- specifies what the security level is
I don't understand what happens when jboss-web.xml ... |
|
I've read how IBM's WebSphere can propagate the identity of a user back to a backend database (http://www.ibm.com/developerworks/websphere/techjournal/0506_barghouthi/0506_barghouthi.html). Does JBoss have similar functionality? Ideally, I'd like to be able ... |
This line in my jboss-web.xml:
<security-domain>java:/jaas/flockingfun</security-domain>
produces this error:
Caused by: javax.xml.stream.XMLStreamException: ParseError at [row,col]:[3,19]
Message: Unexpected element 'security-domain' encountered
at org.jboss.as.metadata.parser.util.MetaDataElementParser.unexpectedElement(MetaDataElementParser.java:109)
at org.jboss.as.metadata.parser.jbossweb.JBossWebMetaDataParser.parse(JBossWebMetaDataParser.java:128)
at org.jboss.as.web.deployment.JBossWebParsingDeploymentProcessor.processDeployment(JBossWebParsingDeploymentProcessor.java:60)
... |
i am ruuning jboos on windows xp , found in the logs some one has deployed web app to jboss which enables him to open socket to my machine.
i don't understand ... |
Hi
can any one tell me the security services used in jboss 4.x,5.x.and 6.x. and their versions.
if possible any reference link,
Thanks in advance.
|
I want to hide jboss server information from any users. (Servlet 2.5; JBoss-
5.0/JBossWeb-2.1, JSF/1.2)
How to do this ?
|
So I have a small proof of concept seam app that is based off of one of the Alfresco web client samples. In the process of getting it to work I ... |
I'd like to know how to associate (to bind), in jboss AS, a custom SecurityManagerService to a specific security domain.
Basically I need to have two different SecurityManagerService configurations for two different ... |
I have the following code:
import java.rmi.RMISecurityManager;
import java.util.Hashtable;
import javax.naming.Context;
import javax.naming.InitialContext;
public class Prueba01
{
public static void main(String argumentos[])
{
try
{
//System.setProperty("security.policy", ...
|
|
|
Hello, I am trying to to run my application using Java 5 and JBoss 4.2.1, but i am stuck in the middle. The error which i received is as follows:- 2008-10-15 12:56:06,031 WARN | (org.jboss.system.ServiceController:337) - Problem creating service jboss.security:name=XMLLoginConfig java.lang.AbstractMethodError: org.jboss.security.auth.login.XMLLoginConfig.jbossInternalLifecycl (Ljava/lang/String;)V at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155) at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94) at org.jboss.mx.server.Invocation.invoke(Invocation.java:86) at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264) at ... |