Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Eclipse Platform » Apache Xerces is missing from Eclipse 3.0
Apache Xerces is missing from Eclipse 3.0 [message #264486] Thu, 29 July 2004 17:37 Go to next message
Eclipse UserFriend
Originally posted by: hussains.pendylum.com

I have just installed Eclipes 3.0 and find out that Apache Xerces is
missing. Is there any reason why Eclipse guys remove it from this release?
How can I now use those APIs?

Thanks
Re: Apache Xerces is missing from Eclipse 3.0 [message #264489 is a reply to message #264486] Thu, 29 July 2004 17:53 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: nospam.nospam.org

http://www.eclipseplugincentral.com/PNphpBB2+file-viewtopic- t-295-sid-615d1fa44bf638439afa90a8ff60127c.html

If you use JRE 1.4.* the API are in it
"Rizwan" <hussains@pendylum.com> wrote in message
news:cebch9$usj$1@eclipse.org...
> I have just installed Eclipes 3.0 and find out that Apache Xerces is
> missing. Is there any reason why Eclipse guys remove it from this release?
> How can I now use those APIs?
>
> Thanks
>
>
Re: Apache Xerces is missing from Eclipse 3.0 [message #264520 is a reply to message #264489] Thu, 29 July 2004 20:14 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: hussains.pendylum.com

ok I am using JDK 1.4.2 and I have this statement in my class
DOMParser parser = new DOMParser();

Eclipse 3.0 is giving me this error message : "DOMParser cannot be resolved
or is not a type"

The Eclipse's internal help is not able to resolve it. Is there anything I
am missing?

Thanks


"Alex" <nospam@nospam.org> wrote in message news:cebd73$a7$1@eclipse.org...
>
http://www.eclipseplugincentral.com/PNphpBB2+file-viewtopic- t-295-sid-615d1fa44bf638439afa90a8ff60127c.html
>
> If you use JRE 1.4.* the API are in it
> "Rizwan" <hussains@pendylum.com> wrote in message
> news:cebch9$usj$1@eclipse.org...
> > I have just installed Eclipes 3.0 and find out that Apache Xerces is
> > missing. Is there any reason why Eclipse guys remove it from this
release?
> > How can I now use those APIs?
> >
> > Thanks
> >
> >
>
>
Re: Apache Xerces is missing from Eclipse 3.0 [message #264695 is a reply to message #264520] Fri, 30 July 2004 14:16 Go to previous messageGo to next message
Rob Dingwell is currently offline Rob DingwellFriend
Messages: 24
Registered: July 2009
Junior Member
The parser included in 1.4 is crimson, not xerces, so it will not be
found without adding it to your classpath.

Do you have a particular need to use xerces as opposed to using the
javax xml apis for parsing?

Rob

Rizwan wrote:
> ok I am using JDK 1.4.2 and I have this statement in my class
> DOMParser parser = new DOMParser();
>
> Eclipse 3.0 is giving me this error message : "DOMParser cannot be resolved
> or is not a type"
>
> The Eclipse's internal help is not able to resolve it. Is there anything I
> am missing?
>
> Thanks
>
>
> "Alex" <nospam@nospam.org> wrote in message news:cebd73$a7$1@eclipse.org...
>
> http://www.eclipseplugincentral.com/PNphpBB2+file-viewtopic- t-295-sid-615d1fa44bf638439afa90a8ff60127c.html
>
>>If you use JRE 1.4.* the API are in it
>>"Rizwan" <hussains@pendylum.com> wrote in message
>>news:cebch9$usj$1@eclipse.org...
>>
>>>I have just installed Eclipes 3.0 and find out that Apache Xerces is
>>>missing. Is there any reason why Eclipse guys remove it from this
>
> release?
>
>>>How can I now use those APIs?
>>>
>>>Thanks
>>>
>>>
>>
>>
>
>
Re: Apache Xerces is missing from Eclipse 3.0 [message #264707 is a reply to message #264695] Fri, 30 July 2004 14:36 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: hussains.pendylum.com

Well the code for XML we have, was written using Xerces and thats why I was
asking. Is not Xerces the best XML APIs out there or is Crimson better? If
Sun is supporting Crimson then probably its better that I start using it
too. What do you think?

Thanks

"rob dingwell" <bobd@mitre.org> wrote in message
news:410A5849.6020605@mitre.org...
> The parser included in 1.4 is crimson, not xerces, so it will not be
> found without adding it to your classpath.
>
> Do you have a particular need to use xerces as opposed to using the
> javax xml apis for parsing?
>
> Rob
>
> Rizwan wrote:
> > ok I am using JDK 1.4.2 and I have this statement in my class
> > DOMParser parser = new DOMParser();
> >
> > Eclipse 3.0 is giving me this error message : "DOMParser cannot be
resolved
> > or is not a type"
> >
> > The Eclipse's internal help is not able to resolve it. Is there anything
I
> > am missing?
> >
> > Thanks
> >
> >
> > "Alex" <nospam@nospam.org> wrote in message
news:cebd73$a7$1@eclipse.org...
> >
> >
http://www.eclipseplugincentral.com/PNphpBB2+file-viewtopic- t-295-sid-615d1fa44bf638439afa90a8ff60127c.html
> >
> >>If you use JRE 1.4.* the API are in it
> >>"Rizwan" <hussains@pendylum.com> wrote in message
> >>news:cebch9$usj$1@eclipse.org...
> >>
> >>>I have just installed Eclipes 3.0 and find out that Apache Xerces is
> >>>missing. Is there any reason why Eclipse guys remove it from this
> >
> > release?
> >
> >>>How can I now use those APIs?
> >>>
> >>>Thanks
> >>>
> >>>
> >>
> >>
> >
> >
>
Re: Apache Xerces is missing from Eclipse 3.0 [message #264722 is a reply to message #264707] Fri, 30 July 2004 15:04 Go to previous message
Rob Dingwell is currently offline Rob DingwellFriend
Messages: 24
Registered: July 2009
Junior Member
Unless there is a need to utilize functionality of a specific xml api I
would use the javax.xml package, as it allows me to swap implementations
if I so wish.

If you already have code dependent on xerces, just add the xerces libs
to your project.

Rob


Rizwan wrote:
> Well the code for XML we have, was written using Xerces and thats why I was
> asking. Is not Xerces the best XML APIs out there or is Crimson better? If
> Sun is supporting Crimson then probably its better that I start using it
> too. What do you think?
>
> Thanks
>
> "rob dingwell" <bobd@mitre.org> wrote in message
> news:410A5849.6020605@mitre.org...
>
>>The parser included in 1.4 is crimson, not xerces, so it will not be
>>found without adding it to your classpath.
>>
>>Do you have a particular need to use xerces as opposed to using the
>>javax xml apis for parsing?
>>
>>Rob
>>
>>Rizwan wrote:
>>
>>>ok I am using JDK 1.4.2 and I have this statement in my class
>>>DOMParser parser = new DOMParser();
>>>
>>>Eclipse 3.0 is giving me this error message : "DOMParser cannot be
>
> resolved
>
>>>or is not a type"
>>>
>>>The Eclipse's internal help is not able to resolve it. Is there anything
>
> I
>
>>>am missing?
>>>
>>>Thanks
>>>
>>>
>>>"Alex" <nospam@nospam.org> wrote in message
>
> news:cebd73$a7$1@eclipse.org...
>
>>>
> http://www.eclipseplugincentral.com/PNphpBB2+file-viewtopic- t-295-sid-615d1fa44bf638439afa90a8ff60127c.html
>
>>>>If you use JRE 1.4.* the API are in it
>>>>"Rizwan" <hussains@pendylum.com> wrote in message
>>>>news:cebch9$usj$1@eclipse.org...
>>>>
>>>>
>>>>>I have just installed Eclipes 3.0 and find out that Apache Xerces is
>>>>>missing. Is there any reason why Eclipse guys remove it from this
>>>
>>>release?
>>>
>>>
>>>>>How can I now use those APIs?
>>>>>
>>>>>Thanks
>>>>>
>>>>>
>>>>
>>>>
>>>
>
>
Previous Topic:How do I override eclipse's copy action?
Next Topic:Properties Dialogs
Goto Forum:
  


Current Time: Thu Apr 25 17:14:47 GMT 2024

Powered by FUDForum. Page generated in 0.04151 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top