Web Services FAQ Section Index
What Is SAAJ?
SAAJ allows Java developers to make Java API calls that generate SOAP-compliant XML messages.
What Features Are in JAX-WS 2.0?
JAX-WS 2.0 -- Java API for XML Web Services -- offers a simplified Java architecture for developing Web services.
What is the schemagen tool?
The schemagen tool is the schema generator for Java Architecture for XML Binding (JAXB). It generates a schema file for each namespace referenced in your Java class files.
Who is GregorSamsa?
Gregor Samsa is the main character from The Metamorphosis by Franz Kafka. However, in the Java world, it is the Translet class for Apache Xalan, the XSLT processor.
How can I read a vCard attachment from my Java program?
The vCard4J SourceForge project (http://sourceforge.net/projects/vcard4j) offers just what you are looking for.
What is StAX?
StAX is the Streaming API for XML defined by JSR 173.
How to represent an element with either decimal or empty contents in schema? Can enumeration be empty too?
Q. How to represent an element with either decimal or empty contents in schema? Can enumeration be empty too?
how to get document headers using XSLT.
how to get document headers using XSLT
<?xml version="1.0" encoding="UTF-8"?>
<main title="Main Heading">
<section title="Heading1">
<section title="Heading1.1" >
&l...more
Inserting elements when surrounding elements are optional
Inserting elements when surrounding elements are optional
[NOTE: I am a XSL/XSLT newbie.]
I am trying to insert some elements into a web.xml file (the Tomcat configuration file) using XSLT. I want...more
How to ask an XSLT question?
Put your input XML
Put your desired html output
Put your XSLT which does not work as desired
In this way, others might come out a suggestion or even a solution.
I have a xml which has nodes like <abc/>. My scanner fails to recognise them. So I need to transform the nodes <abc/> to <abc></abc> before calling the scanner.
converting <abc/> to <abc></abc>
I have a xml which has nodes like <abc/>. My scanner fails to recognise them. So I need to transform the nodes <abc/> to <abc>&l...more
How can I display an XML file into tree structure format using jsp on the screen?
How can I display tree on the screen?
How can I display an XML file into tree structure format using jsp on the screen?
XML problem with '&'. I am having a problem with XML. Whenever one of my xml files had some data in it that contains an '&', for example <tag> keyboard & mouse </tag> the xgen code throws an exceptions stating that the reference cannot be found. When it hits the '&' it thinks that the value 'mouse' is a reference.
XML problem with '&'
I am having a problem with XML. Whenever one of my xml files had some data in it that contains an '&', for example <tag> keyboard & mouse </tag> the xgen code throw...more
How to dynamically generate HTML table by using XSLT?
How to dynamically generate HTML table by using XSLT?
Hi everyone.
I have this xml
<items>
<item desc="BA"/>
<item desc="BE"/>
<item desc="BI"/>
<item desc="BO"/>
<...more
This question is very similar to the one on adding existing JDOM/DOM elements to a document object. I just want to know if it is possible to combine two existing XML documents together into a new JDOM object (i.e. a new XML file).
Merging two XML documents
This question is very similar to the one on adding existing JDOM/DOM elements to a document object. I just want to know if it is possible to combine two existing XML docu...more