1. Can JAXB parse large XML files in chunks stackoverflow.comI need to parse potentially large XML files, of which the schema is already provided to me in several XSD files, so XML binding is highly favored. I'd like to know ... |
2. Add XML comments into marshalled file stackoverflow.comI'm marshalling object into xml file. How to add comments into that file? |
3. How to handle different versions of xsd files in one java application? stackoverflow.comThe FactsIn my java application I have to handle XML files with different schema versions (xsd files) simultaneously. The content of the XML files changed only a little between the different ... |
4. How to write an external binding file for xjc? stackoverflow.comThe documentation of JAXB xjc says: -b Specify one or more external binding files to process. (Each binding file must have it's ... |
5. validate xml file against xml schema stackoverflow.comthis is about validating a XML file (eg: marshalledfile.xml) against a XML schema (eg: schemafile.xsd). we are using jaxb to marshall java objects into into a xml file.
|
6. Generating java classes from xsd files stackoverflow.comI have got a xsd files from some thirdparty which used to be with "include" and not "import". I am using these xsd file to generate java files, using jaxb. The initial ... |
7. Can you add comments to a "jaxb.index" file? stackoverflow.comHas anybody found any documentation on comments in jaxb.index files? I've searched the web, but couldn't find any information. Using "# comment" style lines does work, but is this actually specified anywhere? Thanks ... |
8. JAXB in java 6 not prefixing the correct namespace prefix in marshalled XML file stackoverflow.comI have a schema with following attributes in schema element:
I could compile it and get java classes. Using these classes, I filled in data in an ... |
9. Synchronisation method for xml file stackoverflow.comI'm looking for a synchronisation method to ensure my back-end data (xml file) is kept intact during multiple client access. I'm using jaxb to read and write to and from the file. ... |
10. Using JAXB to cross reference XmlIDs from two XML files stackoverflow.comI'm trying to marshal/unmarshal from two different XML files to POJOS. The first XML file looks like this:
|
11. Inserting XML block into existing XML file in Java stackoverflow.comI'm a bit of a newbie to XML. I have a class that creates an xml file (using Jaxb). So I have an existing xml file which contains the following.
|
12. Java JAXB - Writing XML files with restart logic stackoverflow.comI'm creating a very large XML file (700mb +) that process large amounts of data via batch. The program serves as an interface between a extremely large sybase database and an ... |
13. Generating java binding classes using XML file without XSD schema file? Using any Castor or JAXB framework stackoverflow.comI have a requirement to create java model classes (binding classes) from XML files. Unfortunately I don't have XSD schema. There are many already existing XML's. Strangely , Castor or JAXB ... |
14. Java: Parsing xml file with DOM API stackoverflow.comI am trying to parse an XML file with 1000 elements using DOM API in Java. It takes 30 seconds to process the XML file. 1 element, for eg store is the ... |
15. How to add new entry into existing XML file (except DOM) stackoverflow.comThere is an existing
|
16. what exactly happens when marshalling the xml file stackoverflow.comSuppose i have a xml file which has several nodes & children. I am using jaxb (unmarshalling & marshalling) to update the xml file when requires but wanted to know what ... |
17. jaxb problem while marshalling a list object to a xml file coderanch.com |