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 Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by SAFROLE

  1. SAFROLE

    XmlDocument.changeNodeOwner(): alternative method in w3c?

    Using Sun's XmlDocument, you have a method named changeNodeOwner( Node node), which allows you to set the parent of the node argument and all of its children. I need to change the code we have from Sun to w3c standards, but the Document class provided by w3c does not have this method. Is there...
  2. SAFROLE

    Connecting To Yahoo Page

    Sure, you can use URLConnection. You will have to know the URL that you are submitting your login info to. You also need to know the parameters that the submit page is expecting and set these up as name/value pairs in a URLConnection instance. If all goes well and you connect, you'll should get...
  3. SAFROLE

    Displaying DTD in web browser

    There is nothing wrong with your DTD. Your browser is attempting to parse the DTD as XML, and it fails, which is normal, it's not XML. Just view the source of the page and you'll see that all is well. Hope it helps!
  4. SAFROLE

    XML Schema Validator not recognizing use="required"

    I am currently experimenting with Oracle's XML Schema Validator for Java(compliant for W3C XML Schema Proposal version:20001024). I have an element definition in my schema as follows... <xsd:element name=&quot;authorizer&quot;> <xsd:complexType> <xsd:attribute name=&quot;name&quot...
  5. SAFROLE

    SUn JSSE SSL Question

    Do you guys know of any software companies, other than Sun (JSSE), that provide JSSE compliant implementations for SSL? Currently our application uses the following provider which is loaded dynamically... com.sun.net.ssl.internal.ssl.Provider ...but we are looking for a different compliant...

Part and Inventory Search

Back
Top