Why is the "Common DOM API" not included in main JDK1.4 / JAXP1.1 packages?

Hi,
It's good the core XML DOM is implemented in Java, and even better that this is to become integrated into JDK1.4. However, I don't understand why the JDK1.4 / JAXP 1.1 only includes the "org.w3c.dom" package and not the other DOM packages ("org.w3c.dom.events", etc. such as those implemented in Xerces or those that appear in the Common DOM API).
Can anyone explain how to use this functionality (all DOM APIs) using JAXP 1.1 or JDK 1.4 ? Or must I stick to including the Apache implementation?
Some useful references:
http://java.sun.com/j2se/1.4/docs/guide/plugin/dom/index.html
http://xml.apache.org/xerces-j/
Hopefully someone can explain this a bit more to me...
Thanks,
Chris

I am curious for the answer to this as well... I have been using Java SDK 1.3.1 with Apache's xerces 2.0.0-beta4, and am now trying to upgrade to SDK 1.4 with xerces 2.0.0..
Also, what about package org.w3c.dom.ranges? Does anyone know if this an Apache-defined package, or is it a standard w3c one (in which case, why is it not part of the Common DOM API set)?
Thanks for any help!

Similar Messages

  • Why is the new CC Library not included in Indesign ?

    Hello,
    Why is the new CC Library not included in InDesign ?
    It works great between Photoshop and Illustrator but now I really miss this feature in Indesign.

    Don't know why, but CC Library is a totally different thing compared with InDesign's own library format stored in *.indl files. So I suggest, that you'll make a feature request here:
    Adobe - Feature Request/Bug Report Form
    Hope, that it will work again today. Heard, some users had problems with the bug report form yesterday…
    (For the "why": Sometimes the developer teams of the individual CC products do not talk to each other that much, I think.)
    Uwe

  • Why are the Equifax Trusted Roots not included in the latest release?

    The Equifax Trusted Roots that were included in Yosemite 10.10.2 are missing from Yosemite 10.10.3.  These are still valid trusted roots for GeoTrust and need to be included.  Why were they removed?

    I'm afraid that I distracted you with my background mention of hierarcharial keywords; I'm not asking about them.
    I've entered keywords for several years of using Lightroom.  Suddenly, this week, I find that most (yet not all) of them have the attribute of "don't include the keyword in an exported file's metadata."  I never intended to ask for that; I thought all keywords will stay with the file and its offspring, and that's what I wanted.
    So I'm asking:
    1.     What did I do "wrong" to induce Lightroom to give the keywords that attribute? I never intended to ask it to.
    2.     Where does Adobe document how to enter keywords reliably so that they stay with the file on output?  I can't find that Adobe does.
    > Can you be more clear about keywords in square brackets? I know when you export the keywords as a list you can get a normalized data file that uses punctuation and tabs as delimiters...
    I did export the keywords into such a list:  most keywords in the plain-text list have square brackets surrounding them, indicating keywords that will be omitted from metadata of any image that Lightroom exports.
    My concern is not that the brackets are there.  They encode the attribute of "don't include the keyword in an exported file's metadata," and recognizing that attribute concerns me.
    > ...but I've never seen keywords in image files or in the interface rendered so.
    I haven't, either.
    Dick Rawson

  • Why are the original movie soundtrack not included by default when I buy movies from the iTunes Store, Why are the original movie soundtrack not included by default when I buy movies from the iTunes Store

    I assumed that the original soundtrack was part of the movie when I bought a dubbed movie (danish in my case), as is the case with DVD and Blueray movies. Apparently it is not...

    Ha, ha, you are such a tool!
    That profile was written in 2007 and never updated. Unlike you, I don't live on this forum. I have one 5 year old Dell gathering dust, waiting for the trash that has some kids software on it my kids never use.
    Currently I own a 27 inch iMac, and a 21 inch iMac used by my wife. I just sold my MacBook Air, which replaced my MacBook Pro of two years ago. I have an AppleTV v2, and unfortunately gave my AppleTV v1 to a friend before I realized they stripped out the movie purchase feature. We also own an iPad, two iPhones, and 4 iPods, two of which are used as digital music storage for our cars.
    So yes, all of my factual posts concerning Apple's shocking decision to try to hide the fact they removed significant functionality from AppleTV when they revved it, are just driven by the fact that 4 years ago I used almost no apple products. Apparently I harbor a twisted desire to hurt the company that provides me almost all of my technology of choice today, despite being an early software developer for the Mac, helping start two Macinotosh software companies in the 1980s and 1990s, and working at Apple for 2 years in the early 90s.
    The truth is, Apple's products weren't so good 15 years ago so I gradually switched to Windows for professional reasons. About 4 years go I bought an iPhone, and started to wake up to the fact that Apple had done a tremendous job moving the Mac platform to the intel architecture, and was very happy to replace my crappy dells with Apple products.
    But that doesn't mean I wear blinders when their product teams and marketing department makes mistakes, or does something deceptive.

  • Need help in getting common DOM API to work

    Grettings, all -
    I'm up against the wall. I have spend a lot of time trying to get Common DOM API to work to no avial. So far I tried it with Netscape 6.2.3, Mozilla 1.0 and MSIE 6. My problem is that while I get non-null Document, all calls on it return null. Here is the code snippet I have:
    public class Foo extends Applet {
    Applet m_appletThis;
    StringBuffer m_sbuf;
    public void init() {
    m_appletThis = this;
    m_sbuf = new StringBuffer();
    addItem("initializing... ");
    try {
    JSObject jsWin = JSObject.getWindow(this);
    JSObject jsDoc = (JSObject)jsWin.getMember("document");
    String sName = (String)jsDoc.getMember("name");
    Object oLocation = (JSObject)jsDoc.getMember("location");
    addItem("location=" + oLocation);
    String sTitle = (String)jsDoc.getMember("title");
    addItem("title=" + sTitle);
    addItem("initialized! ");
    catch (JSException e) {
    e.printStackTrace();
    public void start() {
    addItem("starting... ");
    DOMService ds = null;
    try {
    ds = DOMService.getService(this);
    String sTitle = (String)ds.invokeAndWait(new DOMAction() {
    public Object run(DOMAccessor da) {
    Document doc = da.getDocument(m_appletThis);
    return doc.getNodeValue();
    addItem(sTitle);
    // let's try again
    Document doc = (Document)ds.invokeAndWait(new DOMAction() {
    public Object run(DOMAccessor da) {
    Document doc;
    NamedNodeMap nnm;
    Node node;
    doc = (Document)da.getDocument(m_appletThis);
    nnm = doc.getAttributes();
    NodeList nl = doc.getChildNodes();
    if (null == nl)
    addItem("no children!");
    else
    for (int i = 0; i < nl.getLength(); i++) {
    node = nl.item(i);
    addItem((null == node) ?
    ("no node" + i) : node.getNodeName());
    if (null == nnm)
    addItem("no attribs!");
    else {
    node = nnm.getNamedItem("location");
    if (null == node)
    addItem("no node!");
    else
    addItem(node.getNodeValue());
    return doc;
    catch (DOMUnsupportedException e1) {
    e1.printStackTrace();
    catch (DOMAccessException e2) {
    e2.printStackTrace();
    addItem("started! ");
    public void stop() {
    addItem("stopping... ");
    public void destroy() {
    addItem("preparing for unloading...");
    void addItem(String newWord) {
    System.out.println(newWord);
    m_sbuf.append(newWord + "\r\n");
    repaint();
    public void paint(Graphics g) {
    Dimension dim = getSize();
    //Draw a Rectangle around the applet's display area.
    g.drawRect(0, 0, dim.width - 1, dim.height - 1);
    //Draw the current string inside the rectangle.
    g.drawString(m_sbuf.toString(), 5, 15);
    This produces the following output:
    initializing...
    location=file:///foo.bar.html
    title=
    initialized!
    starting...
    null
    no children!
    no attribs!
    started!
    As starting/started lines show all of my attempts to get access to browsers DOM fail.
    I will really appreciate any advice you can provide. Thanks in advance.
    - Andrew

    hi,
    i desperately tried similar things and, after studying some forum entries, it seems to me that common dom DOES NOT WORK...
    sorry for us, but bugparade promises to fix that in 1.4.2 (somewhen in 2003 :-( )
    if you need dom-access try jsobject or the ibm directDOM-technology, that seems to work much better..
    greets,
    dirk

  • Why are most of my keywords not included when I export images?

    Why are most of my keywords not included when I export images?
    Since starting with Lightroom 1, I've entered keywords into either of the two fields between "keyword tags" and "keyword suggestions" in the keywording panel.  I was unaware that some keywords are more equal than others, or that Lightroom offered (or has added?) hierarchy support.
    I recently stumbled into the news (to me) that Lightroom tags can be organized into a hierarchy, so I exported my keywords to a text file to examine.  I hadn't unwittingly created any hierarchies, but an astounding fraction of the keywords were within square brackets.  Sure enough, if I export an image, keywords within square brackets are omitted from the output (jpeg) file.  How nice.  Since I began with Lightroom 1, I've added nearly 1600 keywords.. Too bad most of them are coded wrong... so as not to accompany output that I create.
    1.     What was I supposed to do, as a photographer beginning to use Lightroom, to enter keywords simply but reliably:  what I type is what I get? I'd expected that's what the "just type here" interface would provide.
    I especially dislike obtaining erratic results:  most keywords are in square brackets, but a few are not.  Of course, when I use a simplified interface, I should expect not to have access to some of the options or features.  However, I shouldn't inadvertently trigger undocumented behavior.
    2.     Does the Adobe reference help system say how to enter keywords simply and reliably, in its documentation of the keywording panel? I don't find my answer under the Keywords topic, within Home / Using Photoshop Lightroom 3 / Organizing photos in the catalog.
    (I NOW realize that the instructions for the "Create/Edit keyword tags" dialog mention exporting. However, that's not the method I was using.)
    Dick Rawson

    I'm afraid that I distracted you with my background mention of hierarcharial keywords; I'm not asking about them.
    I've entered keywords for several years of using Lightroom.  Suddenly, this week, I find that most (yet not all) of them have the attribute of "don't include the keyword in an exported file's metadata."  I never intended to ask for that; I thought all keywords will stay with the file and its offspring, and that's what I wanted.
    So I'm asking:
    1.     What did I do "wrong" to induce Lightroom to give the keywords that attribute? I never intended to ask it to.
    2.     Where does Adobe document how to enter keywords reliably so that they stay with the file on output?  I can't find that Adobe does.
    > Can you be more clear about keywords in square brackets? I know when you export the keywords as a list you can get a normalized data file that uses punctuation and tabs as delimiters...
    I did export the keywords into such a list:  most keywords in the plain-text list have square brackets surrounding them, indicating keywords that will be omitted from metadata of any image that Lightroom exports.
    My concern is not that the brackets are there.  They encode the attribute of "don't include the keyword in an exported file's metadata," and recognizing that attribute concerns me.
    > ...but I've never seen keywords in image files or in the interface rendered so.
    I haven't, either.
    Dick Rawson

  • Why is the original YouTube app not in update 6.1.3?

    I recently updated and there is no YouTube, can someone please tell me why this is or how to get it back? Much appreciated.

    The YouTube app is not included with iOS 6. Google offers their own app for free via the iTunes Store, now in an iPad version. There are also third-party alternatives, one of which may suit you better. Jasmine is one that a number of people are recommending. You can also use the mobile version of the YouTube site
    http://m.youtube.com
    which you can save to your home screens as an icon.
    Regards.
    Forum Tip: Since you're new here, you've probably not discovered the Search feature available on every Communities page, but next time, it might save you time (and everyone else from having to answer the same question multiple times) if you search a couple of ways for a topic, both in the relevant forums and in the Apple Knowledge Base, before you post a question.

  • The canadien calendar does not include easter holidays and Québec St-Jean-Baptiste

    Why the canadien calendar does not include easter holidays and Québec St-Jean-Baptiste (june 24th) ?
    webcal://ical.mac.com/ical/Canadian32Holidays.ics
    Can Apple add them ?
    webcal://ical.mac.com/ical/Canadian32Holidays.icswebcal://ical.mac.com/ical/Canadian32Holidays.icswebcal://ical.mac.com/ical/Canadian32Holidays.ics

    Hello, David. I apologize for trying to reach you on this particular forum. You posted something about a Mail script for rebuilding all mailboxes quite some time ago (that message thread is now archived, so I couldn't respond in that more appropriate forum). Did you ever get a working script, and would you be so kind as to share it? You can reply to [email protected], to eliminate further out-of-context posts to this forum. Thanks!
    -Dr. G

  • Why does the new operating system not delete the moved files from their original location - it seems like an enormous waste of space, time and effort to clean up every file once you've moved it

    Why does the new operating system not delete the moved files from their original locations - it seems like an enormous waste of space, time and effort to clean up every file once you've moved it - also, when transferring large amounts of files it becomes a very large problem remembering which files were transferred and which not.

    You're going to need to be more specific, as I'm not quite sure I understand what you're talking about.
    If you're referring to copying from an external hard drive or flash drive, and you want to actually move files rather than copy them, you can hold down the option key to force it to do a "move" rather than a "copy." This is not new behavior, though... the Mac OS has worked this way as long as I can recall (and I've been using it since 1984).
    If you're having a problem with trying to move files from one place to another on a single drive causing them to be copied instead, that is likely because of some permissions issue preventing you from actually being able to move them.

  • Why in the layer options does not appear to me "video layers" why? help

    why in the layer options does not appear to me
    "video layers" why? help
    I need to encourage and not because my computer does not appear to me and others computers that has the same photoshop cc if that option appears. It would be helpful to know what thanks

    99.9% of the time, the cause of this issue is the fact the phone was jailbroken/hacked to unlock it for use on networks other than the network the phone was originally locked to. Apple maintains a database of officially unlocked iPhones, and when Apple's servers detect phones such as yours, activation stops & you get the message you got.
    So, either get a sim card from the carrier your phone was originally locked to, or get it officially unlocked, if you want to activate it. Because it appears that it was not officially unlocked

  • A JE created from the AP Invoice does not include the project # on all trx

    A JE created from the AP Invoice does not
    include the project # for the amounts entered in the freight box. To
    duplicate, do the following:
    1. Open an AP Invoice
    2. Enter BP Code
    3. Select Service type
    4. Enter a Project Code in drop down box on Accounting tab
    5. Enter a line in the Contents; specify GL Account, amount and Tax
    Code Open Freight box
    6. Enter an amount in one of the lines
    7. Click ADD
    8. Go back to the invoice and go to the Accounting tab Click on the GL
    journal note and you can see that the line corresponding to the
    contents line has a project, but the line corresponding to the Freight
    box item does not.
    My customer users these projects when printing GL agings and the
    information is very important. Shouldn't this information be carried
    forward on all transactions on the Journal entry? Is there a way to get this information to post?

    Hi Pat,
    the project code (PC) on the marketing document may only be applied to the business partner (BP), hence the only row in the associated journal entry (JE) with this project code is that of the BP.
    You can link project codes to specific accounts (CoA -> select account -> account details -> project code) & this project code will then be assigned every time the account is found in a JE.
    If you require the project code to be applied to the freight, you may assign this project code to the account you have defined for this freight. The drawback is naturally that the project code will then  be pulled every time this freight is used, regardless of whether or not the PC is associated with the BP or not.
    It is possible to manually assign project codes to every row in a journal entry, hence this should also be possible with SDK. You might explore the possibility whether it might be possible to automatically assign the BP PC to all rows in the JE using a script.
    All the best,
    Kerstin

  • How can I filter to find photos NOT pinned to a map? I have 28,000 phots with many mapped and many not. The Search function does not include GPS data. I haven't found  way to search metadata inside or out of Elements.

    How can I filter to find photos NOT pinned to a map? I have 28,000 phots with many mapped and many not. The Search function does not include GPS data. I haven't found  way to search metadata inside or out of Elements.

    How can I filter to find photos NOT pinned to a map? I have 28,000 phots with many mapped and many not. The Search function does not include GPS data. I haven't found  way to search metadata inside or out of Elements.

  • Why is the Fios mobile app not available in the App Store?

    Why is the Fios mobile app not available in the App Store?

    Sorry to say but they have. And even advertised it on their home page as recently as today. You can view about 70 different channels on your iPhone or iPad. Anyone else out there who knows the answer?

  • Why is the new Safari (7) not letting sound be heard from Soundcloud widgets (players) on my website when the earlier Safari worked fine, and other browsers also work fine?

    Why is the new Safari (7) not letting sound be heard from Soundcloud widgets (players) on my website when the earlier Safari worked fine, and other browsers also work fine?

    Might be an incompatible extension or plugin ...
    Try troubleshooting Safari extensions and third party plugins.
    From the Safari menu bar click Safari > Preferences then select the Extensions tab. Turn that OFF, quit and relaunch Safari to test. If that helped, turn one extension on then quit and relaunch Safari to test until you find the incompatible extension then click uninstall.
    If it's not an extensions issue, try troubleshooting third party plug-ins.
    Back to Safari > Preferences. This time select the Security tab. Deselect:  Allow all other plug-ins. Quit and relaunch Safari to test.
    If that made a difference, instructions for troubleshooting plugins here.

  • Why is the iPages 5.0 (not beta on iCloud) getting such bad reviews? I was interested in trying it.

    Why is the iPages 5.0 (not beta on iCloud) currently getting such bad reviews? I was interested in trying it on a MacBook Air or Pro.

    mingsai
    We would be grateful if you could point out any errors in the list, but we do check.
    The list does not claim features moved to the System are "missing". There are separate lists of added and changed features.
    There are many people who claim to know what they are talking about but on closer examination it becomes clear they really do not know much about iWork, nor about the features they claim to have "found" in Pages 5.
    I would be hesitant to claim that you were part of the beta testing of Pages 5 for 2 reasons.
    1. Apple does ask you to sign a non-disclosure agreement
    2. You then are part of the problem
    Maybe, now you have disclosed that you were testing, you can explain how on Earth something so bad  was released on an unsuspecting public, with no warning of what Apple had done and that it would alter/damage users' work.
    Peter

Maybe you are looking for