[JBoss-user] [Messaging, JMS JBossMQ] - Re: Is there a way to prevent JBossMQ from using the jbossmq

2006-06-29 Thread DrPizza
I don't see anything particularly useful from doing that, although to be honest 
I get swamped in data, so I may be missing something.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3954308#3954308

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3954308

Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: Is there a way to prevent JBossMQ from using the jbossmq

2006-06-28 Thread DrPizza
anonymous wrote : I am not clear on what exactly is your requirement
I wish to have multiple queues, each with its own security-domain.


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3953942#3953942

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3953942

Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: Is there a way to prevent JBossMQ from using the jbossmq

2006-06-28 Thread DrPizza
I've done that, though I think you need to do the Queues like this:

  | mbean code=org.jboss.mq.server.jmx.Queue 
name=jboss.mq.destination:service=Queue,name=myQueue1
  | depends 
optional-attribute-name=DestinationManagerjboss.mq:service=DestinationManager/depends
  | depends 
optional-attribute-name=SecurityManagermyApp:service=SecurityManagerForQueue1/depends
  | attribute 
name=SecurityManagermyApp:service=SecurityManagerForQueue1/attribute
  | attribute name=SecurityConf
  | security
  | role name=guest read=true write=true/
  | role name=publisher read=true write=true 
create=false/
  | role name=noacc read=false write=false 
create=false/
  | /security
  | /attribute
  | /mbean
  | 
  | 
(notice that it doesn't just depend on the custom SecurityManager--it actually 
specifies that it uses it)

Unfortunately this does not appear to work.  I see stack traces like this when 
the system starts up:

  | 2006-06-27 16:43:43,498 WARN  
[org.jboss.ejb.plugins.jms.JMSContainerInvoker] JMS provider failure detected 
for Queue1Consumer
  | javax.jms.JMSSecurityException: User: null is NOT authenticated
  | at 
org.jboss.mq.security.SecurityManager.authenticate(SecurityManager.java:230)
  | at 
org.jboss.mq.security.ServerSecurityInterceptor.authenticate(ServerSecurityInterceptor.java:66)
  | at 
org.jboss.mq.server.TracingInterceptor.authenticate(TracingInterceptor.java:744)
  | at 
org.jboss.mq.server.JMSServerInvoker.authenticate(JMSServerInvoker.java:302)
  | at 
org.jboss.mq.il.uil2.ServerSocketManagerHandler.handleMsg(ServerSocketManagerHandler.java:220)
  | at 
org.jboss.mq.il.uil2.SocketManager$ReadTask.handleMsg(SocketManager.java:396)
  | at org.jboss.mq.il.uil2.msgs.BaseMsg.run(BaseMsg.java:392)
  | at 
EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:743)
  | at java.lang.Thread.run(Thread.java:595)
  | 
Setting breakpoints and stepping through code, it's trying to use the jbossmq 
security-domain, which isn't the one I want it to use.


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3953995#3953995

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3953995

Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Is there a way to prevent JBossMQ from using the jbossmq jaa

2006-06-27 Thread DrPizza
Hi,

It uses the jbossmq domain by default, which we do not really want it to do.  
The jboss.xml of the MDBs themselves names a different security-domain, and we 
define a SecurityManager using this security-domain which our Queues use.  
However, on deploying the application an attempt is made to authenticate by 
SpyConnection (whatever that is) using null credentials, and that 
authentication attempt gets serviced by the jbossmq security-domain.  Is there 
some way to change this?  Am I neglecting to include some piece of 
configuration somewhere (I can post config files if necessary, though I am not 
sure which ones would be of interest) or is it simply not going to work how I 
want it to work?

We are using 4.0.4 with JBossMQ.  If switching to JBoss Messaging would be 
helpful and simple then I suppose we could do that.


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3953775#3953775

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3953775

Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - org.jboss.web.tomcat.security.FormAuthenticator.matchRequest

2006-05-30 Thread DrPizza

  | protected boolean matchRequest(Request request) {
  | 
  |   // Has a session been created?
  |   Session session = request.getSessionInternal(false);
  |   if (session == null)
  |   return (false);
  | 
  |   // Is there a saved request?
  |   SavedRequest sreq = (SavedRequest)
  |   session.getNote(Constants.FORM_REQUEST_NOTE);
  |   if (sreq == null)
  |   return (false);
  | 
  |   // Is there a saved principal?
  |   if (session.getNote(Constants.FORM_PRINCIPAL_NOTE) == null)
  |   return (false);
  | 
  |   // Does the request URI match?
  |   String requestURI = request.getRequestURI();
  |   if (requestURI == null)
  |   return (false);
  |   return (requestURI.equals(request.getRequestURI()));
  | 
  | }
  | 
surely should be 

  | protected boolean matchRequest(Request request) {
  | 
  |   // Has a session been created?
  |   Session session = request.getSessionInternal(false);
  |   if (session == null)
  |   return (false);
  | 
  |   // Is there a saved request?
  |   SavedRequest sreq = (SavedRequest)
  |   session.getNote(Constants.FORM_REQUEST_NOTE);
  |   if (sreq == null)
  |   return (false);
  | 
  |   // Is there a saved principal?
  |   if (session.getNote(Constants.FORM_PRINCIPAL_NOTE) == null)
  |   return (false);
  | 
  |   // Does the request URI match?
  |   String requestURI = request.getRequestURI();
  |   if (requestURI == null)
  |   return (false);
  |   return (requestURI.equals(sreq.getRequestURI()));
  | 
  | }
  | 
since as things stand they'll always match because the string is being compared 
to itself.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3947648#3947648

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3947648


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnkkid=107521bid=248729dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Re: org.jboss.web.tomcat.security.FormAuthenticator.matchReq

2006-05-30 Thread DrPizza
They don't look the same.

Look at the final return statement.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3947668#3947668

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3947668


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnkkid=107521bid=248729dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - SecurityException in 4.0.3RC2 that didn't occur in 4.0.2

2005-09-13 Thread DrPizza
Hello.

JBAS-2025 was something of a showstopper for us when we came across it, so 
we're trying out 4.0.3RC2 to confirm that the problem is fixed (we expect we 
can wait long enough for 4.0.3 to be finalized, so its RC status doesn't pose a 
problem).

Background:

We're using JACC so that web and ejb security can play nicely with our custom 
LoginModule that talks to our custom AuthN/AuthZ system.  We have two apps; 
essentially a web front-end talking to an ejb back-end (separate .ears because 
real deployments will have the two deployed separately, though for development 
purposes we're running within the same JBoss/VM).  Presently only our web app 
is secured (using declarations in web.xml and occasional isUserInRole type 
stuff); none of the ejb descriptors contain any security stuff at all.

In 4.0.2 this all appeared to work fine; the web app could make whatever EJB 
calls it needed, and its various URLs were properly secured.  However, when 
some CMP beans were updated to use CMRs we ran into the aforementioned bug 
(NPEs when checking the security of CMR methods).  So we're trying out 4.0.3RC2 
to see if that fares any better.

Which leads to the problem:

The web app, upon being deployed (using a ServletContextListener, so at a time 
when there's no user logged in or anything like that), attempts to retrieve 
some data from the back-end EJB app.  This is meant to be unsecured, and in 
4.0.2 that's exactly what it was; unsecured.  The call worked.

However, the same call in 4.0.3RC2 yields a security exception.  The caller 
subject, and hence the principals array, are both null, and the 
ProtectionDomain is deemed to not imply the permission.

What can I do to remedy this?  I'm at a bit of a loss to even know where to 
start, to be honest.


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3894467#3894467

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3894467


---
SF.Net email is Sponsored by the Better Software Conference  EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Re: SecurityException in 4.0.3RC2 that didn't occur in 4.0.2

2005-09-13 Thread DrPizza
I'll try.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3894488#3894488

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3894488


---
SF.Net email is Sponsored by the Better Software Conference  EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Re: SecurityException in 4.0.3RC2 that didn't occur in 4.0.2

2005-09-13 Thread DrPizza
Ugh.  My bad.  Our CVS had stuck angle brackets into the jacc-service.xml which 
meant that it didn't deploy properly.  I hadn't noticed that failure amongst 
all the other stack traces and stuff.  Without a JACC policy provider JACC 
obviously doesn't work properly.  Repairing the file allowed restored 
functionality.


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3894494#3894494

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3894494


---
SF.Net email is Sponsored by the Better Software Conference  EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Re: What is this JBossGenericPrincipal that keeps getting st

2005-09-07 Thread DrPizza
2005-08-30 19:36:29,217 INFO  [STDOUT] java.io.NotSerializableException: 
org.jboss.web.tomcat.security.JBossGenericPrincipal
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1075)
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:291)
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
java.util.LinkedList.writeObject(LinkedList.java:755)
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
sun.reflect.GeneratedMethodAccessor157.invoke(Unknown Source)
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
java.lang.reflect.Method.invoke(Method.java:585)
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:890)
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1333)
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1284)
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1073)
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
java.io.ObjectOutputStream.access$100(ObjectOutputStream.java:135)
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
java.io.ObjectOutputStream$PutFieldImpl.writeFields(ObjectOutputStream.java:1512)
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
java.io.ObjectOutputStream.writeFields(ObjectOutputStream.java:418)
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
javax.security.auth.Subject$SecureSet.writeObject(Subject.java:1281)
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
sun.reflect.GeneratedMethodAccessor156.invoke(Unknown Source)
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
java.lang.reflect.Method.invoke(Method.java:585)
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:890)
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1333)
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1284)
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1073)
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1369)
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
java.io.ObjectOutputStream.defaultWriteObject(ObjectOutputStream.java:380)
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
java.util.Collections$SynchronizedCollection.writeObject(Collections.java:1606)
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
sun.reflect.GeneratedMethodAccessor155.invoke(Unknown Source)
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
java.lang.reflect.Method.invoke(Method.java:585)
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:890)
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1333)
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1284)
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1073)
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1369)
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
java.io.ObjectOutputStream.defaultWriteObject(ObjectOutputStream.java:380)
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
javax.security.auth.Subject.writeObject(Subject.java:919)
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
sun.reflect.GeneratedMethodAccessor154.invoke(Unknown Source)
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | 2005-08-30 19:36:29,217 INFO  [STDOUT]  at 
java.lang.reflect.Method.invoke(Method.java:585)
  | 2005-08-30 19:36:29,233 INFO  [STDOUT]  at 
java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:890)
  | 2005-08-30 19:36:29,233 INFO  [STDOUT]  at 
java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1333)
  | 2005-08-30 19:36:29,233 INFO  [STDOUT]  at 

[JBoss-user] [Security JAAS/JBoss] - What is this JBossGenericPrincipal that keeps getting stuffe

2005-08-30 Thread DrPizza
I keep getting this in 4.0.2 with clustering enabled:

  | java.io.NotSerializableException: 
org.jboss.web.tomcat.security.JBossGenericPrincipal
  | at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1075)
  | at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:291)
  | at java.util.LinkedList.writeObject(LinkedList.java:755)
  | at sun.reflect.GeneratedMethodAccessor157.invoke(Unknown Source)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:585)
  | at 
java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:890)
  | at 
java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1333)

Where is this JBossGenericPrincipal coming from?  What's creating it and why?  
And how can I make it go away?



View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3892295#3892295

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3892295


---
SF.Net email is Sponsored by the Better Software Conference  EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Clustering/JBoss] - Re: How to seperate two clusters within the same network ?

2005-02-07 Thread DrPizza
Changing the multicast address or port works.

It would be nice if one could instead change the partition name, but that 
screws other things up so it's not really worth the effort, unfortunately.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3865583#3865583

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3865583


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - JMX hot deploy causes ClassNotFoundException

2005-02-04 Thread DrPizza
Hello.  I'm using JBoss 4.0.1 in the all configuration with Java 1.4.

I have an ear; the pertinent (I think) bits are structured something like:

  | my-app.ear
  | |
  | \ my-app.war
  |   |
  |   \ WEB-INF
  | |
  | \ classes
  | | |
  | | \ startupServlet.class
  | |
  | \ lib
  | |  |
  | |  \ quartz.jar
  | |
  | \ web.xml
  | 
startupServlet runs on startup; it schedules a bunch of tasks using Quartz.  To 
do this it uses Quartz's XML file format and loads an XML file which in turn 
causes all the Quartz objects to be created.

When I put the ear into my deploy directory, all is well.  The servlet runs on 
deployment, Quartz is loaded and it configures its tasks.

However, if I instead attempt to deploy using JMX hot deployment, it fails to 
run the servlet properly.  The servlet creates a Quartz scheduler object 
successfully, and it creates the Quartz XML processor successfully.  However, 
somewhere deep inside the Quartz XML processor an CNFE is thrown:

  | java.lang.ClassNotFoundException: No ClassLoaders found for: 
org.quartz.xml.CalendarBundle
  | at org.jboss.mx.loading.LoadMgr3.beginLoadTask(LoadMgr3.java:198)
  | at 
org.jboss.mx.loading.RepositoryClassLoader.loadClassImpl(RepositoryClassLoader.java:464)
  | at 
org.jboss.mx.loading.RepositoryClassLoader.loadClass(RepositoryClassLoader.java:374)
  | at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
  | at 
org.apache.commons.digester.ObjectCreateRule.begin(ObjectCreateRule.java:252)
  | at org.apache.commons.digester.Rule.begin(Rule.java:200)
  | at 
org.apache.commons.digester.Digester.startElement(Digester.java:1273)
  | at org.apache.xerces.parsers.AbstractSAXParser.startElement(Unknown 
Source)
  | at 
org.apache.xerces.impl.xs.XMLSchemaValidator.startElement(Unknown Source)
  | at 
org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanStartElement(Unknown Source)
  | at 
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown
 Source)
  | at 
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown 
Source)
  | at org.apache.xerces.parsers.XML11Configuration.parse(Unknown 
Source)
  | at org.apache.xerces.parsers.XML11Configuration.parse(Unknown 
Source)
  | at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
  | at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
  | at org.apache.commons.digester.Digester.parse(Digester.java:1548)
  | at 
org.quartz.xml.JobSchedulingDataProcessor.processFile(JobSchedulingDataProcessor.java:369)
  | at 
org.quartz.xml.JobSchedulingDataProcessor.processFileAndScheduleJobs(JobSchedulingDataProcessor.java:394)
  | at 
org.quartz.xml.JobSchedulingDataProcessor.processFileAndScheduleJobs(JobSchedulingDataProcessor.java:381)
  | at startupServlet.init(startupServlet.java:29)
  | (snip)
  | 

I don't understand why regular deployment be able to find the class properly, 
but JMX hot deployment fail in this way, so I'm at a loss as to how to fix it.  
Any ideas?


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3865208#3865208

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3865208


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Re: Custom LoginModule is rejected by jboss

2004-11-26 Thread DrPizza
anonymous wrote : J2EE 1.4 defines a new JACC permission based contract for 
specifying how to delegate the authorization checks. Support for this exists in 
jboss-4.0.x. 
How does one use this?  I've read all I can find about JACC (the spec, the 
JBoss wiki, etc.), but I'm still frankly nonplussed.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3856528#3856528

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3856528


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user