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 gkittelson 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: jargo
  • Order by date
  1. jargo

    Using SelectionNamespaces to rewrite prefixes

    var dom = new ActiveXObject("MSXML2.DOMDocument.5.0"); dom.async= false; dom.load("example.xml"); if (dom.parseError.errorCode!=0) { alert("can't load dom" + dom.parseError.reason); exit; } ns = "xmlns:z='http://myserver.com'"; dom.setProperty("SelectionNamespaces", ns)...
  2. jargo

    Using SelectionNamespaces to rewrite prefixes

    Correction: "When I get the value I would like to have it return the new prefix not the old. (the prefix alias is what I want)." I meant: When I get the NODE NAME back I want to returned with the new prefix. Thanks J
  3. jargo

    Using SelectionNamespaces to rewrite prefixes

    Hello, I would like to assign a prefix alias to a URI. After having done that if I loop through a message node by node doing something like: get_nodeName get_firstChild get_nodeType get_nodeValue When I get the value I would like to have it return the new prefix not the old. (the prefix alias...

Part and Inventory Search

Back
Top