ContributionsMost RecentMost LikesSolutionsjava.lang.OutOfMemoryError: PerGen space creating reportsoapUI Pro 4.0.2-SNAPSHOT Tried creating a report for a very small test case. I got: Wed Nov 23 10:40:33 CST 2011:ERROR:java.lang.OutOfMemoryError: PermGen space java.lang.OutOfMemoryError: PermGen space at java.lang.Throwable.getStackTraceElement(Native Method) at java.lang.Throwable.getOurStackTrace(Throwable.java:591) at java.lang.Throwable.printStackTrace(Throwable.java:510) at org.apache.log4j.spi.ThrowableInformation.getThrowableStrRep(ThrowableInformation.java:59) at org.apache.log4j.spi.LoggingEvent.getThrowableStrRep(LoggingEvent.java:342) at org.apache.log4j.WriterAppender.subAppend(WriterAppender.java:304) at org.apache.log4j.RollingFileAppender.subAppend(RollingFileAppender.java:236) at org.apache.log4j.WriterAppender.append(WriterAppender.java:159) at org.apache.log4j.AppenderSkeleton.doAppend(AppenderSkeleton.java:230) at org.apache.log4j.helpers.AppenderAttachableImpl.appendLoopOnAppenders(AppenderAttachableImpl.java:65) at org.apache.log4j.Category.callAppenders(Category.java:203) at org.apache.log4j.Category.forcedLog(Category.java:388) at org.apache.log4j.Category.log(Category.java:853) at org.apache.commons.logging.impl.Log4JLogger.error(Log4JLogger.java:257) at net.sf.jasperreports.engine.fill.JRFillSubreport.prepare(JRFillSubreport.java:703) at net.sf.jasperreports.engine.fill.JRFillElementContainer.prepareElements(JRFillElementContainer.java:329) at net.sf.jasperreports.engine.fill.JRFillBand.fill(JRFillBand.java:419) at net.sf.jasperreports.engine.fill.JRFillBand.fill(JRFillBand.java:378) at net.sf.jasperreports.engine.fill.JRVerticalFiller.fillColumnBand(JRVerticalFiller.java:2070) at net.sf.jasperreports.engine.fill.JRVerticalFiller.fillDetail(JRVerticalFiller.java:760) at net.sf.jasperreports.engine.fill.JRVerticalFiller.fillReportStart(JRVerticalFiller.java:270) at net.sf.jasperreports.engine.fill.JRVerticalFiller.fillReport(JRVerticalFiller.java:128) at net.sf.jasperreports.engine.fill.JRBaseFiller.fill(JRBaseFiller.java:946) at net.sf.jasperreports.engine.fill.JRBaseFiller.fill(JRBaseFiller.java:864) at net.sf.jasperreports.engine.fill.JRFiller.fillReport(JRFiller.java:84) at net.sf.jasperreports.engine.JasperFillManager.fillReport(JasperFillManager.java:624) at com.eviware.soapui.reporting.engine.jasper.GenerateJasperReport.createReport(SourceFile:467) at com.eviware.soapui.reporting.engine.jasper.GenerateJasperReport$ReportFillWorker.construct(SourceFile:428) at com.eviware.soapui.support.swing.SwingWorkerDelegator.construct(SwingWorkerDelegator.java:46) at com.eviware.soapui.support.swing.SwingWorker$2.run(SwingWorker.java:149) at java.lang.Thread.run(Unknown Source)Re: TestSuite not created when adding WADLYes, the nightly build fixed the endpoint path problem. Thanks, -- DaveCreate TestSuite test step namingIf I import a WADL file that has a resource definition with two method definitions (POST vs. GET for instance), I get dialogs asking to resolve the naming conflict by appending a "1" after the test step name. I think it would be better if it would append the method name after them. So if my resource is named "businesses" and I have POST and GET methods, it would produce "businesses POST" and "businesses GET" test steps, not "businesses" and "businesses 1".Re: TestSuite not created when adding WADLOne thing I noticed is that since my WADL specifies a relative path for the "base" attribute, the test cases do not work by setting an endpoint on the service properties and then selecting it for all test cases via the URL button on the TestSuite editor. The problem is it does not append the path portion of the resource to the endpoint. For example, if I set the endpoint to http://mydomain.com/ and I try to run the test case for businesses (GET), it doesn't try to connect to http://mydomain.com/api/businesses, it tries to connect to http://mydomain.com/. Why is this and how do I correct it? Thanks, -- DaveRe: TestSuite not created when adding WADLHere is a WADL file that fails to create a TestSuite: <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <application xmlns="http://wadl.dev.java.net/2009/02"> <resources base="api"> <resource path="businesses"> <method name="POST"> <request> <param xmlns:xs="http://www.w3.org/2001/XMLSchema" name="BusinessId" style="query" type="xs:long"/> <representation mediaType="application/xml"/> <representation mediaType="application/json"/> </request> <response status="200"> <representation mediaType="application/xml"/> <representation mediaType="application/json"/> </response> </method> <method name="GET"> <request> <param xmlns:xs="http://www.w3.org/2001/XMLSchema" name="Federation" style="query" type="xs:boolean" default="false"/> </request> <response status="200"> <representation mediaType="text/xml"/> <representation mediaType="application/json"/> </response> </method> <resource path="/{businessID}/export"> <param name="businessID" style="template"/> <method name="GET"> <response status="200"> <representation mediaType="text/plain"/> </response> </method> </resource> <resource path="{businessID}"> <param name="businessID" style="template"/> <method name="GET"> <response status="200"> <representation mediaType="application/json"/> <representation mediaType="text/xml"/> </response> </method> </resource> <resource path="{businessID}/apis"> <param name="businessID" style="template"/> <method name="POST"> <request> <representation mediaType="application/json"/> <representation mediaType="application/xml"/> </request> <response status="200"> <representation mediaType="application/json"/> <representation mediaType="application/xml"/> </response> </method> </resource> </resource> </resources> </application>Re: TestSuite not created when adding WADLThere were no errors in the error log. I was able to get it to work by right clicking on the project and selecting Generate TestSuite.TestSuite not created when adding WADLI'm using soapUI pro 4.0.1. Created a project Add WADL Type in WADL location and check Create TestSuite box The project is populated with the APIs, but no TestSuite is created. -- Dave