Re: [JBoss-user] Standalone lookup - StreamCorruptedException

2003-07-02 Thread Guy Rouillier
What JDK is your client running on? When I've seen this error, it was because the client was on an old JDK. The minimum supported JDK for JBoss is currently 1.3.1, I believe. Magesh Prabhu wrote: Hi Guys, I'm doing a JNDI lookup from my Standalone Client to an Session Bean deployed on JBoss.

[JBoss-user] ALERT - Virus W32/Sobig.e@MM found; an attachment/message has been quarantined

2003-07-02 Thread GroupShield Exchange (BRANDYWINE)
Action Taken: An attempt to disinfect the attachment was unsuccessful, so the attachment was quarantined from the message and replaced with a text file informing the recipient of the action taken. The infected attachment has been placed in the designated quarantine folder. Please exercise extreme c

[JBoss-user] ALERT - Virus W32/Sobig.e@MM found; An attachment/message has been quarantined

2003-07-02 Thread GroupShield for Exchange (MAIL)
Action Taken: An attempt to disinfect the attachment was unsuccessful, so the attachment was quarantined from the message and replaced with a text file informing the recipient of the action taken. The infected attachment has been placed in the designated quarantine folder. Please exercise extreme c

[JBoss-user] Delay call to ejbStore

2003-07-02 Thread Jason Calabrese
All, Is there a way to delay the call to ejbStore? I have a particular Bean that can be modified a lot, and I don't want to have to go to the DB every time. Is this configured using the different commit options? If so what option should I use to delay the calling of ejbStore. Thanks, Jason

[JBoss-user] Re: CMR relationship not being created........sometimes

2003-07-02 Thread Gavin Matthews
Alex, I've done some more investigation on this and the problem appears to be somewhere (haven't tracked it down) in the synchronization of the entity bean to the database/caching logic. The sequence of events in my unit test is: - Create Package - Create PackageUser (Sender) - PostCreate links

Re: [JBoss-user] SAR depends on WAR!

2003-07-02 Thread Huu Phuoc
I am very grateful to JD Brennan  for your nice help. Acctually, I have an Java Server which I call IMServer. I have integrated it into JBoss with im.sar. I have also a web application which is packed in web.war. I am using Jetty Web container. I configured that im.sar depends on Jetty Servi

RE: [JBoss-user] External JNDI

2003-07-02 Thread KChristmas
I see what you are getting at. Is it possible for the EJB to add itself to both the external naming service and the internal naming sevice? If it is, can you point me towards an example or documentation? Kevin Christmas AmeriPath IT - Dallas -Original Message- From: Adrian Brock [mailt

RE: [JBoss-user] External JNDI

2003-07-02 Thread Adrian Brock
You should have two jndi.properties One for the Naming running the server that supplies the local java: (connection pools, transaction manager, etc) and ENC (java:comp) One for the external context that tells it where the "jboss" context lives. Try calling it externaljboss.properties? Regards, A

RE: [JBoss-user] External JNDI

2003-07-02 Thread KChristmas
If I remove the java.naming.provider.url property from the instance that is not providing the naming service, how does it know where to connect to? If I do that, then I get this execption: INFO [ExternalContext] Starting ERROR [ExternalContext] Starting failed javax.naming.CommunicationException

RE: [JBoss-user] design questions

2003-07-02 Thread Rafal Kedziorski
At 23:08 01.07.2003 -0400, you wrote: > works synchronized methods in an clustered environment? > No, synchronized methods don't lock the entire cluster. what will be the best solution in an cluster environment to reimplement this? > 2. out clients are communicating thru stateless session bean fac

RE: [JBoss-user] External JNDI

2003-07-02 Thread Adrian Brock
Don't supply the provider.url for jboss's jndi.properties, this will force jndi to go over rmi. Once this happens the java: namespace is unavailable. You should put the external context's jndi.properties somewhere that jboss's classloaders cannot see it. Adrian Brock Di

RE: [JBoss-user] Jetty and Log4j request logs

2003-07-02 Thread Adrian Brock
Hi Sebastian, The jetty request log has a fairly trivial interface. Besides implementing the lifecycle methods and serializable it is one method. public void log(HttpRequest request, HttpResponse response, int responseLength); I doubt you can fix the

RE: [JBoss-user] giving EJB method permissions to a JCA 1.0 resource?

2003-07-02 Thread Adrian Brock
If you are starting new threads, you will be responsible for giving them the correct security association. You should perform a jaas login before trying to invoke the ejbs. Regards, Adrian Adrian Brock Director of Support Back Office JBoss Group, LLC xx

[JBoss-user] JVM - BInd Exception

2003-07-02 Thread Hemant Kamat
Hi, i am running JBoss3.2.2 and Jboss3.0.4 on Windows NT. I get the following error everytime I restart JBoss 14:49:34,316 INFO [NamingService] Starting 14:49:34,316 INFO [NamingService] Starting jnp server 14:49:34,456 INFO [NamingService] Started jnpPort=1099, rmiPort=0, backlog=50, bindAddr

RE: [JBoss-user] JBossDO page is on the site

2003-07-02 Thread Heiko Rupp
Great! -- Heiko W. Rupp EMail: [EMAIL PROTECTED] Senior Consultant Telefon: +49 711 222 992 - 900 Cellent AG Finance SolutionsTelefax: +49 711 222 992 - 999 Calwer Str. 33 D-70173 Stuttgart

[JBoss-user] External JNDI

2003-07-02 Thread KChristmas
I am having a problem using the external JNDI. In my tests, I get the following error when deploying my jar file: javax.naming.NameNotFoundException: comp not bound I have a minimal instance of JBOSS 3.2.1 running with just the name service running. I am deploying the EJB in a second instance o

[JBoss-user] JBossDO page is on the site

2003-07-02 Thread Alexey Loubyansky
http://jboss.org/index.html?module=html&op=userdisplay&id=developers/projects/jboss/jbossdo I am asked directly about JBossDO. So I decided to post some stuff on the site even before the DR2 instead of answering personally to everyone. The pages are almost just written. But don't hold your impres

[JBoss-user] Some more performance statistics - Trove modifications on 3.2.0

2003-07-02 Thread Jon Barnett
In some spare time, just wrote a simple test rig to check the performance of calls using the optimized and Trove modified JBoss versus standard JBoss. The internal VM calls were invoked by 3 parallel threads that had a stateless session bean look itself up and make a single method call (that jus

[JBoss-user] giving EJB method permissions to a JCA 1.0 resource?

2003-07-02 Thread Alex Sumner
I have JCA 1.0 resource (a workflow engine) that gets called from a SLSB. In response to these calls it needs to start new threads which will then make calls back to SLSBs. Security will be handled using JAAS and the engine may need to call methods on SLSBs that the original caller was not allowed

RE: [JBoss-user] Using Log4J under Jboss/Tomcat

2003-07-02 Thread Heiko Rupp
Hi, there was a lengthy thread some months ago wrt. this. You might search the archives for it. Also on sourceforge, there is a "using log4j in jboss" paper by Scott, that also should help you. HTH Heiko -- Heiko W. Rupp EMail: [EMAIL PROTECTED] Senior Consultant

[JBoss-user] 空调余热锅炉

2003-07-02 Thread [EMAIL PROTECTED]
Title: New Page 1 家家福新产品 空调余热锅炉 产品展区

RE: [JBoss-user] SAR depends on WAR!

2003-07-02 Thread JD Brennan
Why does the SAR depend on the WAR?  Could you pull the dependent parts out of the WAR into an EJB JAR and then have both the WAR and the SAR depend on the JAR in an EAR?   -Original Message-From: Snell Nguyen [mailto:[EMAIL PROTECTED]Sent: Tuesday, July 01, 2003 10:24 PMTo: [EMAIL

[JBoss-user] Using Log4J under Jboss/Tomcat

2003-07-02 Thread Greg Roll
I've been trying un-successfully for the past day or two to implement a custom log4j appender in a webapp running under Tomcat in Jboss 3.2 I was able to have some success if I modified the Jboss log4j.xml file and added my appender there... However, is there a way to have my own properties file

RE: [JBoss-user] StackOverflowError with CMR

2003-07-02 Thread Sacha Labourey
> As I already wrote in the other thread. I will give my best > to create a > scenario which can reproduce this error and will post it if I find it. Great! Thank you. Cheers, sacha --- This SF.Net email sponsored by: Free pre-built ASP.N

[JBoss-user] Jetty and Log4j request logs

2003-07-02 Thread Sebastian Hauer
Hi, We are still using JBoss 3.0.x in production with jetty as web server. Every now and than I have to check the jetty request logs and I don't really like it. I neither like the log file format, the GMT timestamps, nor do I like that some requests are out of order. Once I tail the request logs

RE: [JBoss-user] Standalone lookup - StreamCorruptedException

2003-07-02 Thread saroj kumar
Mangesh Please ensure that JDK Version is same on client and Server -Saroj >-Original Message- >From: [EMAIL PROTECTED] >[mailto:[EMAIL PROTECTED] On Behalf Of >Magesh Prabhu >Sent: Wednesday, July 02, 2003 7:35 PM >To: jboss-user >Subject: [JBoss-user] Standalone lookup - StreamCorrup

Re: [JBoss-user] StackOverflowError with CMR

2003-07-02 Thread Christofer Dutz
Well after changing the CMR stuff to Bean-Managed-Relations the errors were other ones ;) The line which throws the exceptions (indirectly) is one that uses the CMR-Fields defined in the deployment-descriptors. But don't ask me if they were realy other ones or if I will have a look at them after

Re: [JBoss-user] org.jboss.persistence.schema.DuplicateNameException

2003-07-02 Thread Christofer Dutz
Well this is the tricky part. I wasn't able to directly find out in which cases this happens. I was going to use the JBoss-Ide Plugin for Eclipe to debug the bean. But at first I have to test this EJB Debugging a little with a smaler application. If I am able to find a real Testcase I will writ

Re: [JBoss-user] Datasource Problems

2003-07-02 Thread Edgar Silva
Roullier... I Can understand you, but you agree to me that is strange? I don't wanna also get into a protracted discussion here... =) I am Brazilian, then almost all days I am happy...=) But, the enviroment of my application is: WebServices Which I am using Apache Axis, Then I can to use JBoss

[JBoss-user] ClassCastException when deploying MBean

2003-07-02 Thread Stefan Puiu
Hello, I'm using JBoss 3.2.1 on Mandrake Linux 9.1 and I'm running it using the 1.4.1 JDK from Sun. When I try to deploy an ear which includes a sar and a jar file. I get a ClassCastException and the line the error message points me to involves instantiating a CALogger class: // CertUpdateAgen

RE: [JBoss-user] WSDL Part names within messages.

2003-07-02 Thread Mark.Gargan
Title: Message Hi Dr. Jung, Anytime, delighted I could be of any help. You mentioned the tags for operations. Ye couldn't point me in their general direction could ye? I used the xdoclet-module-jbos-net from an old jboss-head. I tried checking out the new module but I'm rarely a

[JBoss-user] Standalone lookup - StreamCorruptedException

2003-07-02 Thread Magesh Prabhu
Hi Guys, I'm doing a JNDI lookup from my Standalone Client to an Session Bean deployed on JBoss. I have the following files in standalone clients classpath: jboss-common-client.jar jboss-j2ee.jar jnp-client.jar I see the following stack.. Could any body please suggest me. Thanks in advance, Mage

RE: [JBoss-user] RE: Deploy DataSources with different versions of JDBC driver

2003-07-02 Thread Keysers Wonne
Thanks for the hints, I got it working like this: The latest (and default) Oracle JDBC-driver is still located in the server lib folder (available for all applications) and also jboss-common-jdbc-wrapper.jar and jboss-[local/xa]-jdbc.rar remain untouched. The "old" JDBC-driver and a copy of j

RE: [JBoss-user] How to configure JBoss-Jetty to serve static content?

2003-07-02 Thread Keysers Wonne
Take a look at this: http://www.coredevelopers.net/technology/jetty/jetty-jboss-faq.jsp#I_want_to_serve_content_from_outside_a Wonne REAL SOFTWARE GROUP Industry Division Prins Boudewijnlaan 26 B-2550 KONTICH http://www.realsoftware.be This e-mail may contain

[JBoss-user] J2SE 1.4 JndiLoginModule

2003-07-02 Thread Ionel Gardais
Hi, I found that a LoginModule exists to connect to a NIS Server. public class *com.sun.security.auth.module.JndiLoginModule* extends java.lang.Object implements javax.security.auth.spi.LoginModule Adding some parameter, it can connect to a NIS Server : user.provider.url="nis://*NISServerHostN

Re: [JBoss-user] StackOverflowError with CMR

2003-07-02 Thread Alexey Loubyansky
How do you know that the cause is CMR? alex Wednesday, July 02, 2003, 11:45:21 AM, Christofer Dutz wrote: CD> Hi, CD> I am working on deploying the SPECjAppServer2002 on Jboss and am having CD> trouble. I added the stacktrace and the part of the code which results CD> in JBoss throwing the St

RE: [JBoss-user] How to configure JBoss-Jetty to serve static content?

2003-07-02 Thread Alastair Rodgers
I'm not sure whether Jetty allows you to do this directly. If not, you could write a servlet which reads the file data & streams it to the HTTP response. Al. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Herve Tchepannou > Sent: 02 July 200

AW: [JBoss-user] WSDL Part names within messages.

2003-07-02 Thread Jung , Dr. Christoph
Title: Nachricht Mark,   In fact that was not what I had in mind ... it´s even much better. Manipulating deployment meta-data is the best way to influence such runtime issues. If you got to change code, it can only get worse.   I will see whether I could include that idea into the jboss.net

Re: [JBoss-user] SLSB atomicity

2003-07-02 Thread Anders Engström
On Wed, Jul 02, 2003 at 09:26:40AM +0200, Ionel Gardais wrote: > Hi, > [snip] > I have now hard coded all transaction-type="Container" in all my beans > (SLSB and CMP), transaction="Required" in the CMP and > transaction="RequiresNew" in the SLSB. > If your entity beans are only accessed from

Re[2]: [JBoss-user] org.jboss.persistence.schema.DuplicateNameException

2003-07-02 Thread Alexey Loubyansky
Hello Christofer, this stacktrace doesn't help me. What JBoss version are you using? What are you doind in create method? Can you provide me with a testcase? Thanks, alex Tuesday, July 01, 2003, 7:07:08 PM, Christofer Dutz wrote: CD> Ok .. here my Stacktrace CD> 2003-07-01 17:52:04,656 E

[JBoss-user] StackOverflowError with CMR

2003-07-02 Thread Christofer Dutz
Hi, I am working on deploying the SPECjAppServer2002 on Jboss and am having trouble. I added the stacktrace and the part of the code which results in JBoss throwing the StackOverflowError. Hopefully someone can make some sense of this error. Christofer 2003-07-01 17:52:04,656 ERROR [org.jboss.

[JBoss-user] partial clustering

2003-07-02 Thread Ionel Gardais
Hi, I will soon work with two JBoss server on the intranet. The first server will be used as a production server : all clients will connect to this one and all apps deployed should have been tested before (to be somewhat stable) The second server will run on my computer : it will be used as a d

[JBoss-user] Re: log4j jdbc appender and bmp entity bean

2003-07-02 Thread Carsten Hammer
"Carsten Hammer" <[EMAIL PROTECTED]> schrieb im Newsbeitrag news:[EMAIL PROTECTED] > Hi, > is it possible to use log4j on jboss using a jdbc appender and an entity > bean with bean managed persistency for accessing it? Is there something > ready to use? Is it possible to configure a jdbc appender

RE: [JBoss-user] Workflow engine for JBoss 3.2 ?

2003-07-02 Thread Rahul Ganjoo
Hi Dustin! The product I work on is a commercial workflow solution and works with Jboss2.x,3.x. Please check www.wipro.com/flowbrix . Get in touch with me if you wish to find out more details. Regards, Rahul Ganjoo. -Original Message- From: Barlow, Dustin [mailto:[EMAIL PROTECTED] Sent:

Re: [JBoss-user] SLSB atomicity

2003-07-02 Thread Ionel Gardais
Hi, thanks for all your answer. I look at my xdoclet tags and for now here is the thing : - all my CMP have the transactions set to Required, no transaction-type specified - the facade have a transaction-type set to Container and no transaction attribute sets. Assuming the following flowchart :

[JBoss-user] Part II - java.rmi.RemoteException: Reentrant method calldetected

2003-07-02 Thread Muraly R
Hi Gurus, This is the second part of the error I am facing in my logs. After some reading what I understand is, if there is an interdependency between two entity beans, then the re-enterant flag can be set to true in the deployment descriptor. But in our application, there is no such scenario.

[JBoss-user] Part I - ERROR [Log4jService$ThrowableListenerLoggingAdapter]unhandled throwable

2003-07-02 Thread Muraly R
Hi Gurus, I am having the following exception in my logs, which is actually hanging my application. The stack trace shows the following exception(pasted at the bottom of the mail). I am able to understand that passivate action is failing because of the DB connection. I have two queries based o