Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: fanningpj
  • Content: Threads
  • Order by date
  1. fanningpj

    reverse host name resolution in JDK1.1

    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...
  2. fanningpj

    JAXP TrAX: How to propogate SAXExceptions?

    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...
  3. fanningpj

    XSL: How to change element value into attribute value?

    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=&quot;Joe&quot; last=&quot;Soap&quot;/> I've tried...

Part and Inventory Search

Back
Top