[JBoss-user] [Management, JMX/JBoss] - Anyone succeeded with monitoring-service.xml configuration ?

2005-04-07 Thread ionel
Hi,

I'm trying to get monitoring service working.
I want JBoss to send me a mail when memory goes high.

I changed the default parameters in the 
org.jboss.monitor.alerts.EmailAlertListener, uncommented it, uncommented 
org.jboss.monitor.services.NotificationListener and 
org.jboss.monitor.services.MemoryMonitor too.

I also set the thresholds of org.jboss.monitor.services.MemoryMonitor to lower 
values.

Deployment is good but after 2 seconds, I get an
"INFO  [org.jboss.monitor.services.MemoryMonitor] Stopping memory monitor 
thread"
in the log file and no mails nor console message are ever processed.

Did I miss something ?

Thanks,
ionel

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

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


---
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] [Installation & Configuration] - how to limit the number of concurrent mail sent through java

2005-03-31 Thread ionel
Hi there,

Our ISP mail server drops mails if more than three connections from the same IP 
are made simultaneously (to prevent spam)

Our application often send more than this maximum 3 messages simultaneously.

This leads to dropped messages and angry users :(

Question is : how to limit the number of simultaneous mail sent from session 
retrieved by java:/Mail ? Either by configuration tips or developpement 
workarounds.

Thanks,
Ionel

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

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


---
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] [Security & JAAS/JBoss] - Re: is j_uri exist in jboss???

2005-03-02 Thread ionel
I did this valve

public class FormRedirectAuthenticator extends FormAuthenticator {
  | 
  | public boolean authenticate(HttpRequest request, HttpResponse response,
  | LoginConfig arg2) throws IOException {
  | 
  | boolean formOk = super.authenticate(request, response, arg2);
  | 
  | if (formOk) {
  | System.out.println("Performing changes ...");
  | request.setRequestURI("/test-login/secured/index.jsp");
  | request.setContextPath("/test-login");
  | request.setServletPath("/secured/index.jsp");
  | }
  | 
  | return formOk;
  | }
  | }

Unfortunatly, I found no way to add it 'dynamicaly' to my exploded .war 
directory.

Two questions :
1/ may this valve worked if I find a way to add it ?
2/ how to add a Valve on a 'per-dynamic context' ?

Thanks,
Ionel

PS : sorry for this but I will cross-post on the tomcat forum

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

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


---
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] [HTTPD, Servlets & JSP] - j_uri support ?

2005-03-01 Thread ionel
Following a thread started on the Security/JAAS forum,
i'd like to know how to add a valve to a dynamicaly deployed application.

I tried this :

public class FormRedirectAuthenticator extends FormAuthenticator {
  | 
  | public boolean authenticate(HttpRequest request, HttpResponse response,
  | LoginConfig arg2) throws IOException {
  | 
  | boolean formOk = super.authenticate(request, response, arg2);
  | 
  | if (formOk) {
  | System.out.println("Performing changes ...");
  | request.setRequestURI("/test-login/secured/index.jsp");
  | request.setContextPath("/test-login");
  | request.setServletPath("/secured/index.jsp");
  | }
  | 
  | return formOk;
  | }
  | }

Unfortunatly, I found no way to add it 'dynamicaly' to my exploded .war 
directory.

Two questions :
1/ may this valve worked if I find a way to add it ?
2/ how to add a Valve on a 'per-dynamic context' ?

Thanks,
Ionel

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

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


---
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] [Security & JAAS/JBoss] - Re: is j_uri exist in jboss???

2005-02-28 Thread ionel
I tried j_uri set to :

- http://localhost:8080/test-login/secured/welcome.jsp
- /test-login/secured/welcome.jsp
- test-login/secured/welcome.jsp
- /secured/welcome.jsp
- secured/welcome.jsp
- /welcome.jsp
- welcome.jsp

but none of these worked.

I still land on the requested page.

I think I'll try to use a custom security valve.

Ionel

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

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


---
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] [Security & JAAS/JBoss] - Re: why does jboss look for the /favicon.ico?

2005-02-27 Thread ionel
favicon.ico is the icon shown on the left-side of the URL on most browser 
address bar.

As this is not a required thing, it does not rise exception on the client.

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

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


---
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] [Security & JAAS/JBoss] - Re: is j_uri exist in jboss???

2005-02-26 Thread ionel
Is there a way to bypass this in order to archieve the same functionnality than 
the unofficial j_uri parameter ?

Being a "man-in-the-middle" and forcing these attributes is useless ?

I tought this was the solution as I understood your answer from the 02/21.

Ionel

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

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


---
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] [Security & JAAS/JBoss] - Re: is j_uri exist in jboss???

2005-02-26 Thread ionel
Hi Scott,

I tried this trick :

  | <%request.setAttribute("javax.servlet.forward.request_uri", 
"/test-login/secured/index.jsp");%>
  | <%request.setAttribute("javax.servlet.forward.context_path", 
"/test-login");%>
  | <%request.setAttribute("javax.servlet.forward.servlet_path", 
"/secured/index.jsp");%>
  | u : 
  | p : 
  | 
  | 
in the login.jsp page (defined as the form-login-page).

Logon process is sucessful but the request attributes I override are not used 
and I am still landing on the requested secured page instead of the secured 
welcome page.

Am I missing something ?

Thanks,
ionel

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

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


---
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] [Security & JAAS/JBoss] - Re: is j_uri exist in jboss???

2005-02-25 Thread ionel
Hi,

Where and when to set theses attributes ?

Thanks,
ionel

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

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


---
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] [Security & JAAS/JBoss] - How to force forward on j_security_check validation ?

2005-02-25 Thread ionel
Hi,

Using form login in web.xml and j_security_check

  |  
  | FORM 
  | securedZone 
  |  
  | /login.do 
  | /index.do 
  |  
  |  
  | 
displays the /login.do URL when a user attemps to login on a secured zone and 
forward to /index.do if login fails.

Question :
- How to force forward to /userhome.do when login success instead of displaying 
the requested page that started the logon process ?

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

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


---
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] [Messaging, JMS & JBossMQ] - Topics unavailable after DS deconnection

2004-12-18 Thread ionel
Hi,

Here is my problem :
I have a few topics which authentication and messages persistancy is done thru 
a Postgres DB connection.

PostgresDS deployment and topics deployment depends on each other.

Yesterday, the DB connection dropped because of a wild DB restart.

When the DB was up again, the topics were unavailables.


I 'touch'ed the postgres-ds.xml file so it gets redeployed again.
The topics were still unavailable.


Do you know if this is a common behavior ?
How to make all this stuff (JMS topics and DataSource connection) working in an 
"autorecovery" mode so the topics are up-and-available again as soon as the DS 
is reconnected ?
Have I missed something in the DS configuration or in the topics declarations ?

Thanks for your help,
ionel

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

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


---
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] - Any news for JMS over JGroups ?

2004-10-12 Thread ionel
Hi,

I have read the 5-page topic about using JGroups for JMS messaging.
Unfortunalty, its dated March 2004.

Does the link 
http://www.jboss.org/developers/projects/jboss/jms/documentation/pure-p2p is still 
true for the latest 4.0.0 JBoss release ?

Is there a way to integrate multicast JMS transport inside a JMS-only JBoss 
configuration without deploying JGroups besides ?

Thanks,
Ionel

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

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


---
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] - OIL2 hangs in

2004-10-08 Thread ionel
Hi,

It's been quite a long time that I am experiencing this hang :

server side log :
2004-10-08 11:14:39,892 DEBUG [org.jboss.mq.il.oil2.OIL2SocketHandler] Setting the 
OIL2SocketHandler's thread factory

client log shows JRMP socket timeout while doing a 
context.lookup("java:/XAConnectionFactory") or sometimes while "setting clock daemon"


For info, everything works fine after a server restart but this appears at the third 
client connection.


Questions :
- is it "only" a memory problem ? (just increasing memory should do the trick)
- however, what are these exception about the clock daemon and the SocketHandler 
factory ?


OS : linux redhat 2.4.20-31.9
JVM : java version "1.4.2_05"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_05-b04)
JBoss : 4.0.0


Thanks for your help,
Ionel

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

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


---
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] [Nukes User] - "cool : topic closed" Re: quotes not handled in post's subje

2004-08-23 Thread ionel
regards,
ionel

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

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


---
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink & Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - quotes not handled in post's subject

2004-08-23 Thread ionel
Hi,

It seems like double quotes are not supported when typed in subject fields.

Is there a workaround to this ?

thanks,
ionel

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

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


---
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink & Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Getting Started Documentation] - delay to

2004-08-23 Thread ionel
Hi there,

Do you have any idea when will the replay of the "Migrating to JBoss" webinar will be 
published ?

It could be very useful to me to argue against my boss' coldness of migrating from BEA 
...


thanks,
ionel

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

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


---
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink & Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: problem using TemporaryQueue

2004-03-01 Thread ionel
Adrian,

Thanks for your help, I got it working. I simply did the createQueue() on the remote 
client (the one that did not create the temporary queue)

My error was to think that the createQueue had to be done by the side that created the 
temporary queue instead of the other side. To me, a remote client has to do jndi 
lookups to retrieve the created queues (like when the queue was created using jmx)

Knowledge is the sum of all the errors you made.

I made this one once, slap me if I reiterate, not because I'm trying.

Again, thanks for your help.

Ionel

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

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


---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps & Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: problem using TemporaryQueue

2004-03-01 Thread ionel
Ok

I tried this :

  | TemporaryQueue tempoQueue = queueSession.createTemporaryQueue();
  | Queue queue = queueSession.createQueue(tempoQueue.getQueueName());
  | 
I am still getting NameNotFoundException - JMS_TQ# not bound.

I also tried :

  | Queue queue = queueSession.createQueue("dummyname");
  | 
but I got this error message :
anonymous wrote : 2004-03-01 17:20:50,034 [main] ERROR 
com.clickoptions.teconsole.jms.TEConsoleConsumer - JMSException
  | org.jboss.mq.SpyJMSException: Cannot get the Queue from the provider; - nested 
throwable: (javax.jms.JMSException: This destination does not exist !)
  | at org.jboss.mq.SpyConnection.createQueue(SpyConnection.java:216)
  | at org.jboss.mq.SpyQueueSession.createQueue(SpyQueueSession.java:92)
  | at 
com.clickoptions.teproxy.jms.queue.AbstractConsumer.(AbstractConsumer.java:92)
  | at com.clickoptions.teproxy.jms.queue.ConsoleConsumer.(ConsoleConsumer.java:16)
  | at com.clickoptions.teconsole.jms.TEConsoleConsumer.(TEConsoleConsumer.java:27)
  | at com.clickoptions.teconsole.TEDataSource.(TEDataSource.java:184)
  | at com.clickoptions.teconsole.TEConsole.(TEConsole.java:214)
  | at com.clickoptions.teconsole.TEConsole.main(TEConsole.java:1838)
  |  + nested throwable: 
  | javax.jms.JMSException: This destination does not exist !
  | <>

so I guess the first solution (temporary queue THEN createQueue using the temporary 
queue name) is what to do.

Unfortunatly, it still fails.

I see no output of the temporary queue binding in the jndi space.

Did I miss something ?

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

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


---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps & Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: problem using TemporaryQueue

2004-03-01 Thread ionel
I found that Client2 (the one which is sent the queue name and which tries to connect 
as producer) throws a NamingException - NameNotFoundException because it can't find 
the specified queue. (neither queue/JMS_TQ# nor JMS_TQ#)

The QueueConnection is still not closed or destroyed so the temporary queue should not 
be "dead".

According to the Javadoc :
anonymous wrote : It is a system-defined queue that can be consumed only by the 
QueueConnection that created it.

This is what I do but the producer is another QueueConnection.
Does it matter ?

I don't see why another client could not see the queue.


thanks,
ionel

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

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


---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps & Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - problem using TemporaryQueue

2004-03-01 Thread ionel
Hi there,

I have a problem using TemporaryQueues.

Here is my scenario :
Client1 creates a queue on JBoss and connects as a consumer.
The queue name is sent to client2 which use it to act as the producer.
Client2 connects to the given queue, sends datas through it, close and disconnect.
Client1, after receiving what it asked for, close and disconnect then destroy the 
queue.

This scenario works smoothly when Client1 creates the queue using the RMI adaptor but 
failed with TemporaryQueue.

JBoss TemporaryQueue names follow this pattern : JMS_TQ

I tried to connect to JMS_TQ# and queue/JMS_TQ# but when creating the producer, it 
hangs for the server to connect back to itself.

  | 004-03-01 14:07:39,696 [MessageListenerThread - willy/ondemand] DEBUG 
com.clickoptions.teproxy.jms.proxy.P
  | roxyOnDemandSubscriber - dictionary request received for queue queue/JMS_TQ11
  | 2004-03-01 14:07:39,791 [MessageListenerThread - willy/ondemand] DEBUG 
org.jboss.mq.referenceable.SpyConnec
  | tionFactoryObjectFactory - Extracting SpyConnectionFactory from reference
  | 2004-03-01 14:07:39,803 [MessageListenerThread - willy/ondemand] DEBUG 
org.jboss.mq.referenceable.SpyConnec
  | tionFactoryObjectFactory - The GenericConnectionFactory is: 
GenericConnectionFactory:[server=org.jboss.mq.i
  | [EMAIL PROTECTED],connectionProperties={OIL_TCPNODELAY_KEY=yes, PingPeriod=6, 
OIL_PORT_KEY=8090,
  | ClientILService=org.jboss.mq.il.oil.OILClientILService, 
OIL_ADDRESS_KEY=191.254.40.95}]
  | 2004-03-01 14:07:39,810 [MessageListenerThread - willy/ondemand] DEBUG 
org.jboss.mq.GenericConnectionFactor
  | y - Handing out ClientIL: org.jboss.mq.il.oil.OILClientILService
  | 2004-03-01 14:07:39,810 [OILClientILService-6] DEBUG 
org.jboss.mq.il.oil.OILClientILService - Waiting for t
  | he server to connect to me on port 38546
  | 

Surprisingly, when using RMI-created queues, the server connection occurs almost 
immediatly.

Another point is : the queue initialization is made inside the object constructor 
(which extends java.lang.Thread) and the creator can call the start() method whereas 
initialization sequence is not finished.


Why couldn't I use the temporary queue ?
Why does the producer hangs during initialization and why can I call a method on an 
object that is not totally initialized ?

Thanks,
Ionel

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

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


---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps & Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: stopping and destoying a queue after a coarse disconnect

2004-02-25 Thread ionel
thanks adrian

I formerly understood temporaryQueue as internal queue (kind of loopback queue)

Another questions : to inform the other side of the connection I should do a 
getQueueName()

Is the queue name guaranteed to be unique ?

If multiple clients create a temporaryQueue at the same time, each queue would have a 
different name ?

Is it okay to cleanly destroy a temporary queue if everything goes well (using the jmx 
RMIAdaptor) in order to avoid garbage on logs ?

thanks,
Ionel

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

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


---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps & Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - reborn subscriptions ?

2004-02-25 Thread ionel
Hi,

I have multiple clients connected to a topic.

If JBoss crashes (or is restarted for any reasons), how to tell the clients to 
reconnect ?

Is there a way to reuse the previoulsy established connections ?


thanks,
ionel

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

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


---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps & Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - stopping and destoying a queue after a coarse disconnection

2004-02-25 Thread ionel
Hi,

I have the following problem :
A client application dynamically creates a Queue via the jmx RMIAdaptor.
Sometime the client hangs and I have to kill it.

JBoss detects that the connection was lost with the client but does not destroy the 
queue.
Is there a way to bypass this behavior and force JBoss to stop and destroy the queue 
if producer or consumer quits abnormally ?

thanks,
ionel

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

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


---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps & Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - [solved] TopicConnectionFactory lookup failed

2004-02-09 Thread ionel
View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3820722#3820722

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

Hi there,



I add a /etc/hosts entry for the server host and it works.



Sorry for disturbing



ionel


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - TopicConnectionFactory lookup failed

2004-02-09 Thread ionel
View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3820714#3820714

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

Hi,



When retrieving a TopicConnectionFactory with this call :



TopicConnectionFactory topicFactory = (TopicConnectionFactory) 
context.lookup("OIL2ConnectionFactory");





I get a javax.naming.CommunicationException.

Root exception is :

java.rmi.ConnectException: Connection refused to host: 127.0.0.1



I printed my JNDI Environment used for the context I use to do the lookup : the 
java.naming.provider.url is set to something else than localhost (it is not a problem 
of a forgotten jndi.properties file or something else)



Thus I don't know why it tries to connect to localhost whereas another jndi provider 
is specified.



It happens in a Swing based application, downloaded by JNLP.





Any ideas welcome,

Please help, I'm lost,

thanks,

ionel


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] bug in forum ?

2004-02-06 Thread Ionel GARDAIS
Hi,

I tried to search for "jmx:" (unquoted).
I get the following error message:

Cannot invoke the operation : the module threw an
exception

The same search but quoted works.

ionel






Yahoo! Mail : votre e-mail personnel et gratuit qui vous suit partout ! 
Créez votre Yahoo! Mail sur http://fr.benefits.yahoo.com/


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] create jms queue by rmi

2004-02-06 Thread Ionel GARDAIS
Hi,

I'm in a hurry to find how to dynamically create a JMS
Queue by RMI.

By now i am using the jmx-console but my boss don't
want to have an embedded tomcat.

many thanks for your prompt reply,
ionel






Yahoo! Mail : votre e-mail personnel et gratuit qui vous suit partout ! 
Créez votre Yahoo! Mail sur http://fr.benefits.yahoo.com/


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] Strange class not found

2004-02-06 Thread Ionel GARDAIS
Hi,

where is the class
org.jboss.resource.connectionmanager.CachedConnectionManager
?

I am trying to setup my own server configuration and
JBoss complains about not finding this class.

When I launch the default config, it works.

Any ideas ?

Thanks,
Ionel







Yahoo! Mail : votre e-mail personnel et gratuit qui vous suit partout ! 
Créez votre Yahoo! Mail sur http://fr.benefits.yahoo.com/


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] j2sdk1.5 and jboss

2004-02-05 Thread Ionel GARDAIS
Hi there,

I might be wrong but have yoou tried to recompile
JBoss from sources with the new 1.5 sdk ?

This could solve your problem as this solved mine with
1.3 !

ionel






Yahoo! Mail : votre e-mail personnel et gratuit qui vous suit partout ! 
Créez votre Yahoo! Mail sur http://fr.benefits.yahoo.com/


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] OIL2ServerILService Connection reset by peer

2004-02-02 Thread Ionel GARDAIS
Hi Adrian,

I am already closing the connection.
In every publisher/subcriber, i have a Shutdown hook
which run this code


  topicPublisher.close();
  topicSession.close();
  topicConnection.stop();
  topicConnection.close();



For PtP, the queue is closed as soon as both sides
closed their connection.

That's why I don't understand why the message is
printed.

Ionel






Yahoo! Mail : votre e-mail personnel et gratuit qui vous suit partout ! 
Créez votre Yahoo! Mail sur http://fr.benefits.yahoo.com/


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] is jnet.jar already signed ?

2004-01-27 Thread Ionel GARDAIS
Hi,

I am bundling jnet.jar inside a war file to be
deployed through WebStart.

As I need all permissions, I sign all jars from the
war file.

My problem is that when I launch the application, I
get a "More than one certificate used to sign
resource: http://localhost/teconsole/app/jnet.jar";

As I only run one signjar task in my Ant build file,
question is : does jnet.jar is already signed ?

I also tried to add the jnet.jar without signing it, I
am still getting this error.

Any ideas ?

thanks,
ionel

_
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] How to read message counter infos ?

2004-01-23 Thread Ionel GARDAIS
Hi,

>From the jmx-console, reading :

Topic,performance,-,false,853,351,0,0,1/23/04 11:23:55
AM

I understand :
- kind : Topic
- name : performance
- don't know what is the third param
- persistance : false
- message send ?
- message failed ?
- dont know
- dont know
- last message sent timestamp ?

I am right with this interpretation ?
What are the missing fields ?

thanks,
ionel

_
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] OIL2ServerILService Connection reset by peer

2004-01-23 Thread Ionel GARDAIS
Hi all,

I was wondering why do I get the following info
message everytime a client disconnect from a topic,
even after it gently closes the connection and the
session ?

10:10:30,769 INFO  [OIL2ServerILService] Client
Disconnected: java.net.SocketException: Connection
reset by peer: Connection reset by peer

thanks,
ionel

_
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] (more clues) MessageListener threw a RuntimeException

2004-01-21 Thread Ionel GARDAIS
Hi again,

After tracing the calls, I found that the problem is
on a vector iterator.

The JMS message I received is an ObjectMessage.
The object within the message is a Vector.

Inside the onMessage, I call an outside method,
passing the Vector received: outsideMethod(theVector)

In the outsideMethod, I use an iterator on the Vector
received in parameter and do a classic
while(iterator.hasNext()) loop.

The RuntimeException is thrown when I call the
hasNext() or the next() method.


I absolutly don't know what is going on.
The Vector is not modified : I spend 10ms for the
first iteration and the next message is about 10
seconds later.

Any ideas ?

thanks,
ionel

_
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] (no subject)

2004-01-21 Thread Ionel GARDAIS
Damned

i am a sucker.
Ban me, whip me with fresh nettles, put a spell on my
family for five generations ...

I was trying to add elements to an undefined List.

Give me a rope ... :)

ionel

_
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] MessageListener threw a RuntimeException

2004-01-21 Thread Ionel GARDAIS
Hi,

i am getting the followinf warning everytime my topic
MessageListener gets a message :

2004-01-21 17:08:59,849 [MessageListenerThread -
performance] WARN  org.jboss.mq.SpyMessageConsumer -
Message listener
[EMAIL PROTECTED]
threw a RuntimeException.

What is this exception ?

Everything I do inside the onMessage method is
surrounded by a try/catch JMSException block

I saw this since I use log4j for logging purpose.

thanks,
ionel

_
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] MDB to use a specific user/pass or role

2004-01-21 Thread Ionel GARDAIS
Thanks Adrian,

That's it !

I was not looking that far in the doco.
Shame on me :)

=
-- 
Regards,
Ionel

_
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] MDB to use a specific user/pass or role

2004-01-20 Thread Ionel GARDAIS
Hi,

I have a topic locked to a specified role name.
Everything works fine when I retrieve a
TopicConnection using
topicFactory.createTopicConnection("user","pass");

My problem is that I'd like to have an MDB to monitor
this topic.
When deploying the MDB I get the following exception:


13:01:25,437 WARN  [JMSContainerInvoker] JMS provider
failure detected:
javax.jms.JMSSecurityException: Connection not
authorized to subscribe to destination: performance
at
org.jboss.mq.security.ServerSecurityInterceptor.subscribe(ServerSecurityInterceptor.java:148)
at
org.jboss.mq.server.TracingInterceptor.subscribe(TracingInterceptor.java:816)
at
org.jboss.mq.server.JMSServerInvoker.subscribe(JMSServerInvoker.java:297)
at
org.jboss.mq.il.jvm.JVMServerIL.subscribe(JVMServerIL.java:315)


Under XDoclet, I tryed to add @ejb.security-identity
run-as="authorized-role" but this did not solve the
issue.

How to tell an MDB to use a username/password or a
specific role ?

thanks,
ionel

_
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] web-console applet throws exception

2004-01-19 Thread Ionel GARDAIS
   at
org.jboss.console.navtree.AppletBrowser.start(AppletBrowser.java:51)

at sun.applet.AppletPanel.run(Unknown Source)

at java.lang.Thread.run(Unknown Source)



What is wrong with 3.2.3 ?

thanks,
ionel

_
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] Problems getting started ...

2004-01-18 Thread Ionel GARDAIS
dunno about the classloader problem.

When executing JSP, tomcat first compile them as plain
java classes. it needs sdk stuff not available in jre.

ionel

_
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] Problems getting started ...

2004-01-17 Thread Ionel GARDAIS
I suggest you first try to set JAVA_HOME to your SDK
installation instead of the JRE

this might not solve your problem but it's a good
start

ionel

_
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] correct EJB pool size

2004-01-17 Thread Ionel GARDAIS
So, will this put JBoss on knees or is it ok ?

What could be the best pool size and cache size ? (if
it has any impact over performances)


thanks,
ionel

_
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] correct EJB pool size

2004-01-17 Thread Ionel GARDAIS
EJBs are made of about 10 fields, mostly double and
Date (say 3 dates, 7 doubles)

8 finders (home calls) are called concurrently every
10 seconds to retrieve a collection of EJBs which are
then  updated (4 fields out of the 10)

By now, one finder should return a collection of 3800
object, another of 1500, another 400, 150 and less for
the lasts.

It's a project to increase these values (12 to 15
concurrent finders and maybe 6000/7000-item
collections)

I am moving from plain jdbc access and result set
parsing to an EJB-based solution.
It could be great to set JBoss in the best way to
impress my boss :)

Ionel

_
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] correct EJB pool size

2004-01-17 Thread Ionel GARDAIS
Hi,

What is the correct pool size for a database of more
than 3 entries ?

I will access about 6000 of the EJBs every 10 seconds,
read/write, commit-option set to A (exclusive table
access)

thanks for the info,

ionel

_
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


RE: [JBoss-user] JDBCEJBQLCompiler NoSuchMethodError

2004-01-16 Thread Ionel GARDAIS
Not that far .. 3.2.2 w/ jdk 1.3.1.10b3

 --- "Rupp, Heiko" <[EMAIL PROTECTED]> a écrit : >
Lemme guess, 3.2.3 out of the box on jdk 1.3.x
> 
> Take either a 1.4.x or take the 3.2.3 source,
> recompile it 
> with 1.3.x
> 

_
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] JDBCEJBQLCompiler NoSuchMethodError

2004-01-16 Thread Ionel GARDAIS
erverImpl.java:546)
at
org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:976)
at $Proxy14.start(Unknown Source)
at
org.jboss.system.ServiceController.start(ServiceController.java:394)
at java.lang.reflect.Method.invoke(Native
Method)
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.start(Unknown Source)
at
org.jboss.ejb.EJBDeployer.start(EJBDeployer.java:544)
at
org.jboss.deployment.MainDeployer.start(MainDeployer.java:832)
at
org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:642)
at
org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:605)
at java.lang.reflect.Method.invoke(Native
Method)
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$ScannerThread.loop(AbstractDeploymentScanner.java:212)
at
org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.run(AbstractDeploymentScanner.java:191)
15:02:27,428 INFO  [EjbModule] Started
jboss.j2ee:module=ProductBeans.jar,service=EjbModule
15:02:27,429 INFO  [EJBDeployer] Deployed:
file:/export/home/mount/rtadmin/jboss-3.2.2/server/default/deploy/ProductBeans.jar
15:02:27,502 INFO  [MainDeployer] Deployed package:
file:/export/home/mount/rtadmin/jboss-3.2.2/server/default/deploy/ProductBeans.jar
15:02:27,506 ERROR [URLDeploymentScanner]
MBeanException: Exception in MBean operation
'checkIncompleteDeployments()'
Cause: Incomplete Deployment listing:
Packages waiting for a deployer:
  
Incompletely deployed packages:
  
MBeans waiting for classes:
  
MBeans waiting for other MBeans:
[ObjectName:
jboss.j2ee:jndiName=ejb/testat/ProductLocal,service=EJB
 state: FAILED
 I Depend On:
 Depends On Me:
org.jboss.deployment.DeploymentException: Error
compiling JBossQL statement 'SELECT DISTINCT OBJECT(p)
FROM ProductEJB p ORDER BY p.id'; - nested throwable:
(java.lang.NoSuchMethodError)]


It creates the table without problems but fails
compiling the EJBQL/JBossQL statements.

The Sybase DataSource is deployed without errors or
warnings but when I take a look at the JNDI tree via
the web console, the SybaseDS is under the Failed
section :

Failed to lookup: timedCacheFactory,
errmsg=org.jboss.util.TimedCachePolicy

According to JCA, the SybaseDS is in state STARTED

Here are my questions :
- How to get ride of the NoSuchMethodError ?
- Are the NoSuchMEthodError and the failed-but-started
state of the datasource are related ?

thanks,
ionel

_
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] JDK Version for JBoss3.2.3

2004-01-16 Thread Ionel GARDAIS
I experienced classloader issues with jdk <= 1.3.1
beta something ...

I am not aware of any 1.4.x problems with JBoss.

Hope this help


=
-- 
Regards,
Ionel

_
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] problems with Locale (continued ...)

2004-01-08 Thread Ionel GARDAIS
10:20:14,704 DEBUG [ServerInfo] file.separator: /
10:20:14,704 DEBUG [ServerInfo]
java.vendor.url.bug:
http://java.sun.com/cgi-bin/bugreport.cgi
10:20:14,704 DEBUG [ServerInfo] sun.cpu.endian:
big
10:20:14,704 DEBUG [ServerInfo]
sun.io.unicode.encoding: UnicodeBig
10:20:14,705 DEBUG [ServerInfo] sun.cpu.isalist:
sparcv9+vis sparcv9 sparcv8plus+vis sparcv8plus
sparcv8 sparcv8-fsmuld spar
cv7 sparc

I'm using :
- Jboss3.2.2-tomcat4.1.29
- java version "1.3.1"
Java(TM) 2 Runtime Environment, Standard Edition
(build 1.3.1-b24)
Java HotSpot(TM) Client VM (build 1.3.1-b24, mixed
mode)
- SunOS golgoth 5.7 Generic_106541-11 sun4u sparc
SUNW,UltraSPARC-IIi-cEngine


thanks,
Ionel

_
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


RE: [JBoss-user] tomcat : error in local blocks deployment

2004-01-06 Thread Ionel GARDAIS
Okay

I add all the LocalStrings.properties files I found
from the catalina.jar to my custom jar.

It does not complains anymore about the
LocalStrings.properties under
org.apache.catalina.startup but under
org.apache.coyote.http11.LocalStrings


I know the ultimate solution is to add all
LocalStrings.properties from the jars in
jbossweb-tomcat41.sar to my custom jar but is there a
smarter way to make JBoss run ?


BTW, while creating my custom jar, I found that some
propertie files are not named well (LocaStrings (no
ending l to Local), LocalString (no ending s to
Strings))

Is it a corrupted version of tomcat ?

Ionel

_
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] OutOfMemoryError after 4 days

2004-01-06 Thread Ionel GARDAIS
Hi,

I had a JBoss 3.2.2 running since January 2nd which
crashes with an OutOfMemoryError (trying to allocate
16000 bytes).

Nothing in the logs, just the console output.

I'm running Windows NTWS,
java version "1.3.1_09"
Java(TM) 2 Runtime Environment, Standard Edition
(build 1.3.1_09-b03)
Java HotSpot(TM) Client VM (build 1.3.1_09-b03, mixed
mode)

No JAVA_OPTS were specified inside the run.conf file.

JBoss was started in the background but not used (just
sitting there)

Should I specify more memory in the run.conf file ?

Thanks,
Ionel

_
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


RE: [JBoss-user] tomcat : error in local blocks deployment

2004-01-05 Thread Ionel GARDAIS
Hi Scott,

java -version output is :

Under Solaris 7 :
java version "1.3.1"
Java(TM) 2 Runtime Environment, Standard Edition
(build 1.3.1-b24)
Java HotSpot(TM) Client VM (build 1.3.1-b24, mixed
mode)

Under Windows NT :
java version "1.3.1_09"
Java(TM) 2 Runtime Environment, Standard Edition
(build 1.3.1_09-b03)
Java HotSpot(TM) Client VM (build 1.3.1_09-b03, mixed
mode)

I also added the catalina.jar file under the
JBOSS_CLASSPATH environment variable.
Tomcat now finds the LocalStrings property file but
complains about
org.apache.catalina.startup.ContextRuleSet which IS
inside the same catalina.jar ...

Thanks,
ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


RE: [JBoss-user] tomcat : error in local blocks deployment

2004-01-02 Thread Ionel GARDAIS
I am using 1.3.1 under Solaris 7
I use the same jvm version under Windows, it works
fine

I confirm that I found the LocalStrings.properties
file inside the catalina.jar file.
I have also try to unjar the catalina.jar, copy
LocalStrings.properties as LocalStrings_en.properties,
rejar the folders but the file is still not found.

I tried to add the catalina.jar under the system wide
CLASSPATH and it fails too.

I will try to add it under JBOSS_CLASSPATH

However, it is a strange behavior :) I am a bit lost
...

I'll tell you if it works monday morning.

Thanks,
ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


RE: [JBoss-user] tomcat : error in local blocks deployment

2004-01-02 Thread Ionel GARDAIS
The exact exception is :

15:32:24,037 WARN [ServiceController] Problem starting
service jboss.web:service=WebServer
java.lang.ExceptionInInitializerError:
java.util.MissingResourceException: Can't find bundle
for base name
org.apache.catalina.startup.LocalStrings, locale en
at
java.util.ResourceBundle.throwMissingResourceException(ResourceBundle.java:712)
at
java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:674)
at
java.util.ResourceBundle.getBundle(ResourceBundle.java:546)
at
org.apache.catalina.util.StringManager.(StringManager.java:115)
at
org.apache.catalina.util.StringManager.getManager(StringManager.java:260)
at
org.apache.catalina.startup.Embedded.(Embedded.java:248)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:120)
at
org.jboss.web.tomcat.tc4.EmbeddedTomcatService.class$(EmbeddedTomcatService.java:259)
at
org.jboss.web.tomcat.tc4.EmbeddedTomcatService.startService(EmbeddedTomcatService.java:259)


If it does not find the ResourceBundle for the english
locale, shouldn't it use the default one ?

thanks,
ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] tomcat : error in local blocks deployment

2004-01-01 Thread Ionel GARDAIS
Hi,

I have a problem with the tomcat .sar package.
At deploy time, tomcat raises an Exception about a
LocalStrings property file not found.

This file is in the catalina.jar archive which is in
the deploy/jbossweb-tomcat41.sar directory with the
others jar files.

I tried everything, including forcing another local,
adding the catalina.jar file directly in the classpath
and unjaring/rejaring the catalina.jar after having
copied the general LocalStrings.properties as
LocalStrings_en.properties as the exception complains
...

None of these solutions works.

I'm using JBoss 3.2.2 / Tomcat 4.1.24 under Solaris 7
w/ jdk 1.3.1

The same JBoss bundle works under Windows NT4, jdk
1.3.1


Does anyone have an idea of what the problem is ?
I'm a real trouble because I need the jmx-console to
be available.

Thanks for your help,
Happy new year,
Ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] force a locale at tomcat startup

2003-12-31 Thread Ionel GARDAIS
Hi,

How to force a locale at tomcat startup ?

I get an exception when jbossweb-tomcat41.sar is
deployed because it doesn't find the class
org.apache.catalina.startup.LocalStrings for locale
en.

I found that the only available locale are fr, ja, and
an unamed locale

Why does it do not take the unamed locale (default
behavior) ? How to tell to use the fr ?

thanks,
ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] jms security roles

2003-12-30 Thread Ionel GARDAIS
hi,

how to add/change security roles on dynamicaly created
JMS queues ?

I am creating a JMS queue using the jmx-console but
when I try to send a message, I get an exception :

13:46:56,541 WARN  [OILServerILService] Client request
resulted in a server exception:
javax.jms.JMSSecurityException: Connection not
autorized to addMessages to destination: 4731602  
 at
org.jboss.mq.security.ServerSecurityInterceptor.addMessage(ServerSecurityInterceptor.java:160)
   at
org.jboss.mq.server.TracingInterceptor.addMessage(TracingInterceptor.java:270)
   at
org.jboss.mq.server.JMSServerInvoker.addMessage(JMSServerInvoker.java:136)
   at
org.jboss.mq.il.oil.OILServerILService$Client.run(OILServerILService.java:253)
at java.lang.Thread.run(Thread.java:479)

I specify a username/password when I create the
QueueConnection.
The username/password/role definition exists in the
jbossms-state.xml

I just need to assign read/write authorization to the
roles via the jmx-console.

Thanks,
ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] use of http-invoker

2003-12-29 Thread Ionel GARDAIS
Hi folks,

Merry Chrismas and Happy new year to all

What is the URL to dynamicly create a JMS queue using
the http-invoker ?

I already have a URL which points to
jmx-console/HtmlAdaptor but I'd like not to have to
deploy the jmx-console (just using the http-invoker)

thanks,
ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] failed to start on Solaris

2003-12-24 Thread Ionel GARDAIS
Hi,

it's already a success that I convinced my boss let me
test some new dev using JBoss ...

For (obscure) platform compatibility reasons, only 1.3
is allowed in the cave I used to call office :)

I do modify jboss-service.xml in order to make JBossMQ
works standalone but this is not the problem as it
works under Windows.

thanks for the tips however,
ionel

> I ran and still run different releases of JBoss on
> Sparc Solaris 8 and 9 
> without platform specific problems.
> But I never tried Solaris 7 and JDK 1.3.0_01.
> Maybe it's time to upgrade JDK to 1.4.2_03 (download
> from java.sun.com). 
> But you probably will need some patches for your OS 
>
(http://sunsolve.sun.com/pub-cgi/show.pl?target=patches/J2SE).
> 
> By the way: did you modify jboss-service.xml ?

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] disabling JMS message cache ?

2003-12-24 Thread Ionel GARDAIS
Hi,

Is it possible to disable JMS message cache ?
Even when I specify 
topicPublisher.setDeliveryMode(DeliveryMode.NON_PERSISTENT);
the message cache is still filled.

Is it because the subscribers do not ack messages fast
enougth ?


thanks,
ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] failed to start on Solaris

2003-12-24 Thread Ionel GARDAIS
Here are the whole log ...

[EMAIL PROTECTED]:~/jboss-3.2.2]$./bin/run.sh


  JBoss Bootstrap Environment

  JBOSS_HOME: /home/mount/rtadmin/jboss-3.2.2

  JAVA: /usr/java/bin/java

  JAVA_OPTS: -server -Dprogram.name=run.sh

  CLASSPATH:
/home/mount/rtadmin/jboss-3.2.2/bin/run.jar:/usr/java/lib/tools.jar



13:57:18,008 INFO  [Server] Starting JBoss (MX
MicroKernel)...
13:57:18,013 INFO  [Server] Release ID: JBoss
[WonderLand] 3.2.2 (build: CVSTag=JBoss_3_2_2
date=200310182216)
13:57:18,015 INFO  [Server] Home Dir:
/export/home/mount/rtadmin/jboss-3.2.2
13:57:18,016 INFO  [Server] Home URL:
file:/export/home/mount/rtadmin/jboss-3.2.2/
13:57:18,018 INFO  [Server] Library URL:
file:/export/home/mount/rtadmin/jboss-3.2.2/lib/
13:57:18,022 INFO  [Server] Patch URL: null
13:57:18,023 INFO  [Server] Server Name: default
13:57:18,024 INFO  [Server] Server Home Dir:
/export/home/mount/rtadmin/jboss-3.2.2/server/default
13:57:18,026 INFO  [Server] Server Home URL:
file:/export/home/mount/rtadmin/jboss-3.2.2/server/default/
13:57:18,028 INFO  [Server] Server Data Dir:
/export/home/mount/rtadmin/jboss-3.2.2/server/default/data
13:57:18,029 INFO  [Server] Server Temp Dir:
/export/home/mount/rtadmin/jboss-3.2.2/server/default/tmp
13:57:18,030 INFO  [Server] Server Config URL:
file:/export/home/mount/rtadmin/jboss-3.2.2/server/default/conf/
13:57:18,032 INFO  [Server] Server Library URL:
file:/export/home/mount/rtadmin/jboss-3.2.2/server/default/lib/
13:57:18,033 INFO  [Server] Root Deployemnt Filename:
jboss-service.xml
13:57:18,046 INFO  [Server] Starting General Purpose
Architecture (GPA)...
13:57:18,915 INFO  [ServerInfo] Java version:
1.3.0_01,Sun Microsystems Inc.
13:57:18,916 INFO  [ServerInfo] Java VM: Java
HotSpot(TM) Server VM 1.3.0_01,Sun Microsystems Inc.
13:57:18,918 INFO  [ServerInfo] OS-System: SunOS
5.7,sparc
13:57:19,176 INFO  [ServiceController] Controller
MBean online
13:57:19,532 INFO  [MainDeployer] Started
jboss.system:service=MainDeployer
13:57:19,820 INFO  [MainDeployer] Adding deployer:
[EMAIL PROTECTED]
13:57:19,821 INFO  [JARDeployer] Started
jboss.system:service=JARDeployer
13:57:19,965 INFO  [MainDeployer] Adding deployer:
[EMAIL PROTECTED]
13:57:20,010 INFO  [SARDeployer] Started
jboss.system:service=ServiceDeployer
13:57:20,011 INFO  [Server] Core system initialized
13:57:20,134 INFO  [MainDeployer] Starting deployment
of package:
file:/export/home/mount/rtadmin/jboss-3.2.2/server/default/conf/jboss-service.xml
13:57:21,794 ERROR [MainDeployer] Could not initialise
deloyment:
file:/export/home/mount/rtadmin/jboss-3.2.2/server/default/conf/jboss-service.xml
java.lang.AbstractMethodError
at
org.jboss.net.protocol.file.FileURLLister.listMembers(FileURLLister.java:30)
at
org.jboss.net.protocol.URLListerBase.listMembers(URLListerBase.java:40)
at
org.jboss.net.protocol.URLListerBase.listMembers(URLListerBase.java:45)
at
org.jboss.deployment.SARDeployer.parseXMLClasspath(SARDeployer.java:330)
at
org.jboss.deployment.SARDeployer.init(SARDeployer.java:127)
at
org.jboss.deployment.MainDeployer.init(MainDeployer.java:696)
at
org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:632)
at
org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:605)
at
org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:589)
at java.lang.reflect.Method.invoke(Native
Method)
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 $Proxy5.deploy(Unknown Source)
at
org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:384)
at
org.jboss.system.server.ServerImpl.start(ServerImpl.java:291)
at org.jboss.Main.boot(Main.java:150)
at org.jboss.Main$1.run(Main.java:395)
at java.lang.Thread.run(Thread.java:484)
Failed to boot JBoss:
org.jboss.deployment.DeploymentException: Could not
initialise deployment:
file:/export/home/mount/rtadmin/jboss-3.2.2/server/default/conf/jboss-service.xml;
- nested throwable: (java.lang.AbstractMethodError)
at
org.jboss.deployment.DeploymentException.rethrowAsDeploymentException(DeploymentException.java:39)
at
org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:637)
at
org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:605)
at
org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:589)
at java.lang.reflect.Method.invoke(Native
Method)
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

[JBoss-user] failed to start on Solaris

2003-12-24 Thread Ionel GARDAIS
Hi,

I have moved JBoss from Windows to Solaris.

When I try to launch it, I got this exception :
Failed to boot JBoss:
org.jboss.deployment.DeploymentException: Could not
initialise deployment:
file:/export/home/mount/rtadmin/jboss-3.2.2/server/default/conf/jboss-service.xml;
- nested throwable: (java.lang.AbstractMethodError)
at
org.jboss.deployment.DeploymentException.rethrowAsDeploymentException(DeploymentException.java:39)
at
org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:637)
at
org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:605)
at
org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:589)
at java.lang.reflect.Method.invoke(Native
Method)
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 $Proxy5.deploy(Unknown Source)
at
org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:384)
at
org.jboss.system.server.ServerImpl.start(ServerImpl.java:291)
at org.jboss.Main.boot(Main.java:150)
at org.jboss.Main$1.run(Main.java:395)
at java.lang.Thread.run(Thread.java:484)
 + nested throwable: java.lang.AbstractMethodError
at
org.jboss.net.protocol.file.FileURLLister.listMembers(FileURLLister.java:30)
at
org.jboss.net.protocol.URLListerBase.listMembers(URLListerBase.java:40)
at
org.jboss.net.protocol.URLListerBase.listMembers(URLListerBase.java:45)
at
org.jboss.deployment.SARDeployer.parseXMLClasspath(SARDeployer.java:330)
at
org.jboss.deployment.SARDeployer.init(SARDeployer.java:127)
at
org.jboss.deployment.MainDeployer.init(MainDeployer.java:696)
at
org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:632)
at
org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:605)
at
org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:589)
at java.lang.reflect.Method.invoke(Native
Method)
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 $Proxy5.deploy(Unknown Source)
at
org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:384)
at
org.jboss.system.server.ServerImpl.start(ServerImpl.java:291)
at org.jboss.Main.boot(Main.java:150)
at org.jboss.Main$1.run(Main.java:395)
at java.lang.Thread.run(Thread.java:484)


Windows Java version is 1.3.1_09b3 and Solaris is
1.3.0_01

Any ideas ?

thanks,
ionel


___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] jms message timeout

2003-12-23 Thread Ionel GARDAIS
Hi,

What happens if I publish messages to a topic which
nobody listens to ?

Is the message lost ? Is it stored until someone
subscribes and get them ?

Does modifying the message's TTL allow to specify a
timeout for the message ?

thanks,
ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] JMS queue simple question

2003-12-23 Thread Ionel GARDAIS
Is this code still valid for topic/queue creation via
URL ?


//These are samples, not available in the example
code.
String method = "createTopic";
String destName = "myCreated";

String action = "action=" + method + "?action=" +
method +
  "¶m0%2Bjava.lang.String=" + destName;

String arg =
"/InvokeAction//JBossMQ%3Aservice%3DServer" + "/" +
action;

URL url = new URL("http", "localhost", 8082, arg);

//Invoke the URL
HttpURLConnection con =
(HttpURLConnection)url.openConnection();
con.connect();



thanks,
ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] JMS queue simple question

2003-12-23 Thread Ionel GARDAIS
Hi there,

Merry christmas to all.

I have a little question about JMS queue.
By now, I use topics to send global datas to many
recipients.

I need a parallel channel to send one-shot
informations (actually a repository used by the
messages received through the topic)

I thought to a queue running in parallel to the topic.

My question is : can I create one queue on the server,
with a unique producer and multiple INDEPENDANTS
consumers ?

thanks,
ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] drop last post

2003-12-18 Thread Ionel GARDAIS
Sorry guys, I've been working for too long.
I just have to install JSSE for 1.3.

Good night ...
ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] last version of JBoss that supports J2SE 1.3 ?

2003-12-18 Thread Ionel GARDAIS
Hi folks,

my JMS client's NamingContextFactory throws a
ClassNotFound : javax.net.SocketFactory.

As this is a 1.4 class, what is the last version of
JBoss which supports 1.3 ?

thanks,
ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] JMS DestinationManager tweaking

2003-12-18 Thread Ionel GARDAIS
I got it workiing ! At least, it does not show
error :)

Thanks Adrian !



=
-- 
Regards,
Ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] JMS DestinationManager tweaking

2003-12-18 Thread Ionel GARDAIS
thanks Adrian,

I am close to get this working.

Every beans are in state CONFIGURED except jms-ds.xml
and jms-ra.rar which are in state
INIT_WAITING_DEPLOYER.

I turned on TRACE logging for org.jboss.mq but no
useful infos were printed.

any ideas ?
ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] mbean deployment : null object name

2003-12-18 Thread Ionel GARDAIS
Hi again,

I tried to use DestinationManager without
MessageCache, PersistenceManager, StateManager.

While starting, I now have an error saying "null
object name"

Here is the log :


ObjectName: jboss.mq:service=DestinationManager
 state: FAILED
 I Depend On:
 Depends On Me:  
jboss.mq.destination:service=Topic,name=productTopic
 
jboss.mq.destination:service=Topic,name=underlyingTopic
  jboss.mq.destination:service=Topic,name=dealTopic
  jboss.mq:service=SecurityManager
  jboss.mq.destination:service=Queue,name=DLQ
javax.management.InstanceNotFoundException: null
object name,


DestinationManager is declared as :

  
  


which parameter do I omit ?

thanks,
ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] JMS DestinationManager tweaking

2003-12-18 Thread Ionel GARDAIS
Hi,

Almost all JMS mbeans depends on DestinationManager.
But DestinationManager uses PersistanceManager and
MessageCache which seems to rely upon a db connection.

I'd like to run JBossMQ without any db connections
(for standalone purpose : only JNDI + JBossMQ).
Is it possible or does db is used for the JBossMQ core
?

What if I disable the PersistanceManager and
MessageCache ?


=
-- 
Regards,
Ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] jms

2003-12-17 Thread Ionel GARDAIS
Hi,

After digging around, I found answers to some of my
questions.

However, i'm still missing the answer to my major
question.

JBossMQ will use JGroups in the near futur, sending
messages over multicast (4.0.0).

Question is : how does it work by now (3.2.x)? Does it
use the bound-interface's broadcast IP-address to send
the messages or does every subscribers just register
themselves against the topic and messages are sent by
calling the onMessage() method on each subscribers ?

I need this info because in the second case, adding a
subscriber to the topic highs the JBoss load whereas
using broadcast, the load remains the same may it be
one or more subscribers.


thanks for your prompt reply,
ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] important request about JBossMQ

2003-12-16 Thread Ionel GARDAIS
Hi,

I need to have important informations about JBossMQ to
make my boss switch to JBoss :)
All my questions are about pub/sub work.

Security :
- does JBossMQ support some kind of authentication
(users/roles) of subscribers ?
- do the messages are or can be encrypted over the
wire ?

Dispatching :
- how are the messages sent to the subscribers ? Say I
have three subscribers for the same topic. Do the
messages are broadcasted over the network or does
JBossMQ send every message to each subscribers
sequentially (sendig three times the messages directly
to subscribers) ?
- with an object made of 3 double, 2 int, 2 boolean
and 1 long, how long will it take to send 6000 of them
?


thanks for your help,
ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] use JBossMQ standalone

2003-12-16 Thread Ionel GARDAIS
Hi,

Is it possible to use JBossMQ as a standalone JMS
provider ?
If so, how to set it up in this way ?

thanks,

=
-- 
Regards,
Ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] CVS problem

2003-12-13 Thread Ionel GARDAIS
Hi,

I tried to update the HEAD cvs and I get the following
message :

cvs server: cannot open directory
/cvsroot/jboss/build/jboss/etc/root: No such file or
directory

What is happening ?

ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] migrate standalone app to JBoss service

2003-12-05 Thread Ionel GARDAIS
 --- Adrian Brock <[EMAIL PROTECTED]> a écrit : > On
Fri, 2003-12-05 at 12:10, Ionel GARDAIS wrote:
> > Hi,
> > 
> > I have a standalone app which I want to migrate as
> a
> > JBoss service.
> > 
> > By now, the application provides RMI stubs to
> remote
> > clients
> > 
> > If I just recode the current applcation to use the
> JMX
> > system and deploy it under JBoss as a .sar, how
> could
> > my clients retrieve the stubs ? should I launch an
> > rmiregistry ?
> > 
> 
> That would be one way.

It will work just by doing the client-side lookup
using the JBoss Naming factory instead of the Sun one
?

Just to be clear :
- client lookups the object by sending a request to
the JNDI port
=> the default JNDI port can be overriden by the
jndi.properties (client side)
- the corressponding object is sent to the client by
the server using the RMI port
=> if I modify the default RMI port (), how to
tell the client to get the object from another port
than  ?


> > If this is automatic, how to call these methods
> via a
> > web browser (which URL) ?
> > 

I meant using this kind of URL :
http://localhost:8080/jmx-console/HtmlAdaptor?action=invokeOpByName&name=jboss%3Aservice%3DJNDIView&methodName=list&argType=boolean&arg0=True

but this question is obsolete : it is obvious every
jmx-managed methods can be accessed this way, isn't it
?


thanks,
ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] migrate standalone app to JBoss service

2003-12-05 Thread Ionel GARDAIS
Hi,

I have a standalone app which I want to migrate as a
JBoss service.

By now, the application provides RMI stubs to remote
clients

If I just recode the current applcation to use the JMX
system and deploy it under JBoss as a .sar, how could
my clients retrieve the stubs ? should I launch an
rmiregistry ?

second point, most (but not all) of these stubs are
management methods. They can all be recode as
jmx-managed methods.
How to export these jmx-managed methods to the http
connector ?
If this is automatic, how to call these methods via a
web browser (which URL) ?

thanks,
ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] replace JBossMQ by Tibco ?

2003-12-01 Thread Ionel GARDAIS
Hi,

Is it possible to replace JBossMQ by the Tibco
messaging system ?

If so, how to do this ?

=
-- 
Regards,
Ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?  SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] ANSI SQL ?

2003-11-25 Thread Ionel GARDAIS
Hi,

How to know if an SQL command is ANSI compliant or db
dependant ?

I need to know this for SHOW TABLES and SHOW COLUMNS
commands.

thanks,
ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?  SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] commit options

2003-11-25 Thread Ionel GARDAIS
many many thanks

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?  SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] commit options

2003-11-25 Thread Ionel GARDAIS
Hi,

There have been some posts about use of commit
options.

What are the different commit-options made for ?
When to use one or other commit-option ?


=
-- 
Regards,
Ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?  SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] [ANN] JBoss-IDE 1.2.2 released

2003-11-24 Thread Ionel GARDAIS
 --- Laurent Etiemble <[EMAIL PROTECTED]> a écrit : > >
Available releases are :
> - JBoss-IDE 1.2.2 for Eclipse 2.1.1 or higher
> - JBoss-IDE 1.2.2330 for Eclipes 3.0.0M4

I am running Eclipse 3.0.0 M4 w/ JBoss IDE 1.2.230.
Update result is "no update available"

Where is the problem ?

thanks,
ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?  SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] overriding users/roles propeties in UsersRolesLoginModule fails

2003-11-18 Thread Ionel GARDAIS
Hi,

Continuing on my UsersRolesLoginModule problem, I
tried to override the guessed values for the
properties path.


  

  C:\java\jboss\build\output\jboss-4.0.0DR3\server\default\conf\users.properties
  C:\java\jboss\build\output\jboss-4.0.0DR3\server\default\conf\roles.properties

  


I've tried all path style (backslash, slash, preceding
with file:/) but I always have an error message
telling that the module can't find the required files.

Any hints are welcomed.

Thanks,
ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?  SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] problem with UsersRolesLoginModule

2003-11-16 Thread Ionel GARDAIS
I take a look at UsersRolesLoginModule.java

the loadProperties() method uses
Thread.currentThread().getContextClassLoader() to load
the properties files.

unfortunatly, it seems to pick the first available
when there are no files provided inside the package.

Any hints ?

ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF. Net email is sponsored by: GoToMyPC
GoToMyPC is the fast, easy and secure way to access your computer from
any Web browser or wireless device. Click here to Try it Free!
https://www.gotomypc.com/tr/OSDN/AW/Q4_2003/t/g22lp?Target=mm/g22lp.tmpl
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] problem with UsersRolesLoginModule

2003-11-16 Thread Ionel GARDAIS
I found the problem :

my service is deployed as a .sar file under the
server\default\deploy directory but the log shows this
:

2003-11-16 20:28:29,859 TRACE
[org.jboss.security.auth.login.XMLLoginConfigImpl]
getAppConfigurationEntry(ftp),
authInfo=AppConfigurationEntry[]:
[0]
LoginModule Class:
org.jboss.security.auth.spi.UsersRolesLoginModule
ControlFlag: LoginModuleControlFlag : required
Options:
2003-11-16 20:28:29,859 TRACE
[org.jboss.security.auth.spi.UsersRolesLoginModule]
initialize
2003-11-16 20:28:29,859 TRACE
[org.jboss.security.auth.spi.UsersRolesLoginModule]
Properties
file=file:/C:/java/jboss/build/output/jboss-4.0.0DR3/server/default/deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/WEB-INF/classes/users.properties
2003-11-16 20:28:29,859 TRACE
[org.jboss.security.auth.spi.UsersRolesLoginModule]
Properties
file=file:/C:/java/jboss/build/output/jboss-4.0.0DR3/server/default/deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/WEB-INF/classes/roles.properties
2003-11-16 20:28:29,859 TRACE
[org.jboss.security.auth.spi.UsersRolesLoginModule]
login
2003-11-16 20:28:29,859 DEBUG
[org.jboss.security.auth.spi.UsersRolesLoginModule]
Bad password for username=ftp
2003-11-16 20:28:29,859 TRACE
[org.jboss.security.auth.spi.UsersRolesLoginModule]
abort

JBoss looks under the jms\jbossmq-httpil.sar directory
for the .properties files instead of the conf
directory.
I tried to change the application-policy name and
restart JBoss.

For this second try, it looks at the
jmx-console.war/WEB-INF/classes/ directory for the
.properties files.


How to tell JBoss to look at the conf directory ?

thanks,
ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF. Net email is sponsored by: GoToMyPC
GoToMyPC is the fast, easy and secure way to access your computer from
any Web browser or wireless device. Click here to Try it Free!
https://www.gotomypc.com/tr/OSDN/AW/Q4_2003/t/g22lp?Target=mm/g22lp.tmpl
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] problem with UsersRolesLoginModule

2003-11-16 Thread Ionel GARDAIS
Hi,

I'm experiencing problems with UsersRolesLoginModule.

I added this to the
server\default\conf\login-config.xml file :

  

  


The users.properties and roles.properties files are
located in the same directory (server\default\conf)
and contain user/pass and user/roles properties as
usual.

In my code, I have something like this :
UsernamePasswordHandler uph = new
UsernamePasswordHandler(username, password);
LoginContext lc = new LoginContext("ftp", uph);


but when I do a lc.login() an exception is thrown :
javax.security.auth.login.FailedLoginException:
Password Incorrect/Password Requiered

both username and password are correctly filled.

I am using the head cvs co.

Did I miss something ?

thanks,
ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF. Net email is sponsored by: GoToMyPC
GoToMyPC is the fast, easy and secure way to access your computer from
any Web browser or wireless device. Click here to Try it Free!
https://www.gotomypc.com/tr/OSDN/AW/Q4_2003/t/g22lp?Target=mm/g22lp.tmpl
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] using JAAS inside a custom server MBean

2003-11-13 Thread Ionel GARDAIS
Hi,

I want to use JAAS login from a custom MBean Service.
Where should I specify the auth.conf file to use ?
As the authentication will be used internally to
JBoss, are there easier/faster way to use JAAS than to
write a custom CallbackHandler ?

thanks,

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.Net email sponsored by: ApacheCon 2003,
16-19 November in Las Vegas. Learn firsthand the latest
developments in Apache, PHP, Perl, XML, Java, MySQL,
WebDAV, and more! http://www.apachecon.com/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] ejb calls interceptor

2003-11-13 Thread Ionel GARDAIS
Hi,

Is there a way to catch the calls that are made to an
EJB (fields getters/setters, finders, selectors).

My goal is to provide some statistical informations
(how many times a method have been called, which
methods should be optimized ...) through an MBean
StatService

thanks,

=
-- 
Regards,
Ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.Net email sponsored by: ApacheCon 2003,
16-19 November in Las Vegas. Learn firsthand the latest
developments in Apache, PHP, Perl, XML, Java, MySQL,
WebDAV, and more! http://www.apachecon.com/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] error in cvs tree

2003-11-12 Thread Ionel GARDAIS
What is the -Pd option for ?

I do a full co and it worked.

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.Net email sponsored by: ApacheCon 2003,
16-19 November in Las Vegas. Learn firsthand the latest
developments in Apache, PHP, Perl, XML, Java, MySQL,
WebDAV, and more! http://www.apachecon.com/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] error in cvs tree

2003-11-12 Thread Ionel GARDAIS
Well,
I've just updated for the n'th time the jboss-head and
I get the same error.

Should I try with a clean checkout ?

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.Net email sponsored by: ApacheCon 2003,
16-19 November in Las Vegas. Learn firsthand the latest
developments in Apache, PHP, Perl, XML, Java, MySQL,
WebDAV, and more! http://www.apachecon.com/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] error in cvs tree

2003-11-12 Thread Ionel GARDAIS
hi,

it's been a few days since the jboss-head build fails
because of this error :

BUILD FAILED
file:C:/java/jboss/varia/build.xml:539: Deployment
descriptor:
C:\java\jboss\varia\output\resources\loadbalancer\web.xml
does not exist.

It seems that the loadbalancer directory is not in the
src\resources tree.
Can those who are in charge of the loadbalancer add
this file ?

thanks,
ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.Net email sponsored by: ApacheCon 2003,
16-19 November in Las Vegas. Learn firsthand the latest
developments in Apache, PHP, Perl, XML, Java, MySQL,
WebDAV, and more! http://www.apachecon.com/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] getting multiple JMX attributes

2003-11-09 Thread Ionel GARDAIS
Hi,

When developping a MBeanService component, how to get
multiple attributes from a -service.xml file ?

for example, how to do something like :


  johndoefoobar

and to retrieve all "aParam" attributes, according to
the fact that there can be 1-N parameters ?

Does :

/**
 * @jmx.managed-attribute
 */
 public void setUsedParams(String[] params)

is a valid method signature ?


=
-- 
Regards,
Ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.Net email sponsored by: ApacheCon 2003,
16-19 November in Las Vegas. Learn firsthand the latest
developments in Apache, PHP, Perl, XML, Java, MySQL,
WebDAV, and more! http://www.apachecon.com/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] fast questions

2003-10-29 Thread Ionel GARDAIS
Hi there,

- i have read somewhere (but i can't remember where)
that JBoss provides a universal way to develop
server-style extentions (listening on a certain port
...)
What is this stuff ?
- When creating/deploying a service MBean, how to
access it, call the methods ? BTW, who calls the
methods ?

thanks,

=
-- 
Regards,
Ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?   SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] forums down/slow?

2003-10-28 Thread Ionel GARDAIS
 --- Eric J Kaplan <[EMAIL PROTECTED]> a écrit :
> Can anyone get to the forums?  I go to jboss.org,
> click on forums, and
> they never come up.

Got them w/o problems ... 21:18 GMT+1

=
-- 
Regards,
Ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?   SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [OT] large entity beans

2003-10-21 Thread Ionel GARDAIS
Hi,

Sorry for the troll but I have read a few post about
problems with large entity beans (64+ persistent
fields).

Isn't it the result of a poorly designed database
layout ?

IMO, the larger is a table, the slower is the whole
system and a table with such a number of fields could
be split into smaller ones.

Just to say ...

=
-- 
Regards,
Ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by OSDN developer relations
Here's your chance to show off your extensive product knowledge
We want to know what you know. Tell us and you have a chance to win $100
http://www.zoomerang.com/survey.zgi?HRPT1X3RYQNC5V4MLNSV3E54
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] packet is sent every second ?

2003-10-20 Thread Ionel GARDAIS
I found the problem.
It is the remoting-service.xml file.
I commented the MulticastDetector mbean and no more
packets were sent.

=
-- 
Regards,
Ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by OSDN developer relations
Here's your chance to show off your extensive product knowledge
We want to know what you know. Tell us and you have a chance to win $100
http://www.zoomerang.com/survey.zgi?HRPT1X3RYQNC5V4MLNSV3E54
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] packet is sent every second ?

2003-10-20 Thread Ionel GARDAIS
Hi,

I have just build the latest 4.0.0DR3 cvs update and I
notice that a UDP packet is sent every second to IP
224.1.9.1 from local port  to remote port .

Databytes seems to be about a discovery thing ...

Looks like a multicast stuff.
What is it for ? Can it be turned off ?

Thanks,

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email sponsored by: Enterprise Linux Forum Conference & Expo
The Event For Linux Datacenter Solutions & Strategies in The Enterprise 
Linux in the Boardroom; in the Front Office; & in the Server Room 
http://www.enterpriselinuxforum.com
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] jboss-media module

2003-10-17 Thread Ionel GARDAIS
Hi,

I checked-out the jboss-mail and jboss-media modules
from the cvs.
I installed jboss-media under the JBoss root as
"media".
Then I added the media module into the module list of
the build.xml and in the optional group.
Then I ran build -Dgroups=all

The media module appears in the modules list.

Unfortunatly, the media module failed to compile.
It tries to access the .ent files in the
tools/etc/buildfragments directory whereas it is under
the tools/etc/bulidmagic.
Even by modifying the directories, it still fails by
looking at a default.ent file which does not exist.


Did I miss a thing ?

=
-- 
Regards,
Ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: SF.net Giveback Program.
SourceForge.net hosts over 70,000 Open Source Projects.
See the people who have HELPED US provide better services:
Click here: http://sourceforge.net/supporters.php
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] damned build

2003-10-14 Thread Ionel GARDAIS
Hi there,

I have checked-out the jboss-all module plus
jboss-media and jboss-mail modules.

When I execute the build process without
modifications, it fails because it doesn't find ant
and other libraries.

I need to modify the libraries.ent file from the
buildmagic directory.
The modification I make are, for example, for the
apache subdirectories.
The packages root are ${project.thirdparty}/apache-XYZ
(where XYZ is the library needed). When looking at the
directory tree, the location is
${project.thirdparty}/apache/XYZ.
This modification has to be done for almost all
thirdparty libraries.

This is the first point.

Then, when I start the build process, all the required
libraries are found and the build process starts well
but I quickly get 100 errors and 7 warnings about
missing classes.


Does anyone succeed in building the JBoss tree right
after a CVS checkout ?
What are the modification should I do to get it
working ?

thanks,

=
-- 
Regards,
Ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This SF.net email is sponsored by: SF.net Giveback Program.
SourceForge.net hosts over 70,000 Open Source Projects.
See the people who have HELPED US provide better services:
Click here: http://sourceforge.net/supporters.php
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] using CMP and defining the datasource at runtime

2003-10-05 Thread Ionel GARDAIS
Great !

Did I tell you that I love you ? :)

for my own knowledge, does a BMP can use a declared
datasource or does it has to go through all the jdbc
connection process ?

> Just create the CMP beans (don't include a
> jbosscmp-jdbc.xml)
> JBoss will create tables for the beans when they are
> first deployed.
> 
> If the user doesn't like the tables or DefaultDS,
> they can change
> the definition by adding a jbosscmp-jdbc.xml to the
> deployment.
> 
> Regards,
> Adrian

=
-- 
Regards,
Ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] using CMP and defining the datasource at runtime

2003-10-05 Thread Ionel GARDAIS
I am trying to add an EJB load/store layer to the mail
server developped by A. Oliver.

It needs to access :
- a table with the usernames and passwords
- 1 or more tables for the emails and attached files

A CMP could allow an automatic table creation and easy
finders manipulation.
As the tables should be created on a database choosed
by the user, the choices are : work with a CMP and
allow the user to override the datasource (with all
the problems you said) or to work with BMP, write all
the queries and ask the user to provide
connection-url, jdbc driver, username and password.


Or maybe a BMP can use a declared datasource ?

> One of the aims of CMP is that your code is
> independent
> of the persistence mechansim (which is declared in
> the
> deployment). In principle it could be persisted to
> a flat file system or an object db.
> The idea of the datasource is specified at
> deployment
> (I want jdbc persistence).
> 
> Can you restate the problem in that context?


=
-- 
Regards,
Ionel

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com


---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


  1   2   3   >