Hi Dustin, Maybe you still have DomRepresentation objects hanging around, not yet garbage collected? Maybe you should try forcing the GC to run?
Best regards, Jerome Louvel -- Restlet ~ Founder and Lead developer ~ http://www.restlet.org Noelios Technologies ~ Co-founder ~ http://www.noelios.com -----Message d'origine----- De : Dustin N. Jenkins [mailto:[email protected]] Envoyé : mardi 8 septembre 2009 17:28 À : [email protected] Objet : XML Extension not being cleaned up I'm using Restlet 2.0 M4 with JDK 1.6.0_16 on Fedora Core 8. My web application's container is Tomcat 6.0.20. My web application returns XML Representations for each GET request, and the Representations are all created like so: try { final DomRepresentation rep = new DomRepresentation(MediaType.TEXT_XML); final Document document = rep.getDocument(); // Create elements and append them to the Document. buildXML(document); document.normalizeDocument(); return rep; } catch (IOException e) { LOGGER.error("Unable to create representation.", e); throw new InvalidResourceException( "Unable to create XML Document.", e); } The buildXML() method simply creates Elements for a Domain Object with an XML Namespace and appends them to the given Document. But if I try to hot redeploy the webapp in Tomcat, there is still a handle on the org.restlet.ext.xml.jar file, so if the ${CATALINA_BASE}/webapps directory were NFS mounted, the .nfsXXXX file would still exist and Tomcat could not redeploy it. Is anyone else having trouble with this? Is this a problem with Streams not closing somewhere along the line? Thanks, Dustin -- Dustin N. Jenkins | Tel/Tél: 250.363.3101 | [email protected] facsimile/télécopieur: (250) 363-0045 National Research Council Canada | 5071 West Saanich Rd, Victoria BC. V9E 2E7 Conseil national de recherches Canada | 5071, ch. West Saanich, Victoria (C.-B) V9E 2E7 Government of Canada | Gouvernement du Canada ------------------------------------------------------ http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2392534 ------------------------------------------------------ http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2401063

