You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Michael Burbidge <mb...@adobe.com> on 2008/04/25 00:49:07 UTC

DOMImplementationRegistry and Tomcat...

I'm trying to retrieve a DOM implementation from my servlet. The  
following code works fine when I deploy it to tomcat within JBoss, but  
when I deploy it to standalone tomcat, the second line returns null.

			domRegistry = DOMImplementationRegistry.newInstance();
			domImpl = (DOMImplementationLS)  
domRegistry.getDOMImplementation("LS");

Any ideas why that would be?

Thanks,
Michael-