I'm stuck with using JDK 1.1.7 and I want to get the fully qualified DNS name of the machine my JVM is running on. If I use the following code:
java.net.InetAdress ia = java.net.InetAdress.getLocalHost();
String addr = ia.getHostName();
The addr is not qualified. Does any know of a way of doing...
I have a system doing the following:
SAX Pipe(input) -> SAXSource -> Xalan -> SAXResult -> SAX Pipe(output)
If I get an exception in the SAX Pipe(output), I want to pass a SAXException back down the program stack. Xalan currently swallows my SAXExceptions. Does anyone know of a feature that I...
I'm quite new to XSL and all the tutorials seem to be oriented towards XML -> HTML conversions - I want XML -> XML.
I have something like:
<name>
<first>Joe</first>
<last>Soap</last>
</name>
I want to convert this to:
<name first="Joe" last="Soap"/>
I've tried...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.