Re: Problem with the JMeter HTTP Proxy

2010-01-08 Thread Jose_
Hello Felix, I'm having the same error. I'm testing a JSF application and there is a point where it is necessary to send a file with the request. I have test it with Internet Explorer and it works fine but, when I test it through the JMeter Proxy it doesn't work. I get the same page and the

[ANN] Release of Apache MyFaces Trinidad's Maven plugins (2.0.0)

2010-01-08 Thread Matthias Wessendorf
Hi, The Apache MyFaces community is pleased to announce its 2.0.0 release of the Apache MyFaces Trinidad Maven2 plugins. This release contains initial support for the new JSF 2.0 related API/metadata. These Maven2 plugins have been deployed to the Apache Maven2 repository and they should be

[ANN] Release of Apache MyFaces Trinidad 2.0.0-alpha

2010-01-08 Thread Matthias Wessendorf
The Apache MyFaces Trinidad team is pleased to announce the release of Apache MyFaces Trinidad Core 2.0.0-alpha. Apache MyFaces Trinidad 2 is a JavaServer(tm) Faces 2.0 component library. Note: This is the first release of the Apache MyFaces Trinidad 2 series and it is an alpha relases. Apache

Server side error messages need to be cleared when resubmitted the page to prevent duplicate display

2010-01-08 Thread Anand
Hi All, We are facing some issues related the client side validation error messages. Let's say we have two text boxes a1 and a2 in an xhtml file 1. a1 has client side validation 2. a2 has server side validation User fills in correct data in a1 and wrong data in a2 and submits the request. Server

Re: [Trinidad] Trinidad consuming 80-90% CPU

2010-01-08 Thread Ravi Kapoor
Hi Matthias, Here are the details: Server: Websphere 6.1 Trinidad version: 1.0.7 (We cant upgrade to 2.0 until we upgrade websphere which will happen in due course. Even then if this issue has not been addressed, the problem may exist in 2.0 as well.) OS: Windows (Even though I am measuring

Trinidad Composite Component

2010-01-08 Thread Paul Pasquel
Hi, Could you tell where I can find an example to build an Composite Trinidad Component using facelets ? Thanks -- This email was Anti Virus checked by Astaro Security Gateway.

Re: Trinidad Composite Component

2010-01-08 Thread Walter Mourão
Try: http://code.google.com/p/trinidadcomponents/ Walter Mourão http://waltermourao.com.br http://arcadian.com.br http://oriens.com.br On Fri, Jan 8, 2010 at 1:46 PM, Paul Pasquel paul.pasq...@modinter.com.ecwrote: Hi, Could you tell where I can find an example to build an Composite

Re: [Trinidad] Chart drilldown listener problem

2010-01-08 Thread Rafael Ribeiro
I guess in my case it had to do with JBoss EL Parser... but.. anyways... I did an workaround that I am not proud of but at least let me catch the event, I've changed org.apache.myfaces.trinidad.component.UIXChart.broadcast method and added setProperty(EVENT_KEY, event); just before:

Re: [Trinidad] Chart drilldown listener problem

2010-01-08 Thread Rafael Ribeiro
actually what fixed the issue was the following code: getFacesContext().getExternalContext().getRequestMap().put(event, event); Rafael Ribeiro wrote: I guess in my case it had to do with JBoss EL Parser... but.. anyways... I did an workaround that I am not proud of but at least

Re: [Trinidad] Trinidad consuming 80-90% CPU

2010-01-08 Thread Jan-Kees van Andel
Hey, Is it possible that the getProperty indirectly invokes some expensive computation? For example, do you have lots of logic inside your getters? Regards, Jan-Kees 2010/1/8 Ravi Kapoor ravikapoor...@gmail.com: Hi Matthias, Here are the details: Server: Websphere 6.1 Trinidad version:

Re: [Trinidad] Trinidad consuming 80-90% CPU

2010-01-08 Thread Ravi Kapoor
The actual call to getter method is only using 2% CPU. Rest 38% is being used within trinidad classes. I am attaching two screenshots to give you more details. In first screenshot, you can see at the top left corner, total CPU units taken by getProperty are 32391 getProperty calls

Re: [Trinidad] Trinidad consuming 80-90% CPU

2010-01-08 Thread Jan-Kees van Andel
I'm not sure, but I doubt the mailing list supports attachments. Maybe you could provide a link to some image hosting site? My first thought, reflection is darn cheap, especially since Java 5 and even more since Java 6. I'm no IBM JVM specialist, but I don't think there are major differences with

Re: [Trinidad] Trinidad consuming 80-90% CPU

2010-01-08 Thread Richard Yee
How much physical memory is on your testing machine? I have a few Trinidad applications in production and don't see any of the performance issues you are having. -Richard On Fri, Jan 8, 2010 at 12:33 PM, Jan-Kees van Andel jankeesvanan...@gmail.com wrote: I'm not sure, but I doubt the

Re: [Trinidad] Trinidad consuming 80-90% CPU

2010-01-08 Thread Ravi Kapoor
This is an enterprise application. I am using tracing not sampling. The thought that the issue within application and not in trinidad occurred to me as well. Hence I validated in many ways and everything points to trinidad as having the issue. I measured the CPU used within each class and this

Re: [Trinidad] Trinidad consuming 80-90% CPU

2010-01-08 Thread Ravi Kapoor
I have 2 GB on the machine and it only uses 1 GB. Can you give details on your environment. Especially trinidad version, CPU details and how many users per JVM can you handle, what %age of CPU is consumed by trinidad etc Regards Ravi On Fri, Jan 8, 2010 at 4:08 PM, Richard Yee

Re: [Trinidad] Trinidad consuming 80-90% CPU

2010-01-08 Thread Ravi
Hi Jan-Kees, Now that I am reading your message again, I do want to answer your questions in detail. First I agree reflection is cheap, that is why reflection is not my concern. Time being spent in reflection is almost negligible compared to time being spent in trinidad classes. Secondly