This week's book giveaway is in the Agile and Other Processes forum.
We're giving away four copies of DevSecOps Adventures: A Game-Changing Approach with Chocolate, LEGO, and Coaching Games and have Dana Pylayeva on-line!
See this thread for details.

talashme

Greenhorn
+ Follow
since Sep 19, 2000
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by talashme

The Java Virtual Machine befor jdk 1.2.* is really slow for many real time tasks I found this while working on a Stock Exchange project some months ago, but sun is working hardly in resolving this performance issue. I appreciate Java HotSpot 2.0 that comes with jdk 1.3 really improves performance by 50 % in many cases thats fine but still it need to be better. or we can use the Java native code compiler like (Jove, BulletTrain, JET, etc.)
But I found that mannual optimization can really helps in improving the Java code performance.
My Question: Is there any one who know a good java bencmark
utility ?
23 years ago
I am new to XML, (just have some concepts)
here is something from me (what I know of XML)
Advantages of XML:
Extensibility and Modularity.
Interoperability and Accessibility.
Easy Speration of Data and Design.
something more what I know,
- XML is a markup Language.
- XSL is like Style sheet for it. (just like CSS for HTML, we can also use CSS with XML).
- SAX is some sort XML Parser
- DOM is the Document Object Model for Markup Languages. (a little confusion here)
Am I right ???
Can anybody tell me the relationship b/w XML, XSL, DOM and SAX. in a little detail.
------------------