Featurerequests

Interesting =) Ill look forward to read you requests.

10 comments:

  1. Hi

    Is this wonderful tool is open source ?

    thks

    bob

    ReplyDelete
  2. Nope xmltoolbox is not opensource.

    ReplyDelete
  3. can I pass the XML to be formatted in the URL and have the formatted XML display in the box formatted

    ReplyDelete
    Replies
    1. No This is not possible. This site generates no income and a solution to your request would require more bandwith which would increase the cost...

      All formatting on xmltoolbox happenes clientside. This is also a guarantee that the xml you format wont be send anywhere else.

      Delete
  4. I'm trying to do essentially what the xpathevaluator does - I'm trying to filter by an attribute

    function filterList(XSLTProc) {
    var filterstr = document.webform.filter.value;
    if (filterstr == "") filter="//MOVIE"
    else filter = "//MOVIE[@"+filterstr+"]";

    if (IE) {
    xNodes = XMLdoc.selectNodes(filter);
    XSLTProc.addParameter("group", xNodes);
    }
    else if (MOZ) {
    xEval = new XPathEvaluator();
    xNodes = xEval.evaluate(filter, XMLdoc, null, 0, null);
    XSLTProc.setParameter(null, "group", xNodes);
    }
    }


    any comments?

    ReplyDelete
  5. I work with large XML files and being able to click within the XML and retrieve its path is a real time saver.

    I tried to access this site a several weeks ago and couldn't locate your server.

    Were you temporarily unavailable?

    ReplyDelete
  6. hello
    You made an excellent tool )
    can i buy your script (xpath_generator)
    how much it'll cost me?

    ReplyDelete
  7. Hello,

    I'd like to post formatted XML and have the tool return unformatted XML.

    Thanks

    ReplyDelete
  8. Hi,
    Kindly tell me the code how can i generate all possible Xpaths of an Xml and store them in Dictionary with unique keys

    ReplyDelete
  9. Hi,
    Can i get the source code for Xpath Generator?

    ReplyDelete