"Cato, Christopher" wrote: > Hi. I'd like to performance test my applications, anyone have a clue on what > software to use? > > I use Fort� for Java CE 3 as the IDE and TomCat 3.23 as the servlet / jsp > container. The server runs on RH Linux 6.2 > > Hopefully there are some opensource tools to use for this? > > Regards, > Chris > > -- > To unsubscribe: <mailto:[EMAIL PROTECTED]> > For additional commands: <mailto:[EMAIL PROTECTED]> > Troubles with the list: <mailto:[EMAIL PROTECTED]>
Hi, It depends on what you want to test. I wanted to test the response time of an application with a html/jsp frontend and enterprise beans which are served by the Jonas server. I used the test-suite from www.junit.org. They have a special framework for performance testing. You can simulate an arbitrary number of users that try to reach the application (at the same moment or witin a specified interval) and you can measure the amount of time it takes to provide an answer to the user for his request. Perhaps Apache or Sun also have a test-tool, but for me junit.org was fine. It is open source, and it does not depend on your EJB or jsp-server. The only disadvantage is that Javascript is not supported. Sophie -- To unsubscribe: <mailto:[EMAIL PROTECTED]> For additional commands: <mailto:[EMAIL PROTECTED]> Troubles with the list: <mailto:[EMAIL PROTECTED]>
