[JBoss-user] [Installation, Configuration & Deployment] - Re: Scheduler and fixed intervals

2006-06-28 Thread apinto
Sorry, bump!

This problem is really troubling us, because we can't do the job with the 
Scheduler MBean... Does anyone have an idea? Thanks!

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

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

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] - Scheduler and fixed intervals

2006-06-22 Thread apinto
Hi there,

 I'm having some problems with the JBoss Scheduler MBean. I need the 
scheduled job to be executed at a fixed rate, i.e., the time interval between 
consecutive perform() method invocations is constant.

The problem is that the next invocation occurs SchedulePeriod milliseconds 
after the end of the perform() method and not after the begin. So, I can't have 
a fixed rate, because the time that the perform() method takes to execute 
influences the next execution instance...

I'm using JBoss 4.0.3SP1 and Sun JVM 1.5.0_06. Can anyone help me? Is it 
possible to achieve what I need with the Scheduler MBean, or do I have to use 
the Timer MBean?

Thanks in advance,

Arménio Pinto

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

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

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=lnk&kid=107521&bid=248729&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: Timer MBean: different behavior in 4.0.2

2005-12-05 Thread apinto
Hi there,

 Can anyone help us on this one? This is preventing us from upgrading to 
4.0.2! Thanks in advance,

Arménio Pinto

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

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


---
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_idv37&alloc_id865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration & Deployment] - Timer MBean: different behavior in 4.0.2

2005-12-02 Thread apinto
Hi there,

 We noticed a difference in the behavior of the JBoss Timer MBean when 
upgrading from 3.2.3 to 4.0.2. When multiple schedules are programmed for the 
same instance, the notifications aren't generated simultaneously; one 
notification it's generated only after the previous handleNotification(...) 
ends. Is this normal in 4.0.2 or are we making any error?

The relevant code segments are:

jboss-service.xml:

[mbean code="javax.management.timer.Timer"
name="Collector:service=AgentSchedulerTimer"/]


Notification schedule:

notifid=(Integer)server.invoke(
  timer.getObjectName(), "addNotification",
  new Object[] { "Timer", "Timer schedule",
callback, date, new Long(period) },
  new String[] { String.class.getName(),String.class.getName(),
Object.class.getName(), Date.class.getName(),
Long.TYPE.getName() });



Thanks in advance,

Arménio Pinto

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

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


---
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_idv37&alloc_id865&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 Jboss

2005-07-15 Thread apinto
"acardeiradias" wrote : Hello, I have a problem with the scheduler. I saw some 
examples but nothing to much clear. I have a stateless session bean. And i want 
to call one business method of this session bean every five minutes. How could 
i do that?
  | 
  | Thanks in advance.

http://www.huihoo.com/jboss/online_manual/3.0/ch13s58.html

- implement the Schedulable interface;
- create jboss-service.xml;
- deploy.

Arménio Pinto

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

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


---
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_idt77&alloc_id492&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Commas not allowed in the Scheduler arguments

2005-07-13 Thread apinto
Hi there,

I noticed that commas aren't allowed in the Scheduler MBean string arguments, 
because they're used to separate the arguments. This is a significant problem, 
because it's impossible, for example, to pass MBean names to the Schedulable 
objects! (the commas are used to separate the keys in the MBean names, 
according to the best practices)

I checked the Scheduler.java code, and it simply processes the arguments with a 
StringTokenizer(..., ",").

Is there any work scheduled (eheh) regarding this problem? A solution would be 
to escape commas and similar characters with an escape character. This also 
mantains backward compatibility... Should I open a feature request? Should I 
provide a fix for the problem on my own to the JBoss AS mantainers? It's easy 
to solve the problem by replacing the StringTokenizer with regular 
expressions...

Thanks!

Arménio Pinto

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

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


---
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] [EJB/JBoss] - When EJBs play Hide & Seek!

2005-04-26 Thread apinto
Hi there!

 I'm experiencing a rather strange problem with JBoss 3.0.7 (ok, I know 
it's a really old version, but our production systems haven't been tested with 
the recent ones from the 3.0 brach).

If an EJB isn't used for a certain period of time (about 30 minutes), I can't 
reference it anymore from JNDI! Now, if I "browse" the JNDI directory where the 
EJBs are (with InitialContext.list()), the first time they don't show up, but 
if I repeate the operation, they appear! And everything works fine! This only 
happens with the EJBs from a certain EAR... But I've double checked the 
deployment descriptors and everything seems to be fine.

I've searched the foruns and wiki and haven't found anything relevant... Has 
anyone experienced this before? Thanks in advance,

ArmÃnio Pinto

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

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


---
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://ads.osdn.com/?ad_ide95&alloc_id396&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Automatic topic/queue creation

2005-04-08 Thread apinto
We were trying to replicate the original problem in a test environment, but no 
"dummy" queue is created! Originally, we thought that the replacement queue was 
being created because of the connection loss, but removing the network cable 
from the machine where the MDB and the JMS proxy is running, caused nothing!

Can anyone explain me what's happening? What can cause the MDB to create a 
replacement queue in runtime and without deployments/changes going on?

Thanks,

ArmÃnio Pinto

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

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


---
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://ads.osdn.com/?ad_ide95&alloc_id396&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Automatic topic/queue creation

2005-04-06 Thread apinto
Scott, Adrian, thanks for que quick reply!

As JBAS-1645 already covers the problem pretty well, I wont create a new bug 
report as suggested by Scott. :-)

Is there any workaround we can take in order to prevent this situation in JBoss 
3.2.6? We have that version in production environment and upgrading to 4.X it's 
something out os question. Also, JBoss 4.0.2, where the 
CreateJBossMQDestination option is supported, wasn't release yet!

Thanks again,

ArmÃnio Pinto

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

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


---
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://ads.osdn.com/?ad_ide95&alloc_id396&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Automatic topic/queue creation

2005-04-05 Thread apinto
Hi there,

 We're using JBoss 3.2.6 and we have an MDB that listens in a remote JMS 
queue (configured with the resource adapter method). The problem is that when 
the network connection is lost between the machines where the JMS service and 
the MDB are, a "dummy" queue in created in the MDB side, preventing further 
message reception (when the network connection comes up).

I knew that this was a characteristic of the MDB deployment (when the 
topic/queue doesn't exist, create one with the same name)... But what I really 
want to know is how to turn it off! Is there any configuration in the MDB 
deployment descriptior that I can tune in order to change this behaivour?

Also, does anyone know how the container checks if the topic that "feeds" an 
MDB is online? Is it by pooling? If so, what's the default pooling interval and 
is there a way to change it?


Thanks a lot in advance!

ArmÃnio Pinto

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

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


---
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://ads.osdn.com/?ad_ide95&alloc_id396&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Automatic JMS topic/queue creation

2005-01-10 Thread apinto
Hi there,

 In JBoss 3.2.3, if I try to deploy an MBD and the corresponding local JMS 
topic/queue isn't deployed, a "dummy" one is created (with the same JNDI name). 
How do I prevent this?

I'm experiencing a similar problem if the MDB listens in an external (that is, 
in another JBoss instance) JMS topic/queue, with the proper proxy/invoker 
configuration: if the network connection between the JMS service and the MDB 
fails, a "dummy" topic/queue is created in the MBD side.

Is there any configuration I need to change to prevent this situations? Thanks 
in advance,

ArmÃnio Pinto

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

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


---
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] [EJB/JBoss] - Interconnectivity between different JBoss version

2004-11-24 Thread apinto
Hi there,

 We're currently migrating from JBoss 3.0.7 to JBoss 3.2.3 and defined a 
scenario where, in a first step, some components of the system are running on 
3.2.3 and the others keep running on 3.0.7.

The problem is that the 3.2.3 components fail do access the 3.0.7 ones because 
of ClassCastExceptions... It makes sense: they're trying to access class 
definitions in the 3.0.7 container with the 3.2.3 API...

Is there anything we can do to solve the problem? Has anyone experienced this 
before?

Thanks in advance,
ArmÃnio Pinto

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

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


---
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


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: JBossMQ performance

2004-11-23 Thread apinto
Hi there,

 This performance issue is preventing us from delivering the system to the 
client. Can anyone, please, give us a hand or some hint? Thanks in advance,

ArmÃnio Pinto

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

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


---
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


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: How do I configure an MDB to talk to a remote queue?

2004-11-22 Thread apinto
Telefona ao Carlos Dias!

ArmÃnio Pinto

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

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


---
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


[JBoss-user] [Messaging, JMS & JBossMQ] - JBossMQ performance

2004-11-22 Thread apinto
Hi there,

 We're currently having some problems with JBossMQ in terms of scalability 
in the number of messages. Our application has an operation cicle of one hour; 
if all work is done before the hour ends, then the application stays in an idle 
state.

The MDB is slower consuming the messages from the topic than the other 
application producing them; so, the topic starts accumulating messages. This 
MDB can have 30 instances, and I can see them being used in the begining of the 
operation, when the topic has no messages accumulated.

But when the messages start to accumulate, only one or two instances of the MDB 
are created... And the system gets slower and slower, going well after the 
hour. Is this caused by any wrongly configured parameter, or is it that JBossMQ 
can't distribute the messages at a sufficient high rate?

Also, I got to the conclution that JBossMQ performance doesn't follow a liner 
relationship with the number of messages. In fact, we noticed that a 30% 
increase in messages has a 50% decrease in performance.

Is there anything we can do besides switching from JBossMQ to another 
implementation? Thanks in advance,

We're using JBoss version 3.2.3 and the topic is non-durable.

ArmÃnio Pinto

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

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


---
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


[JBoss-user] [Messaging, JMS & JBossMQ] - Unsolvable

2004-08-06 Thread apinto
Hi there,

 First, I would like to say that I've read the FAQ, the READ THIS FIRST and 
searched for posts regarding this issue. But, although it's a common question, nothing 
seams to solve my problem.

I have an application (EAR) that creates a JMS topic, that has two durable 
subscriptors and one non-durable, all loaded in the same JBoss instance. After some 
time running, or after periods of higher load, the JMS subsystem starts throwing "ping 
timeout" messages, similar to the following:


2004-08-06 07:49:28,284 WARN  [org.jboss.mq.Connection] Connection failure:
org.jboss.mq.SpyJMSException: Connection Failed; - nested throwable: 
(java.io.IOException: ping timeout.)
at org.jboss.mq.Connection.asynchFailure(Connection.java:718)
at org.jboss.mq.Connection$PingTask.run(Connection.java:1311)
at 
EDU.oswego.cs.dl.util.concurrent.ClockDaemon$RunLoop.run(ClockDaemon.java:364)
at java.lang.Thread.run(Thread.java:534)
Caused by: java.io.IOException: ping timeout.
at org.jboss.mq.Connection$PingTask.run(Connection.java:1303)
... 2 more


What can I do, in terms of debug or configuration, to find and solve the problem? 
Thanks in advance,

Armenio Pinto

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

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


---
This SF.Net email is sponsored by OSTG. Have you noticed the changes on
Linux.com, ITManagersJournal and NewsForge in the past few weeks? Now,
one more big change to announce. We are now OSTG- Open Source Technology
Group. Come see the changes on the new OSTG site. www.ostg.com
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Problems loading properties file

2004-08-04 Thread apinto
Hi there,

 I'm having some problems with my application in JBoss 3.0.7 that I don't have 
with JBoss 3.2.3. There are 3 EARs, each with an etc/ directory in the root, and with 
a properties file inside the directory. Each EAR was beans that access this property 
files. In 3.2.3, the beans load the files normally with the following code:


InputStream input=this.getClass().getClassLoader().getResourceAsStream(filepath);


... where filepath is something like "etc/atm.properties". But in 3.0.7 I get a 
FileNotFoundException. Can anyone please help me, and tell me what am I doing wrong? 
Thanks in advance,

ArmÃnio Pinto

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

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


---
This SF.Net email is sponsored by OSTG. Have you noticed the changes on
Linux.com, ITManagersJournal and NewsForge in the past few weeks? Now,
one more big change to announce. We are now OSTG- Open Source Technology
Group. Come see the changes on the new OSTG site. www.ostg.com
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: Dynamically create DataSources

2004-07-13 Thread apinto
Humm... Yes, that could work, but it's kind of a "medieval" approach, isn't it :)? 
Also, I think there are some timing issues involved, as the descriptor is 
auto-deployed. Do you know any drawback about using "raw" connections, that is, 
created directly with a new Connection()?

Thank you a lot,
Armenio Pinto

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

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


---
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 - 
digital self defense, top technical experts, no vendor pitches, 
unmatched networking opportunities. Visit www.blackhat.com
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: Dynamically create DataSources

2004-07-13 Thread apinto
darranl, thanks for your reply. I searched the foruns and found some info, but 
unfortunatly, everyone seems to conclude that (currently) this is impossible to do.

The question came up because I was having some problems connecting DIRECTLY to a 
database inside my bean, that is, with a new Connection(), instead of using 
DataSources. Is there any issue with this approach? After some time, Oracle started 
throwing "cannot alocate shared memory" errors, and a database restart was needed to 
solve the problem.

So, I tryed the DataSource approach, and the problem was solved. But this is 
impossible, because the database access information is delivered in runtime, so a 
runtime and programtically DataSource creation was necessary.

If anyone can help me it would be really great, because the production environment is 
currently in hold because of this issue.

Thanks in advance,
Armenio Pinto

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

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


---
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 - 
digital self defense, top technical experts, no vendor pitches, 
unmatched networking opportunities. Visit www.blackhat.com
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Dynamically create DataSources

2004-07-13 Thread apinto
Hi there,

 Is is possible to dynamically (for example, inside a bean) to create a new 
DataSource in JBoss 3.2.3? Thanks in advance,

Armenio Pinto

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

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


---
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 - 
digital self defense, top technical experts, no vendor pitches, 
unmatched networking opportunities. Visit www.blackhat.com
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: Deployment failure with exploded SARs

2004-07-09 Thread apinto
Hi there,

Sorry for being annoying, but this is urgent, because the production environment is 
currently on standby. Can anyone help me, please?

Armenio Pinto

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

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


---
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 - 
digital self defense, top technical experts, no vendor pitches, 
unmatched networking opportunities. Visit www.blackhat.com
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Deployment failure with exploded SARs

2004-07-08 Thread apinto
Hi there,

 I'm having some problems while starting JBoss 3.2.3 with "exploded" SARs in the 
deployment directory. Everything seems to be fine with the deployment descriptors...  
If JBoss is started without the exploded SARs, and the deployment is done afterwards, 
everything works fine.

The following exception is thrown and after that, the deployment function doesn't work 
anymore:

2004-07-08 11:42:34,506 WARN  [org.jboss.ejb.EjbModule] Could not load the 
org.jboss.resource.connectionmanager.CachedConnectionInterceptor interceptor for this 
container
java.lang.ClassNotFoundException: No ClassLoaders found for: 
org.jboss.resource.connectionmanager.CachedConnectionInterceptor
at org.jboss.mx.loading.LoadMgr3.beginLoadTask(LoadMgr3.java:161)
at 
org.jboss.mx.loading.UnifiedClassLoader3.loadClassImpl(UnifiedClassLoader3.java:169)
at 
org.jboss.mx.loading.UnifiedClassLoader3.loadClass(UnifiedClassLoader3.java:123)
at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
at 
org.jboss.util.loading.DelegatingClassLoader.loadClass(DelegatingClassLoader.java:77)
at 
org.jboss.mx.loading.LoaderRepositoryClassLoader.loadClass(LoaderRepositoryClassLoader.java:78)
at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
at 
org.jboss.util.loading.DelegatingClassLoader.loadClass(DelegatingClassLoader.java:77)
at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
at org.jboss.ejb.EjbModule.addInterceptors(EjbModule.java:811)
at org.jboss.ejb.EjbModule.initializeContainer(EjbModule.java:698)
at org.jboss.ejb.EjbModule.createStatelessSessionContainer(EjbModule.java:502)
at org.jboss.ejb.EjbModule.createContainer(EjbModule.java:457)
at org.jboss.ejb.EjbModule.createService(EjbModule.java:280)
at org.jboss.system.ServiceMBeanSupport.create(ServiceMBeanSupport.java:158)
at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at 
org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546)
at 
org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:976)
at $Proxy14.create(Unknown Source)
at org.jboss.system.ServiceController.create(ServiceController.java:310)
at org.jboss.system.ServiceController.create(ServiceController.java:243)
at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at 
org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
at $Proxy12.create(Unknown Source)
at org.jboss.ejb.EJBDeployer.create(EJBDeployer.java:523)
at org.jboss.deployment.MainDeployer.create(MainDeployer.java:786)
at org.jboss.deployment.MainDeployer.create(MainDeployer.java:778)
at org.jboss.deployment.MainDeployer.create(MainDeployer.java:778)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:641)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:605)
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.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
at $Proxy6.deploy(Unknown Source)
at 
org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:302)
at 
org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:476)
at 
org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:201)
at 
org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:274)
at org.jboss.system.ServiceMBeanSupport.start(ServiceMBeanSupport.java:192)
at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at 
org.jboss.mx.capabilit

[JBoss-user] [Installation & Configuration] - JBoss and Log4j

2004-04-14 Thread apinto
Hi there,

 I'm trying to write J2EE code in a way that it's independent from the application 
server solution. So, a question arises when deciding about the logging subsystem: is 
it ok to directly use Log4j interfaces or is it better to use the JBoss logging 
wrapper? Does this wrapper give more functionality or is it only a isolation layer for 
Log4j? Thanks in advance,

ArmÃÂnio Pinto


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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id70&alloc_id638&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Maximum number os bean instances

2004-03-16 Thread apinto
Hi there,

 Does JBoss provide any configuration to control the maximum number of instances 
of a given bean? Thanks in advance,

ArmÃnio Pinto

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

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


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id70&alloc_id638&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user