December 1999
Intermediate to advanced
992 pages
22h 3m
English
The Java DSO is a Java applet. As such, it must be embedded into an HTML page using an applet element:
<applet
code="com.ms.xml.dso.XMLDSO.class"
id="xmldso"
width="0"
height="0"
mayscript="true">
<param name="URL" value="cats.xml">
</applet>
The code attribute specifies the package in which the code is implemented. The mayscript="true" attribute permits client-side scripting. The param element specifies the location of the data. The XML DSO retrieves the XML from this location, parses it, and provides the data to bound elements on the page.
Read now
Unlock full access