[JBoss-user] [Installation, Configuration & Deployment] - Re: Convenience class not printing Log4J debug statements

2006-06-24 Thread CasaDelNorte
Problem solved. I feel silly - I had the console appender filtered to INFO when 
it should have been DEBUG.


  |
  |   
  |   
  |   
  | 
  |   
  |  
  |  
  |   
  |
  | 

Thanks for the extra eyes.


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953223#3953223

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3953223

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=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration & Deployment] - Re: Convenience class not printing Log4J debug statements

2006-06-23 Thread CasaDelNorte
Scott - I'm only using info in the test so it prints. In this object, for some 
reason, I cannot get logger.debug() to print *anything*.

My appender definition is:


  |
  |   
  |   
  |   
  |   
  |   
  |   
  |  
  |   
  |
  | 


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953008#3953008

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3953008

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=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration & Deployment] - Convenience class not printing Log4J debug statements

2006-06-22 Thread CasaDelNorte
I'm hoping someone brighter than me can figure this out... 

I have a convenience class, ApplicationUtil, that contains a few 
application-specific functions.

In this case, my log4j.xml file contains the following:

  |
  |   
  |   
  |
  | 
which apparently works, sort of, except that the logger.debug messages don't 
print. Yet logger.isDebugEnabled() returns true. I have many other classes that 
work just fine with debug - this is the first time I've seen this.

Here's a cut/paste from the output of the application:


  | 19:32:00,027 INFO  [ApplicationUtil] logger.isDebugEnabled() = true
  | 19:32:00,027 INFO  [ApplicationUtil] ISDEBUGENABLED 
runScheduledJobOnThisServer(Service Opt Out Handler) called
  | 19:32:00,028 INFO  [ApplicationUtil] TEST INFO 
runScheduledJobOnThisServer(Service Opt Out Handler) called
  | 19:32:00,029 WARN  [ApplicationUtil] TEST WARN 
runScheduledJobOnThisServer(Service Opt Out Handler) called
  | 19:32:00,029 ERROR [ApplicationUtil] TEST ERROR 
runScheduledJobOnThisServer(Service Opt Out Handler) called
  | 19:32:00,029 FATAL [ApplicationUtil] TEST FATAL 
runScheduledJobOnThisServer(Service Opt Out Handler) called
  | 19:32:00,030 INFO  [STDOUT] SYSTEMOUT runScheduledJobOnThisServer(Service 
Opt Out Handler) called
  | 

You can clearly see that isDebugEnabled() returns true, yet there's no 
logger.debug output.

Here's the code, stripped of comments and other functions:


  | import org.apache.log4j.Logger;
  | 
  | public class ApplicationUtil
  | {
  |static Logger logger = Logger.getLogger(ApplicationUtil.class);
  | 
  |private ApplicationUtil()
  |{
  |}
  | 
  |public static boolean runScheduledJobOnThisServer(
  |   String jobName, String serverName)
  |{
  |   logger.info("logger.isDebugEnabled() = " + logger.isDebugEnabled());
  |   if (logger.isDebugEnabled())
  |   {
  |  logger.info("ISDEBUGENABLED runScheduledJobOnThisServer(" + 
jobName + ") called");
  |   }
  |   logger.debug("TEST DEBUG runScheduledJobOnThisServer(" + jobName + ") 
called");
  |   logger.info("TEST INFO runScheduledJobOnThisServer(" + jobName + ") 
called");
  |   logger.warn("TEST WARN runScheduledJobOnThisServer(" + jobName + ") 
called");
  |   logger.error("TEST ERROR runScheduledJobOnThisServer(" + jobName + ") 
called");
  |   logger.fatal("TEST FATAL runScheduledJobOnThisServer(" + jobName + ") 
called");
  |   System.out.println("SYSTEMOUT runScheduledJobOnThisServer(" + jobName 
+ ") called");
  |   return true;
  |}
  |
  | }
  | 

Using 4.0.4.GA

Any thoughts, impressions, suggestions, hints, etc. will be greatly appreciated.

Larry

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952850#3952850

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952850

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=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Using JCharset with JBOSS-3.2.5

2006-01-14 Thread CasaDelNorte
EUREKA

I'm running Mac OSX, JBosss 4.0.3SP1, and Java 1.5.0 on my development machine.

Placing the jcharset.jar in the following directory WORKS:
/System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Home/lib/ext

This is a great library - it automatically decodes UTF-7 variants, K018-U and 
K018-RU, and a host of others. Great job! It's going to save me a ton of time.

Larry

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3917482#3917482

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3917482


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Using JCharset with JBOSS-3.2.5

2006-01-13 Thread CasaDelNorte
Eitan,

Did you ever resolve this? I'm trying to do the same with JBoss 4.0.3SP1, and 
to date have not been successful.

Thanks.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3917469#3917469

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3917469


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration & Deployment] - Exceptions thrown by Javamail and UTF-7 in JBoss

2006-01-11 Thread CasaDelNorte
I've written a bounce back email system for our company (using javamail), and 
some messages are arriving encoded in UTF-7 variants. 

It's eating my lunch.

I stumbled across what appears to be a totally cool OpenSource product - 
JCharset (http://www.freeutils.net/source/jcharset/), which, it would seem, 
would solve this. 

Several posts on the internet indicate people have indeed copied the jar into 
their apps and it works fine (most using Coldfusion). Problem is, mine is not 
working. Every time the mail processor encounters a UTF-7 email, it throws an 
exception. 

I've added jcharset.jar to my CLASSPATH variable. I've copied the jcharset.jar 
file into {jboss}/server/default/lib, {jboss}/lib, and even into WEB-INF of my 
application. Restarting the server after every change. No change in behavior.

Running: 
Mac OSX 10.4.4
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_05-83)
Javamail 1.4ea
JAF 1.1ea
JCharset 1.2.1

Here's an exception example:


  | 16:44:09,927 ERROR [BouncedMailJob] Unknown encoding type: null
  | java.io.UnsupportedEncodingException: unicode-1-1-utf-7
  | at sun.io.Converters.getConverterClass(Converters.java:218)
  | at sun.io.Converters.newConverter(Converters.java:251)
  | at 
sun.io.ByteToCharConverter.getConverter(ByteToCharConverter.java:68)
  | at 
sun.nio.cs.StreamDecoder$ConverterSD.(StreamDecoder.java:224)
  | at 
sun.nio.cs.StreamDecoder$ConverterSD.(StreamDecoder.java:210)
  | at 
sun.nio.cs.StreamDecoder.forInputStreamReader(StreamDecoder.java:77)
  | at java.io.InputStreamReader.(InputStreamReader.java:83)
  | at com.sun.mail.handlers.text_plain.getContent(text_plain.java:82)
  | at 
javax.activation.DataSourceDataContentHandler.getContent(DataHandler.java:767)
  | at javax.activation.DataHandler.getContent(DataHandler.java:519)
  | at 
javax.mail.internet.MimeBodyPart.getContent(MimeBodyPart.java:618)
  | at 
com.imc.quartz.jobs.BouncedMailJob.dumpPart(BouncedMailJob.java:571)
  | at 
com.imc.quartz.jobs.BouncedMailJob.dumpPart(BouncedMailJob.java:628)
  | at 
com.imc.quartz.jobs.BouncedMailJob.execute(BouncedMailJob.java:260)
  | at org.quartz.core.JobRunShell.run(JobRunShell.java:195)
  | at 
org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:520)
  | 

Has anyone run across this before? Or have any ideas? I'm stumped.

Thanks

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3917019#3917019

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3917019


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: Scheduler Issue on AS4.0.3RC1?

2005-07-13 Thread CasaDelNorte
That seems to be a true statement.

Consider the following simple test case:

import org.jboss.varia.scheduler.Schedulable;
  | 
  | public class TestScheduler implements Schedulable {
  | public TestScheduler() {
  | super();
  | }
  |  
  | public void perform(java.util.Date date, long param) {
  | try {
  | System.out.println("calling TestScheduler");
  | }
  | catch (Exception e) {
  | System.out.println("Exception " + 
e.getLocalizedMessage());
  | e.printStackTrace();
  | }
  | }
  | }
  | 
with the following in scheduler-services.xml:


  |   
  | true
  | TestScheduler
  | NOW
  | 1000
  | 1
  |   
  | 
Saving (deploying) the scheduler-services.xml file results in:

anonymous wrote : --- MBeans waiting for other MBeans ---
  | ObjectName: jboss:service=TestScheduler
  |   State: FAILED
  |   Reason: org.jboss.deployment.DeploymentException: Exception setting 
attribute [EMAIL PROTECTED] on mbean jboss:service=TestScheduler; - nested 
throwable: (java.security.InvalidParameterException: Given class TestScheduler 
is not  not found)
  | 
  | --- MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM ---
  | ObjectName: jboss:service=TestScheduler
  |   State: FAILED
  |   Reason: org.jboss.deployment.DeploymentException: Exception setting 
attribute [EMAIL PROTECTED] on mbean jboss:service=TestScheduler; - nested 
throwable: (java.security.InvalidParameterException: Given class TestScheduler 
is not  not found)
  | 

which implies to me there's most likely a class loader issue, or that the 
Scheduler is deprecated.

So - I'm really confused. We have some fairly simple schedule operations where 
the Scheduler has worked well. Is the scheduler deprecated? Is this a bug? 
Should we be using Quartz or similar products? 





View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3884767#3884767

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3884767


---
This SF.Net email is sponsored by the 'Do More With Dual!' webinar happening
July 14 at 8am PDT/11am EDT. We invite you to explore the latest in dual
core and dual graphics technology at this free one hour event hosted by HP,
AMD, and NVIDIA.  To register visit http://www.hp.com/go/dualwebinar
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: Scheduler Issue on AS4.0.3RC1?

2005-07-07 Thread CasaDelNorte
BTW - what's really weird about this - everything else works fine - just the 
scheduled objects it can't find. All other classes referenced from the JSP 
pages work fine. I've tried deploying both as exploded and packaged war files, 
no difference. And in the exploded WAR, I've verified that the 
com.imc.scheduled.InventoryAvailabilityHandler.class is there, just as you'd 
expect, under the WEB-INF/classes directory.


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3884037#3884037

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3884037


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Scheduler Issue on AS4.0.3RC1?

2005-07-06 Thread CasaDelNorte
I'm stumped. I've had some scheduled classes running fine until recently. Maybe 
I've messed something up, but...

In the logs, it appears that JBoss can't find the classes. I've confirmed, 
they're in /src/com/ exactly like the scheduler-service.xml states:

  
  | true
  | com.imc.scheduled.InventoryAvailabilityHandler
  | 17,US,[EMAIL 
PROTECTED],false
  | int,java.lang.String,java.lang.String,boolean
  | NOW
  | 8640
  | -1
  |   

My class contains:
package com.imc.scheduled;
  | ...
  | public class InventoryAvailabilityHandler implements Schedulable {
  | protected int companyID;
  | protected String countryCd;
  | protected Address[] mailTo = null;
  | protected boolean debug = true;
  | 
  | /**
  |  * Contructor that loads the parameters for the scheduled object.
  |  * 
  |  * To control the parameters for this report, refer to the file 
  |  * scheduler-service.xml in the deploy directory.
  |  * 
  |  * @param companyid  the company identifier
  |  * @param countryCd  the number of top vendors to include in the report
  |  * @param mailToList   the string, pipe (|) delimited, of all 
persons that are to receive this eReport  
  |  */
  | public InventoryAvailabilityHandler(int companyID, java.lang.String 
countryCd, java.lang.String mailToList, boolean debug) {
  | super();
  | 
  | ...

4 parameters, that match the content.

Here are some significant snippets from the server.log:

anonymous wrote : 15:59:04,532 INFO  [Scheduler] Failed to find: 
com.imc.scheduled.InventoryAvailabilityHandler
  | java.lang.ClassNotFoundException: No ClassLoaders found for: 
com.imc.scheduled.InventoryAvailabilityHandler
  | at org.jboss.mx.loading.LoadMgr3.beginLoadTask(LoadMgr3.java:198)
  | at 
org.jboss.mx.loading.RepositoryClassLoader.loadClassImpl(RepositoryClassLoader.java:475)
  | at 
org.jboss.mx.loading.RepositoryClassLoader.loadClass(RepositoryClassLoader.java:377)
  | at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
  | at 
org.jboss.varia.scheduler.Scheduler.setSchedulableClass(Scheduler.java:505)
  | 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.AttributeDispatcher.invoke(AttributeDispatcher.java:121)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
  | at 
org.jboss.mx.interceptor.ModelMBeanAttributeInterceptor.invoke(ModelMBeanAttributeInterceptor.java:88)
  | at 
org.jboss.mx.interceptor.PersistenceInterceptor.invoke(PersistenceInterceptor.java:61)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.setAttribute(AbstractMBeanInvoker.java:442)
  | at 
org.jboss.mx.server.MBeanServerImpl.setAttribute(MBeanServerImpl.java:593)
  | at 
org.jboss.system.ServiceConfigurator.setAttribute(ServiceConfigurator.java:568)
  | at 
org.jboss.system.ServiceConfigurator.configure(ServiceConfigurator.java:273)
  | at 
org.jboss.system.ServiceConfigurator.internalInstall(ServiceConfigurator.java:162)
  | at 
org.jboss.system.ServiceConfigurator.install(ServiceConfigurator.java:116)
  | at 
org.jboss.system.ServiceController.install(ServiceController.java:202)
  | at sun.reflect.GeneratedMethodAccessor10.invoke(Unknown Source)
  | 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:141)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:245)
  | at 
org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:644)
  | at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:176)
  | at $Proxy4.install(Unknown Source)
  | at org.jboss.deployment.SARDeployer.create(SARDeployer.java:220)
  | at org.jboss.deployment.MainDeployer.create(MainDeployer.java:919)
  | at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:773)
  | at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:737)
  | at sun.reflect.GeneratedMethodAccessor8.invoke(Unknown Source)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(De

[JBoss-user] [Beginners Corner] - Re: Starting a function by using a timer

2005-01-17 Thread CasaDelNorte
If you touch (Linux) or resave the scheduler-service.xml file after JBoss has 
finished starting, you'll likely get your services started. 

Hope this helps.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862406#3862406

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862406


---
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almosthttp://www.thinkgeek.com/sfshirt
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [The Lizzard's corner] - Re: Where is JBoss AS heading in terms of scheduling ?

2005-01-17 Thread CasaDelNorte
This is a great question - did you ever get an answer? Any current links?

I'm completely puzzled about the "right" way to schedule services in JBoss.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862399#3862399

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862399


---
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almosthttp://www.thinkgeek.com/sfshirt
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: Scheduler - ClassNotFoundException

2004-08-11 Thread CasaDelNorte
OK - I'm confused. I have the same problem - my scheduled job I've created in my 
application won't start until the application is deployed. I get an error on initial 
load with [Scheduler] Failed to find: com.mycompany.MyScheduledJob.

My question is - how do you get this to work - or what's the "best practices" 
alternative? Does this have to be created in a jar and placed in the lib directory 
(which seems weird)?

Once the application has been loaded, I can update (resave) the scheduler-service.xml 
and things work just fine. 

Thanks for any pointers you can provide.
Larry


My scheduler-service.xml contains:


  |   
  | true
  | com.mycompany.MyScheduledJob
  | test,123
  | int,int,java.lang.String
  | NOW
  | 1000
  | 1
  |   
  | 


The error generated:


  | java.lang.ClassNotFoundException: No ClassLoaders found for: 
com.mycompany.MyScheduledJob
  | at org.jboss.mx.loading.LoadMgr3.beginLoadTask(LoadMgr3.java:185)
  | at 
org.jboss.mx.loading.UnifiedClassLoader3.loadClassImpl(UnifiedClassLoader3.java:178)
  | at 
org.jboss.mx.loading.UnifiedClassLoader3.loadClass(UnifiedClassLoader3.java:132)
  | at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
  | at 
org.jboss.varia.scheduler.Scheduler.setSchedulableClass(Scheduler.java:549)
  | 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:324)
  | at 
org.jboss.mx.server.AttributeDispatcher.dispatch(AttributeDispatcher.java:38)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:61)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:53)
  | at 
org.jboss.mx.interceptor.ModelMBeanAttributeInterceptor.invoke(ModelMBeanAttributeInterceptor.java:63)
  | at 
org.jboss.mx.interceptor.PersistenceInterceptor.invoke(PersistenceInterceptor.java:70)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.setAttribute(AbstractMBeanInvoker.java:375)
  | at 
org.jboss.mx.server.MBeanServerImpl.setAttribute(MBeanServerImpl.java:455)
  | at 
org.jboss.system.ServiceConfigurator.setAttribute(ServiceConfigurator.java:486)
  | at 
org.jboss.system.ServiceConfigurator.configure(ServiceConfigurator.java:315)
  | at 
org.jboss.system.ServiceConfigurator.internalInstall(ServiceConfigurator.java:160)
  | at 
org.jboss.system.ServiceConfigurator.install(ServiceConfigurator.java:114)
  | at org.jboss.system.ServiceController.install(ServiceController.java:198)
  | at sun.reflect.GeneratedMethodAccessor21.invoke(Unknown Source)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:324)
  | at 
org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:60)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:61)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:53)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:185)
  | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:473)
  | at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:176)
  | at $Proxy4.install(Unknown Source)
  | at org.jboss.deployment.SARDeployer.create(SARDeployer.java:204)
  | at org.jboss.deployment.MainDeployer.create(MainDeployer.java:790)
  | at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:644)
  | at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:608)
  | at sun.reflect.GeneratedMethodAccessor16.invoke(Unknown Source)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:324)
  | at 
org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:60)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:61)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:53)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:185)
  | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:473)
  | at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:176)
  | at $Proxy7.deploy(Unknown Source)
  | at 
org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.

[JBoss-user] [Management, JMX/JBoss] - Re: Scheduler - ClassNotFoundException

2004-07-23 Thread CasaDelNorte
Heard anything about this? I have exactly the same problem. We just upgraded to JBoss 
3.2.5 and still experience the same behavior. 

Oddly, once we manually save the scheduler-service.xml file in the deploy directory 
after the server has started up, it works fine.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3843134#3843134

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3843134


---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user