Re: [JBoss-user] mbean depending on jar

2004-01-30 Thread Michael Bartmann
Hi Marc, my problem description was a bit vague, what I really need is a config where multiple sars depend on the same jar, which contains interfaces, by which the jars call each other. So if the interfaces change, all dependent sars have to be redeployed (restart doesn't help). Formerly I package

RE: [JBoss-user] ?

2004-01-30 Thread Muraly R
Hi Scott, Thanks for the information. Please see inline... Thanks Muraly At 13:57 28/01/2004 -0600, you wrote: We do not issue an ejbRemove on stateful session beans that expire while in the passivated state. So, its better the client itself invoke the remove for SFSB. Stateles

RE: [JBoss-user] deploying ejb on jboss / cannot found home interface

2004-01-30 Thread konf
Thanks, this is work now. But now, becouse I am new in ejb, looking for some example, where I ca see how to connect entity bean from session. Everywhere in literature I see how to connect Session bean via home interface, I read that is better to call entity bean from session via local interface an

RE: [JBoss-user] OOM wrapped in UndeclaredThrowable

2004-01-30 Thread Scott M Stark
Yes, we throw UndeclaredThrowableException whenever a non-Exception shows up in an invocation stack as our interceptor signature allows for Exceptions, not Throwables or Errors. Search in our codebase for UndeclaredThrowableException and you'll see where this happens. Sco

RE: [JBoss-user] how to encode database password in descriptor file mysql-ds.xml

2004-01-30 Thread Scott M Stark
SHA is a one way hash that by definition cannot be reversed. In order to encode a password in a reversible form you need another password for the encoding/decoding, hence the question on how you want to encode the database password. If the database accepts a hashed form of the password then simply

[JBoss-user] Lotus Domino Connection Pooling in JBoss

2004-01-30 Thread harm
Hi all, I'm thinking of implementing a connection pool for Lotus Domino for JBoss 3.2.3. This way my EJB's can ask for a connection from the pool and do some manipulation of the Lotus Domino data. Unfortunatly I'm not sure in what kind of object to build the connection pool. JBoss has connectio

Re: [JBoss-user] Informix datasource not working in Jboss 3.2.3

2004-01-30 Thread Roy Britten
Hi Martin, I recently had a similar problem; it stemmed from, if I recall correctly, a createStatement() call that was returning a ResultSet that didn't have the properties specified in the JavaDocs [perhaps one day we'll have an Informix JDBC driver that meets the JDBC specs]. Using createStatem

Re: [JBoss-user] Possible bug in Handle.getEJBObject() - Jboss 3.2.3

2004-01-30 Thread Russell Chan
Hmmm.. I'm not sure these are exactly the same bug. The original user wasn't using Handles the way that I am. In any case, it appears that on the Handle.getEJBObject() (from a remote client) is incrementing the refcount on the QueuedPessimisticEJBLock twice, and releasing it only once. Anywa

RE: [JBoss-user] XMBean with Standard MBean superclass (maybe XDoclet-specific)

2004-01-30 Thread Scott M Stark
The resource type for an xmbean does not affect its management interface. I'm not familar with the xmbean xdoclet implementation, so you'll have to drill into that. The jboss-service.xml descriptor has nothing to do with this as its only creating an XMBean and passing in the *-xmbean.xml descripto

[JBoss-user] m:n relationship and relation tables

2004-01-30 Thread frederic . kieffer
Hi people, I use mainly CMPs in my application , with 1:1, 1:N and m:n relationships. As I can only see business tables in the database (those bound to the CMPs), I'm wondering where the relationship tables are stored. Thanks for your input. Frédéric ---

Re: [JBoss-user] Problem when query contains international characters

2004-01-30 Thread Milen Dyankov
Hi Alexey, I have no doubt it works for you and as well as for so many other people out there! I bet JBoss is being used in multilanguage environment many times by now. But that is only making it harder for me to understand why it does not work in our case. Yesterday, I realized that our query

Re: [JBoss-user] log4j SMTP appender trouble

2004-01-30 Thread Ryan Hoegg
Vladyslav Kosulin wrote: Scott M Stark wrote: It depends on what is generating the stack trace. In order to get this behavior there has to be a line by line emission of the stack trace using System.err.println() for each line rather than one System.err.println() with the entire stack trace as a m

RE: [JBoss-user] mbean depending on jar

2004-01-30 Thread Marc Fleury
Michael bartman from 4production? Huh... (include the jar in the sar) marcf -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Michael Bartmann Sent: Wednesday, January 28, 2004 12:05 PM To: [EMAIL PROTECTED] Subject: [JBoss-user] mbean depending on jar

RE: [JBoss-user] Lotus Domino Connection Pooling in JBoss

2004-01-30 Thread Srinivas Malladi
Write JCA adaptor. -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On Behalf Of [EMAIL PROTECTED]Sent: Thursday, January 29, 2004 7:46 AMTo: [EMAIL PROTECTED]Subject: [JBoss-user] Lotus Domino Connection Pooling in JBossHi all, I'm thinking of

Re: [JBoss-user] jboss.net: How can I modify the service name displayed in WSDL?

2004-01-30 Thread Jason Essington
Yeah, but it's the service name in the generated wsdl that's giving Rob grief. It's probably something burried in axis somewhere. I am not sure off the top of my head where to look for that. -jason On Jan 23, 2004, at 10:51 AM, Marek Lange wrote: Rob Moore wrote: I am using the jboss.net xdoc

[JBoss-user] Lotus Domino Connection Pooling in JBoss

2004-01-30 Thread harm
Hi all, I'm thinking of implementing a connection pool for Lotus Domino for JBoss 3.2.3. This way my EJB's can ask for a connection from the pool and do some manipulation of the Lotus Domino data. Unfortunatly I'm not sure in what kind of object to build the connection pool. JBoss has connectio

RE: [JBoss-user] log4j SMTP appender trouble

2004-01-30 Thread Scott M Stark
You must render the stack trace to a string buffer and then emit the string to the PrintStream in a single println: public void printStackTrace(PrintStream s) { StringWriter sw = new StringWriter(); PrintWriter pw = new PrintWriter(sw); pw.println(this); StackTraceEle

RE: [JBoss-user] Setting jmx-console password

2004-01-30 Thread Rod Macpherson
Thanks! -Original Message- From: Bill Burke [mailto:[EMAIL PROTECTED] Sent: Wed 1/28/2004 8:37 PM To: [EMAIL PROTECTED] Cc: Subject: Re: [JBoss-user] Setting jmx-console password user.properties roles.properti

Re: [JBoss-user] Two ears and classcastexception :( please, help!!

2004-01-30 Thread Simone Milani
In that case just put your common jar file inside the server/lib directory but you loose the re-deploy ability for that jar. Simone - Original Message - From: "Francisco Figueiredo Jr." <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, January 28, 2004 9:27 PM Subject: Re: [JBo

RE: [JBoss-user] how to encode database password in descriptor file mysql-ds.xml

2004-01-30 Thread JD Brennan
Title: Re: [JBoss-user] how to encode database password in descriptor file mysql-ds.xml Storing a private key in a java .class file does add a useful level of security.   1) Customers perceive this as valuable.  They aren't geeks, so they don't get it, but they still buy your product or not. 

Re: [JBoss-user] log4j SMTP appender trouble

2004-01-30 Thread Vladyslav Kosulin
Scott M Stark wrote: It depends on what is generating the stack trace. In order to get this behavior there has to be a line by line emission of the stack trace using System.err.println() for each line rather than one System.err.println() with the entire stack trace as a message. What is the source

Re: [JBoss-user] Problem when query contains international characters

2004-01-30 Thread Milen Dyankov
Hi Alexey, I have no doubt it works for you as well as it does for so many other people out there! I bet JBoss is being used in multilanguage environment many times by now. But that is only making it harder for me to understand why it does not work in our case. Yesterday, I realized that our q

RE: [JBoss-user] how to encode database password in descriptor file mysql-ds.xml

2004-01-30 Thread Rupp, Heiko
The idea is, that when the entry in mysql-ds is encrypted, so that no user can read it, who has the password to decrypt this entry. Do you want that to be asked at jboss startup? > Since I don't know your potential solution, my point is that the > password in mysql-ds.xml should be encoded(usin

Re: [JBoss-user] log4j SMTP appender trouble

2004-01-30 Thread Vladyslav Kosulin
Here is a full stack trace from log file for a provoked exception as example. I use e.printStackTrace(). As you see, pattern is applied to every entry in the trace, and every row was sent as a separate e-mail: 2004-01-30 15:17:25,337 ERROR [STDERR] java.lang.NullPointerException 2004-01-30 15:17

[JBoss-user] Re: Possible bug in Handle.getEJBObject() - Jboss 3.2.3

2004-01-30 Thread Russell Chan
Hi Scott, As requested, I've added this issue and these emails to the existing bug 780746, however, I don't think that these bugs are quite exactly the same. The other user wasn't even using the Handle.getEJBObject() call, which appears to be the cause of my woes. Anyways, take a look at the in

RE: [JBoss-user] log4j SMTP appender trouble

2004-01-30 Thread Scott M Stark
It depends on what is generating the stack trace. In order to get this behavior there has to be a line by line emission of the stack trace using System.err.println() for each line rather than one System.err.println() with the entire stack trace as a message. What is the source of this? xx

Re: [JBoss-user] how to encode database password in descriptor file mysql-ds.xml

2004-01-30 Thread Rupp, Heiko
Title: Re: [JBoss-user] how to encode database password in descriptor file mysql-ds.xml Hi, What I've seen another application do (WebSphere) is when it reads inthe file, if the password is cleartext, it will use it's own encryptionalgorithm to encrypt the password and then save the n

Re: [JBoss-user] how to encode database password in descriptor file mysql-ds.xml

2004-01-30 Thread Brad Balmer
What I've seen another application do (WebSphere) is when it reads in the file, if the password is cleartext, it will use it's own encryption algorithm to encrypt the password and then save the new password in the file, so when the user opens the file back up, the password is now stored as encr

Re: [JBoss-user] survey on e-commerce applications management (please get involved)

2004-01-30 Thread Raquel V. Lopes
Hello! Thanks a lot for all that answered the survey. We decided to extend the period until February, 5. If you didn't participated yet, please, get involved (http://www.lsd.ufcg.edu.br/~raquel/survey/availability-form.htm). Best regards, Raquel - Original Message - From: "Raquel V. Lopes