1. Ldap JMS testing through JMeter gives illegal state exception coderanch.com |
2. cuse "c:if" to test for the boolean true coderanch.com |
3. Problem Using c:when test coderanch.com |
4. Need help getting a test condition to work on a boolean property coderanch.com |
5. Problems with a simple jms test application coderanch.com |
6. c:if test doesnt like el? coderanch.com |
7. suggestions on how to test capacity of servlet/web app coderanch.com |
8. Junit test with Embedded Glassfish stop working with persistence.xml coderanch.comHi Christian, Thanks for your reply! I've been able to make it work setting a few properties on the container before starting it properties.put(EJBContainer.MODULES, new File("target/classes")); //added this properties.put("org.glassfish.ejb.embedded.glassfish.installation.root", "/Applications/NetBeans/sges-v3/glassfish"); //and this createEJBContainer = EJBContainer.createEJBContainer(properties); When i didn't do that, the error was the same as if there was no domain.xml in the resources folder. It said that it could not ... |
9. mock test for a servlet program(with out webserver) coderanch.com |
10. JSP test client for Axis2 service coderanch.com |
11. How to use ejb3unit for unit testing? coderanch.com |
12. Testing heavy load in j2ee web applications coderanch.comHi, I am using jmeter for load testing.But currently my requirement is that to test a j2ee web application with 30000 hits/minute.For that i am given 30000 as threads and 60 as ramp up period.The result is that Jmeter is stucked and busy for a long period, and some time give 1000's request are passed rather than expected 30000. Any Solution??..Please ... |
13. Opinion on Testing my Practise Project coderanch.comHi I was thinking about doing a small Shopping Cart 3-4 pages of a JSP project just to build up confidence and fluency. I currently use eclipse EE and basically excute the main jsp page from there which launches it in Firefox. I actually wanted to simulate a scenario in which multiple users would be using the website to test it. ... |
14. error with running EJBContainer junit test coderanch.com |
15. How to test web service client with OpenEJB coderanch.comHi, I 've downloaded an EJB3 project, the test case is built with OpenEJB, and run it with maven2. There is some error. ------------------------------------------------------- T E S T S ------------------------------------------------------- Running org.superbiz.calculator.CalculatorTest Apache OpenEJB 3.1.4 build: 20101112-03:32 http://openejb.apache.org/ INFO - openejb.home = C:\work\simple-webservice INFO - openejb.base = C:\work\simple-webservice INFO - Configuring Service(id=Default Security Service, type=SecurityService, provider-id=Default Security Service) INFO - Configuring ... |
16. Login Module for Online Test Application coderanch.comAs i am developing small demo of Online testing. Though username exist in Database, it shows "User Doesn't Exist"...! Here, "login.jsp" is file containing form that will get Username and Password from USER. login_Servlet is controller that will get username and password from login.jsp and also give Username to Model class "login_Model" for getting all other informations like; Password, UserLevel(1-admin , ... |
17. Test PersistenceContexts for equality coderanch.com |
18. How to test my proxy application on localhost? java-forums.org |
19. testing Java jsp/servlets java-forums.org |
20. Not direct to localhost:8080/test/index.do and show This is my JSP page? java-forums.org |
21. unit testing of servlets using cactus forums.oracle.com |
22. Embedded Jetty Servlet Testing forums.oracle.com |
23. XML to JSP Unit Testing forums.oracle.com |
24. problems running a test in main for a servlet forums.oracle.comOk. I figured as much. But I can't do it even if I set the environment? What is the solution then? I really am sick and tired of restarting the damned thing everytime and getting to the point where I create the request I need in order to test whatever needs to be tested. That's just silly. Thank you, Iulia |
25. How to test Servlet using httpunit or junit?Any advice will be helpful. forums.oracle.com |
26. Help!!!How to test Servlet? forums.oracle.comhow to test servlet with the code below. in method doPost or doGet, doPost(HttpServletRequest req,HttpServletResponse resp) { DataInputStream dis =null; String data=""; dis = new DataInputStream(req.getInputStream()); data=dis.readUTF();// readInt(),readBoolean() ,etc may applied System.out.println("data:"+data); } if i code req.getParameter("param"); then i wrote test programm like this request.setParameter("param","something");the servlet can get the value. my question is ,how can i test the code above?how to ... |
27. Unit Testing of servlets and jsp by Junit forums.oracle.com |