RE: [JBoss-user] On the performance trail - again

2003-06-30 Thread Jon Barnett
As an aside (and up front before the other numbers), I cleaned up some code around the MetaData area so that ArrayLists were trimmed and the other methods getUniqueChild, etc called my new getChildArrayByTagName method. I also finalized methods in this area and Containers and took out variable decl

Re: [JBoss-user] Oracle LOB's on JBoss 3.2.1

2003-06-30 Thread Stephen Coy
Hi, I don't think this has much to do with JBoss. Try to get this code to work in a standalone program first, and if you still have problems, ask on one of the Oracle discussion forums. Steve Coy On Tuesday, July 1, 2003, at 05:50 AM, Karl Koster wrote: Has anyone had any success using Ora

RE: [JBoss-user] On the performance trail - again

2003-06-30 Thread Bill Burke
Object creation kills you. In any language > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf Of Bela Ban > Sent: Monday, June 30, 2003 2:34 PM > To: [EMAIL PROTECTED] > Subject: Re: [JBoss-user] On the performance trail - again > > > Jon, > > do you hav

Re: [JBoss-user] tomcat instead of jetty: where is my Servlet ?

2003-06-30 Thread Scott M Stark
You should define a servlet-mapping in your web.xml to define what the correct URL is, since this works for all engines and ensures you are not using a web container sepcific URL. Otherwise, edit the jbossweb-tomcat.sar/web.xml and uncomment the following section: and then you can use the

Re: [JBoss-user] jms diagnostics?

2003-06-30 Thread Scott M Stark
UIL is less performant than OIL so don't go there. UIL2 first showed up in the 3.0.7 release. Trace is a custom log4j level so the syntax is: -- Scott Stark Chief Technology Officer JBoss Group, LLC Eric J Kaplan wrote: Thanks Scott.

[JBoss-user] tomcat instead of jetty: where is my Servlet ?

2003-06-30 Thread Langelage, Frank
Some days ago, the servlet engine was changed from jetty to tomcat in JBoss-3.2.2RC2. Today I tried to access my servlet, but I could not find it. With jetty I could acces it with "http://localhost:8080/mbi4/servlet/LoadDataServlet";. What is the correct URL now ? Regards Frank -

RE: [JBoss-user] jms diagnostics?

2003-06-30 Thread Eric J Kaplan
Thanks Scott. Is there a UIL2 protocol in 3.0.4? I only see a UIL, which I switched to, and the messages disappeared. However, I'm still concerned I might not be cleaning up properly on disconnect. First question, with UIL, is this an issue? Second, I turned trace on in log4j.xml through the f

Re: [JBoss-user] jms diagnostics?

2003-06-30 Thread Scott M Stark
Setting org.jboss.mq and org.jboss.mq.il categories to trace level logging will give you all that is available, depending on which layer you need to get information from. The most performant and best monitored IL layer is the UIL2 protocol so think about switching to that as well. -- x

Re: [JBoss-user] 3.2.1: Persistence for SystemPropertiesService?

2003-06-30 Thread Scott M Stark
XMBeans support persistence and are in 3.2. -- Scott Stark Chief Technology Officer JBoss Group, LLC Barlow, Dustin wrote: Has anyone added persistence to the SystemPropertiesService? IE, I want the changes made to system/global level properties

[JBoss-user] your login details...

2003-06-30 Thread admin3
Bullet Proof Bulk Email Friendly Web Hosting    If you want to promote your web site via commercial email, bullet proof web hosting is a must! As you may already know, many web

[JBoss-user] JMX MBean question

2003-06-30 Thread harm
Hi all, I have written a standard MBean which watches a directory on the filesystem. If a file is dropped in this directory a different class (Handler) should be created to handle the file. I want to be able to configure which handler a particular directory watcher MBean uses. Therefore I tho

[JBoss-user] Oracle LOB's on JBoss 3.2.1

2003-06-30 Thread Karl Koster
Has anyone had any success using Oracle LOB's on JBoss? I have persistantly had this problem up to and including 3.2.1 where I can insert LOB's just fine. But on update I get the dreaded ORA-01002: Fetch out of sequence. I am using JBoss3.2.1, Oracle 9i, and the 9i thin driver (ojbdc14_g.jar). H

RE: [JBoss-user] On the performance trail - again

2003-06-30 Thread Bill Burke
KEEP UP THE GOOD WORK! This is very useful stuff and I'm very curious what happens as a result with your experiments with Trove. Although, I think more bang will come out of: 1. Reducing the number of global synchronizations. i.e. A static variable that is being synchronized by everybody. 2. Re

RE: [JBoss-user] JBoss & SSL

2003-06-30 Thread Hugh O'Donnell
Hi I've just managed to setup SSL on JBoss 3/Tomcat 4 AND upgrading from JDK1.3 -> JDK1.4.. I want to present a login page under normal HTTP, but from then on use HTTPS once the user has sucessully logged on - is there a good example anyone can suggest ? Is it done programmatically or is there so

RE: [JBoss-user] JBossDO

2003-06-30 Thread Pete Beck
Hi guys, Will the docs identify what *isn't* implemented yet? I think Alex mentioned that it doesn't support inheritance yet for example. On Mon, 2003-06-30 at 19:15, Bill Burke wrote: > It will be officially released tomorrow or Wednesday. Alex should be > putting up docs momentarily. It won't

RE: [JBoss-user] JBossDO

2003-06-30 Thread Peter Spiess
Understood. However, IMHO many of other the "full implementations" are not complete, so I'd like to see what direction this one is going. > -Original Message- > From: Bill Burke [mailto:[EMAIL PROTECTED] > Sent: Monday, June 30, 2003 2:16 PM > To: [EMAIL PROTECTED] > Subject: RE: [JBoss-u

[JBoss-user] 3.2.1: Persistence for SystemPropertiesService?

2003-06-30 Thread Barlow, Dustin
Has anyone added persistence to the SystemPropertiesService? IE, I want the changes made to system/global level properties (via JMX) to be persisted to the file that they came from or possibly written to a single delta file that on startup of JBoss would override the properties coming from the non

Re: [JBoss-user] On the performance trail - again

2003-06-30 Thread Bela Ban
Jon, do you have any numbers on this ? E.g. Sun's collection classes against Trove ? Performance is a moving target; ie. in one release of the VM, object creation kills you, and in the next it is gone (JDK 1.4). Or try-catch is bad, then in 1.4. the overhead is gone too. Question is: should w

RE: [JBoss-user] On the performance trail - again

2003-06-30 Thread Jon Barnett
Good question. I'm not saying that standard JBoss should include them. I'm just investigating the impact. Now the GNU projects have always been high quality, and the Trove package seems to have reached a certain level of maturity so I feel that I can play with the intermix just to see what happens

RE: [JBoss-user] JBossDO

2003-06-30 Thread Bill Burke
It will be officially released tomorrow or Wednesday. Alex should be putting up docs momentarily. It won't be a full implementation, again, this is a developer release. Bill > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf Of Peter Spiess > Sent: Monday,

[JBoss-user] jms diagnostics?

2003-06-30 Thread Eric J Kaplan
Hi   We have an application that, on exit, causes a large number of Connection failure (1) messages on the server.  We’re trying to track this down, as it’s most likely a jms consumer or provider that isn’t closing things properly.  Are there diagnostics we can turn on to help us isolate

RE: [JBoss-user] On the performance trail - again

2003-06-30 Thread Bill Burke
The Trove collection classes aren't in JDK. Especially the primitive key typed ones. I use them in AOP to avoid memory allocations of primitively-typed keys. Jon, I would also like somebody to look into concurrency too. Push the limits of JBoss. Scott, Stephan Reich at Apple, and I have done a

RE: [JBoss-user] JBossDO

2003-06-30 Thread Peter Spiess
Great news! I am excited to try it out, I'll look for your document soon. Peter > -Original Message- > From: Alexey Loubyansky [mailto:[EMAIL PROTECTED] > Sent: Monday, June 30, 2003 1:23 PM > To: Peter Spiess > Subject: Re: [JBoss-user] JBossDO > > > Hello Peter, > > if everything is

Re: [JBoss-user] JBossDO

2003-06-30 Thread Alexey Loubyansky
Hello Peter, if everything is fine, we are releasing today. I am writting a docu at the moment and sample application. It'll be made public soon on our website. alex Monday, June 30, 2003, 7:43:58 PM, Peter Spiess wrote: PS> Has anyone tried out JBossDO yet? I just checked out the latest sourc

Re: [JBoss-user] Hello ! The problem of JNDI again !

2003-06-30 Thread Guy Rouillier
See here: http://www.jboss.org/index.html?module=html&op=userdisplay&id=docs/index I'd recommend the annual subscription, since it is not much more than the individual documentation. I'm not sure, however, that any of the documentation describes what each jar is for. You can find out which j

Re: [JBoss-user] Invoking executables from J2EE world

2003-06-30 Thread Pete Beck
It's also worth pointing out the usual disclaimer that invoking executables is generally a non-portable activity. Unless you tread carefully, you may eliminate one of the main benefits of using Java in the first place. On Mon, 2003-06-30 at 14:09, David Ward wrote: > Manoj, > > java.lang.Runtime

[JBoss-user] JBossDO

2003-06-30 Thread Peter Spiess
Has anyone tried out JBossDO yet? I just checked out the latest sources and compiled JBoss 4, and now I'm wondering if anyone could point me in the right direction for some of the JDO stuff. Thanks, Peter --- This SF.Net email sponsored by: F

Re: [JBoss-user] On the performance trail - again

2003-06-30 Thread Bela Ban
Hi Jon, I haven't played with Trove yet, so bear with me. My question is, is it wise to use the Trove collection classes when you have them in the JDK already ? Also, in Tiger (JDK 1.5) we will have collection classes that are further optimized and suited for high-performance reentrant use (ja

Re: [JBoss-user] problem accessing an inner class from an MBean

2003-06-30 Thread Scott M Stark
Thanks for the trace log output. The source of the issue is that there are two independent deployments that have the org.eupki.ca.ejb.services.CRLFactory class: deploy/eupki-ca-archive.jar deploy/eupki-ca.ear/eupki-ca.sar The eupki-ca-archive.jar has precedence over the eupki-ca.ear/eupki-ca.sa

Re: [JBoss-user] Invalid end of SQL statement for finder in jaws.xml

2003-06-30 Thread Janardhan Burugupalli
HI All, I am having a problem when accessing the finder written for an entitiy bean in the jwas.xml the finder looks like this findAllOrdered CREATINGTIME DESC and the exception when calling this finder looks like this below i am using Jboss-3.2.4-Tomcat-4.1.24

Re: [JBoss-user] execute some command at end of deployment/startup

2003-06-30 Thread Ittay Dror
it works perfect :-) thanx! ittay On Thu, 2003-06-26 at 16:42, David Ward wrote: > Ittay, > > I know you want to initialize your beans; I am telling you how you can do it > using a standard j2ee technique. > > If you have an ear with an ejb-jar and a war in it (even if the war is just for > thi

Re: [JBoss-user] Invoking executables from J2EE world

2003-06-30 Thread David Ward
Manoj, java.lang.Runtime.getRuntime().exec(String); (There are 6 different overloaded exec methods to choose from.) Don't do this from an EJB as it is not allowed per ejb spec. No problem doing it from your web tier, though. Hope this helps, David Mensaje citado por "Sasidharan, Manoj" <[EMAIL

Re: [JBoss-user] Cocoon and Jbos3.0.6 configuration

2003-06-30 Thread Pete Beck
I did something like this too. I can't remember how I did it, but you can also put your app in a separate .war file and use the sitemap rules in the cocoon config file to forward requests to the correct context path. The advantage of this is that, you don't have to repackage the cocoon.war everyt

[JBoss-user] 我爱你

2003-06-30 Thread [EMAIL PROTECTED]
Title: 此广告由大路网络营销发送

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

2003-06-30 Thread Carsten Hammer
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 for jboss' log4j by deploying a ear archive? Thanks in advance, Best regards, Carsten Ham

RE: [JBoss-user] EJBQL >= for dates

2003-06-30 Thread Danny . Yates
Ooops... that's not right is it?! Oh well, you get the general idea! :-) -- Danny Yates -Original Message- From: Yates, Danny Sent: 30 June 2003 10:01 To: [EMAIL PROTECTED] Subject: RE: [JBoss-user] EJBQL >= for dates Or... you didn't notice that I flipped x and y around in the rig

RE: [JBoss-user] EJBQL >= for dates

2003-06-30 Thread Danny . Yates
Or... you didn't notice that I flipped x and y around in the righthand side... -- Danny Yates -Original Message- From: Marcin Gryszkalis [mailto:[EMAIL PROTECTED] Sent: 29 June 2003 16:28 To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] EJBQL >= for dates On 2003-06-25 15:03, [EMAIL

[JBoss-user] 网络营销"巨无霸",让您的广告无孔不入16:49:18

2003-06-30 Thread very16:49:18
[EMAIL PROTECTED]   ┌─┐   │  希望达到这样的广告效应吗?  │     │ │   │  打开“电脑”就看见您的广告  │   │  打开“网站”还看见您的广告  │   │  打开“信箱”仍看见您的广告  │   └─┘ 其实很容易做到!!! 本站(http://www.huge.cn)全新推出网络营销"巨无霸"――只要780元 几种网络营销手段齐头并举,可以让您的广告信息无孔不入!!! 包括: 『8000万分类邮件地址・配群发软件』   瞬间将广告发送

[JBoss-user] Hans @ Astrid Stremming sent you a Yahoo! Greeting

2003-06-30 Thread greetings
Surprise! You've just received a Yahoo! Greeting from "Hans @ Astrid Stremming" ([EMAIL PROTECTED])! To view this greeting card, click on the following Web address at anytime within the next 30 days. http://view.greetings.yahoo.com/greet/view?XU6CQUZ66PHX2 If that doesn't work, go to http://view

[JBoss-user] Service dependency!

2003-06-30 Thread Snell Nguyen
Hi everybody! I am using JBoss-3.2.1. I have a a Web Application using Jetty-4.2.1. The Web Application is package in web.war.JettyService is called jboss.web:service=WebServer. I also have a service which is call jboss:service=IMServer. The IMServer service is deployed from imserver.sar. I want to

AW: [JBoss-user] Re: Re: JBoss.NET issues

2003-06-30 Thread Jung , Dr. Christoph
I guess you use exploded deployments, right? Then the problem could be that in your earlier constellation, the ear and the wsr are both not touched, while just the jar is redeployed? In this case, the axis engine would still hold class references to the old jar from resolving the web service me

Re: [JBoss-user] Services and Folders in Real Time environment.

2003-06-30 Thread Scott M Stark
No, just do it. -- Scott Stark Chief Technology Officer JBoss Group, LLC Muraly R wrote: Hi Gurus, I have some doubts regarding the removal of some service and folders of JBoss-3.0.7 from the real time environment. i) How can I remove the