473,781 Members | 2,732 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

coding XML in Java and VB

Can any one please let me know where to start from and code xml in
java and vb? please suggest me some good sites and books to start
with(from scratch to advanced). I would like to get the exact essence
of XML. It would be greatful if anyone can respond back positively
with some useful stuff. Thank You.
Jul 20 '05 #1
4 1741


Venkata Ramana Kala wrote:
Can any one please let me know where to start from and code xml in
java and vb? please suggest me some good sites and books to start
with(from scratch to advanced). I would like to get the exact essence
of XML. It would be greatful if anyone can respond back positively
with some useful stuff.


VB can and should use MSXML, Microsoft's COM based XML software package,
the documentation of MSXML is online here:
http://msdn.microsoft.com/library/de...l/xmmscXML.asp
Windows XP with IE 6 comes with MSXML version 3 but there is also MSXML
version 4 which can be downloaded from http://msdn.microsoft.com/ and
provides more features (W3C XML schema support) and better performance
(XSLT for instance).
As for Java, the Sun Java SDK 1.4 has built-in support for SAX parsing
and for the W3C DOM Level 2 Core, for XSLT 1.0, check your SDK
documentation.

And http://xml.apache.org/ has a lot to offer with Xerces J (W3C XML
schema support) and Xalan J.
--

Martin Honnen
http://JavaScript.FAQTs.com/

Jul 20 '05 #2
In article <41********@ola f.komtel.net>,
Martin Honnen <ma*******@yaho o.de> wrote:
:Venkata Ramana Kala wrote:
:
:> Can any one please let me know where to start from and code xml in
:> java and vb? please suggest me some good sites and books to start
:> with(from scratch to advanced). I would like to get the exact essence
:> of XML. It would be greatful if anyone can respond back positively
:> with some useful stuff.
:
:VB can and should use MSXML, Microsoft's COM based XML software package,
:the documentation of MSXML is online here:
:http://msdn.microsoft.com/library/de.../xmlsdk/html/x
:mmscXML.asp
:Windows XP with IE 6 comes with MSXML version 3 but there is also MSXML
:version 4 which can be downloaded from http://msdn.microsoft.com/ and
:provides more features (W3C XML schema support) and better performance
:(XSLT for instance).
:
:
:As for Java, the Sun Java SDK 1.4 has built-in support for SAX parsing
:and for the W3C DOM Level 2 Core, for XSLT 1.0, check your SDK
:documentation .
:
:And http://xml.apache.org/ has a lot to offer with Xerces J (W3C XML
:schema support) and Xalan J.


Actually, the XML support built into Java 2 began back with 1.3, if
memory serves. But whichever version, it *is* the Xerces-J and Xalan-J
packages.

= Steve =
--
Steve W. Jackson
Montgomery, Alabama
Jul 20 '05 #3


Steve W. Jackson wrote:
In article <41********@ola f.komtel.net>,
Martin Honnen <ma*******@yaho o.de> wrote:

:As for Java, the Sun Java SDK 1.4 has built-in support for SAX parsing
:and for the W3C DOM Level 2 Core, for XSLT 1.0, check your SDK
:documentatio n.
:
:And http://xml.apache.org/ has a lot to offer with Xerces J (W3C XML
:schema support) and Xalan J.

Actually, the XML support built into Java 2 began back with 1.3, if
memory serves. But whichever version, it *is* the Xerces-J and Xalan-J
packages.


No, the XML parser in the Sun JDK 1.4 is called Crimson not Xerces.
And in 1.3 as documented in
http://java.sun.com/j2se/1.3/docs/api/index.html
I don't see any XML packages/classes (e.g. the javax.xml.* stuff that is
in 1.4).
You are right that some Xalan-J version is used in 1.4 to provide XSLT
transformation support.
--

Martin Honnen
http://JavaScript.FAQTs.com/

Jul 20 '05 #4
In article <41********@ola f.komtel.net>,
Martin Honnen <ma*******@yaho o.de> wrote:
:Steve W. Jackson wrote:
:
:> In article <41********@ola f.komtel.net>,
:> Martin Honnen <ma*******@yaho o.de> wrote:
:>
:>
:
:>>:As for Java, the Sun Java SDK 1.4 has built-in support for SAX parsing
:>>:and for the W3C DOM Level 2 Core, for XSLT 1.0, check your SDK
:>>:documentat ion.
:>>:
:>>:And http://xml.apache.org/ has a lot to offer with Xerces J (W3C XML
:>>:schema support) and Xalan J.
:>
:>
:> Actually, the XML support built into Java 2 began back with 1.3, if
:> memory serves. But whichever version, it *is* the Xerces-J and Xalan-J
:> packages.
:
:No, the XML parser in the Sun JDK 1.4 is called Crimson not Xerces.
:And in 1.3 as documented in
: http://java.sun.com/j2se/1.3/docs/api/index.html
:I don't see any XML packages/classes (e.g. the javax.xml.* stuff that is
:in 1.4).
:You are right that some Xalan-J version is used in 1.4 to provide XSLT
:transformatio n support.


I could've sworn XML showed up back when we used 1.3...guess the brain
is failing. I would've also sworn that i saw evidence of Xerces
someplace there...perhaps it's merely confusion with something else I've
been using for some time. So I suppose I stand corrected.

= Steve =
--
Steve W. Jackson
Montgomery, Alabama
Jul 20 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
3854
by: jarit | last post by:
Hi, Found these coding guidelines for C#, HTML, Javascript, Java, HTML, PL/SQL, T-SQL, VB and VBScript. Well written and free to download. www.demachina.com/products/swat Jeroen
7
2568
by: Ralph Lund | last post by:
Hi. I am starting a new project with C#. I am searching for "good" coding conventions. I know that there are some coding conventions from microsoft, (but they are very extensive and not clear). In the example programs of Microsoft they use different coding conventions: private members sometimes with underscore, sometimes without; when calling a method sometimes: method(param1, param2) or method ( param1, param2) (with or without...
16
342
by: TT (Tom Tempelaere) | last post by:
Hi Topic 3.21 in <http://www.idesign.net/idesign/download/IDesign%20CSharp%20Coding%20Standard.zip> claims the following "Release build should contain debug symbols I wonder why. Doesn't this make the executable larger, and slower Thanks Tom.
16
1465
by: Alfred Taylor | last post by:
I've been flipping through various coding standards documents for C#/.NET and all of them say to use: if ( boolVar ) {...} instead of if ( boolVar == true ) {...} For the life of my I can't figure out why. If anything, I would guess the opposite would be better to use since the ! operator is so hard to read. Upon quick glance,
7
1534
by: jarit | last post by:
Hi, Found these coding guidelines for C#, HTML, Javascript, Java, HTML, PL/SQL, T-SQL, VB and VBScript. Well written and free to download. www.demachina.com/products/swat Jeroen
60
5063
by: Dave | last post by:
I'm never quite sure whether to use "this." or not when referring to fields or properties in the same class. It obviously works just fine without it but sometimes I wonder if using this. consistently may make the code easier to understand for someone else, etc. Using "this." makes it immediately clear, for example, that the variable being referred to is a member of the same class and is not declared in the method as a local variable. ...
17
1671
by: M.Siler | last post by:
I'm trying to get my head around a conversation I had with a developer the other day. We were talking about Codesmith vs. Hand coding. He's position is Codesmith is for junior to mid level developer who perfer "wizards" to write code for them. That these types of code generators produce substandard developers who don't have real skills. I don't have a position one way or the other until I have a bit more information, but if I was to take...
4
6698
by: AzizMandar | last post by:
C++ Event Coding Questions I have done some simple programs in C++ and read a lot of good C++ books (Including The C++ Programing Language, and C++ Primer) I am trying to understand and implement an Event based program and Message system. I have a very basic event engine that I'm feeling works a bit backwards. I'm looking for documents, source code, and books that may help me better understand how to implement this type of code. I am...
2
1360
by: bsgeethaece | last post by:
Hai... now I am doing Library Management System Project in Java. ..I wants to create a Dynamic Table in one interface.... if u people know plz forward the coding 2 me....thank you
1
994
by: maria80e | last post by:
Hi, How to insert the java script code in VB coding.. Regards, Maria Prabudass E
0
9474
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10308
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10143
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9939
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8964
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7486
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5375
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4040
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2870
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.