[JBoss-user] [Messaging, JMS & JBossMQ] - CurrentMemoryUsage skyhigh...

2005-03-23 Thread arnoraps
When i run my application for about 2 hours, the java.exe grows up to 615 MB, 
but whithout out of memory errors. When i look in the jmx console i see that 
the MessageCache bean reports the CurrentMemoryUsage is 516 MB, but my 
MaxMemoryMark is 60 MB (highmemorymax is 50 MB)

I use mysql-jdbc2-service for my jms database.

Most message here are about out of memory errors and hsqldb, but i have no clue 
why the memory usage is so high, even with the default normal memory mark 
settings.



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

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


---
This SF.net email is sponsored by: 2005 Windows Mobile Application Contest
Submit applications for Windows Mobile(tm)-based Pocket PCs or Smartphones
for the chance to win $25,000 and application distribution. Enter today at
http://ads.osdn.com/?ad_id=6882&alloc_id=15148&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - How to start a new writing a new Resource Adapter

2005-03-21 Thread arnoraps
I want to have a modbus resource adapter to pool my connections. Currently, i 
have a modbus driver in java (open source) that does the job, but when running 
it from a bean, the open connection time is about 4 seconds, which is far too 
long. 

The main delay is in the java.net.socket call, so is it possible to pool this?



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

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


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


[JBoss-user] [Beginners Corner] - new Socket slow on jboss, fast on standalone

2004-10-20 Thread arnoraps
Why is using java.net.Socket so slow when used from a bean in jboss? Connecting then 
takes about 4-5 seconds. Connecting to mysql (not thru a connection pool) is only 20 
msec. 

When i use the same code in a standalone java application, connecting with a new 
Socket command is very fast, so the problemn is not my machine, or my network...

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: Modbus in pooled connection?

2004-10-20 Thread arnoraps
En howto write a ResourceAdapter for an non JDBC? All examples in de docs/example/jca 
directory are aiming at jdbc

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Modbus in pooled connection?

2004-10-18 Thread arnoraps
I have a modbus driver class, which works perfectly, except that opening a connection 
(new Socket) will take about 4-5 seconds. 

So i want to pool connections, hoping that i don't have to reconnect, since connecting 
is the only real slow step.

Is this possible? In fact the class just uses the standaard java socket 
(java.net.Socket) class, can that one by used in a connection pool?
And what would be the best way to implent that? Examples are aiming at database 
connections...

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

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


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Singleton topic subscriber not working

2004-09-10 Thread arnoraps
According to the wiki i should configure my message driven bean with:

  | 
  |   testBean
  |   topic/testTopic
  |   Singleton Message Driven Bean
  | 
  | 

But still on all nodes of my cluster the mbean responses to any message in the topic, 
but i want that only one instance responses.

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

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


---
This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170
Project Admins to receive an Apple iPod Mini FREE for your judgement on
who ports your project to Linux PPC the best. Sponsored by IBM. 
Deadline: Sept. 13. Go here: http://sf.net/ppc_contest.php
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Failover datasource? bmp or cmp

2004-09-10 Thread arnoraps
I want to use a cmp or bmp with a datasource, but when the first datasource isn't 
available it should use a second datasource.

Is this possible with a cmp or should i use (and how) a bmp?

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

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


---
This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170
Project Admins to receive an Apple iPod Mini FREE for your judgement on
who ports your project to Linux PPC the best. Sponsored by IBM. 
Deadline: Sept. 13. Go here: http://sf.net/ppc_contest.php
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user