XML Section Index | Page 4
Can I used a arbitrary defined DTD to generate all possible XML templates?
The answer is NO unless it is an extreme trivial case. See the really trivial DTD bellow. We already have 4 possible "templates". Here we assume templates is the right word here. I use one line f...more
Performing conditional checks when doing XSLT. Q. How to add element hasTagA to the result XML at the condition one or more tagA present in the source XML?
In XSLT, we has xsl:if xsl:choose xsl:when xsl:otherwise to perform conditional check. However, we can also use template with match attribute to perform conditional check. With the help of xpath p...more
Populating documents with xml. I want convert on a group of legal documents (plain text) into xml documents that can be populated with with user information (names, addresses, etc.). From what i have read, XML Schema is the way to go. any suggestions?
Populating documents with xml
I want convert on a group of legal documents (plain text) into xml documents that can be populated with with user information (names, addresses, etc.). From what i ha...more
How do I produce documents with HTML embedded in XML
How do I produce documents with HTML embedded in XML
I have XML elements that have HTML tags embedded inside.
I need to produce documents that carry those tags from the XML to the output document....more
JAXB, should one start using the API in a live project considering the fact that it is still in its beta?
JAXB, should one start using the API in a live project considering the fact that it is still in its beta?
JAXB, should one start using the API in a live project considering the fact that it is stil...more
What is the best way to generate a universally unique object ID? Do I need to use an external resource like a file or database, or can I do it all in memory?
[I need to generate unique id's that will be used for node 'ID' attribute values within XML documents. This id must be unique system-wide. The generator must be available to a number of servlets t...more
I want to generate an XML using JAXP parsers and i want to include a DOCTYPE tag that references a dtd. how can i do that? can anyone please help me out?
Dynamic DOCTYPE generation
I want to generate an XML using JAXP parsers and i want to include a DOCTYPE tag that references a dtd. how can i do that? can anyone please help me out?
Are there any web sites that will validate the well-formedness of an XML document?
Are there any web sites that will validate the well-formedness of an XML document?
How can I contribute to the Xbeans project?
There are basically three ways: you can implement a useful Xbean and contribute it to the project, you can improve an existing Xbean and contribute the changes and you can provide us with feedback...more
How can I create a distributed application out of Xbeans?
The sender and receiver Xbeans support the passing of XML documents across process boundaries. There are currently three implementations of sender and receiver using different approaches for the t...more
How can I create an application out of Xbeans?
Source Xbeans have a DOMListener property, as specified in the DOMSource interface. Thus connecting Xbeans simply means setting the property to be the next Xbean. Source Xbeans invoke documentRead...more
What are Xbeans? - 12.14.01
What are Xbeans?
What else do I need to use Xbeans?
You need an implementation of the DOM and XSLT. Most Xbeans are users of the DOM interface. They do not depend on a particular DOM implementation. The serializer Xbean currently depends on an exte...more
What Xbeans are currently available for download?
The second release is now available at xbeans.org. It includes the following
Xbeans:
translator
viewer
logger
serializer
parser
synchronizer
HTTP sender-receiver
RMI sender-r...more
Why do most Xbeans only support a single listener?
The DOMSource interfaces defines two operations, getDOMListener() and setDOMListener(DOMListener next), for getting and setting the next Xbean, i.e. the Xbean that will receive the output of the X...more