Tagged Questions
Castor is an open source data binding framework.
13
votes
12answers
2k views
Java XML Binding
What are you using for binding XML to Java? JAXB, Castor, and XMLBeans are some of the available choices. The comparisons that I've seen are all three or four years old. I'm open to other suggestions. ...
6
votes
4answers
1k views
Sorting an XML in Java
Hello I have an XML similiar to below, which needed to be sorted using the date field.
<root>
<Node1>
<date></date>
</Node1>
<Node1>
...
4
votes
2answers
3k views
What is the difference between Castor XML binding and JAXB binding
What is the difference between Castor XML and JAXB binding since both are binding java object to XML and vice versa.
Updated :
As using Castor I can do this Assume packageA.ClassA and ...
3
votes
1answer
198 views
Castor custom collection field handler
I'd like to unmarshal the following xml to a MultiKeyMap:
<map>
<entry key1="foo" key2="foo">
<value property="val"/>
</entry>
<entry key1="bar" ...
2
votes
1answer
122 views
Converting xml attribute double quotes to single quotes (utility needed, pref java)
I have a seriously annoying problem. My company uses castor to marshall and unmarshall xml. I'm working on integrating with another company and it looks like their xml parser requires attributes to be ...
2
votes
3answers
198 views
Trying to serialize an object compactly using Castor
I'm using Castor to write out a map of user ID's to time intervals. I'm using it to save and resume progress in a lengthy task, and I'm trying to make the XML as compact as possible. My map is from ...
2
votes
2answers
1k views
Can Hibernate default a Null String to Empty String
In our application we are pulling data from a DB2 mainframe database. If the database has "low values" in a field, hibernate sends a "null" value in the object. This occurs even if the column is ...
2
votes
2answers
958 views
Castor: how to map a simple list of strings?
I have the following field in my class:
private List<String> messages;
Here's the mapping I have:
<field name="messages" collection="arraylist" type="string" container="false>
...
2
votes
4answers
814 views
XML Parsing / Dom Manipulation in Java
I'm trying to figure out how best to translate this:
<Source><properties>
....
<name>wer</name>
<delay>
<type>Deterministic</type>
...
2
votes
2answers
236 views
Framework for Delphi similar to Castor
Can anyone suggest: a framework for Delphi for work with XML / XSD like the one that makes Castor for JAVA?
Borland XML Data Binding does not offer - he is not flexible.
2
votes
1answer
259 views
Transitioning from Castor to JPA
I am trying to make my java application more standards compliant and one of the biggest issues i am facing is transitioning our ORM framework from Castor JDO to a JPA implementation (thinking either ...
2
votes
1answer
442 views
Is it possible to have Castor marshal/unmarshal an EnumMap?
I'm using Castor to marshal/unmarshal my Java objects, one of which contains an EnumMap.
Can Castor marshal/unmarshal EnumMaps? I have a mapping file with some nested HashMaps, but I've never pushed ...
2
votes
1answer
506 views
Java castor using custom field handlers
I have been trying to write a custom field handler which returns the hash code of a java.awt.Image object when writing to XML and retrieves an image based on this hash code when binding the XML to an ...
2
votes
0answers
88 views
Castor compilation of schema produces different class hierarchy depending on elements in schema
While mataining a castor based system, I amend the source schema to produce a new set of classes and find that introducing a new element produces a different class hierarchy. This is true of any ...
1
vote
2answers
125 views
Can Castor handle class generation from multiple XSDs importing from a base XSD?
I several XSDs that reuse the same entities. For example, both the XSDs for the ProductPurchaseRequest.xsd and ProductQuoteRequest.xsd both have a <product> tag in them to describe the product ...
1
vote
0answers
75 views
How do I get Castor to ignore certain XML fields?
I am maintaining some complex Java code and the Castor (v1.2) unmarshaling is very slow due to quite a few "missing" Java objects. See, the XML contains more fields than I require but Castor ...
1
vote
0answers
67 views
Generate java classes from castor mapping file
I have this question:
Is it possible to generate java code from castor xml mapping files?
I have just a bunch of xml files and no xsds.
I've tried searching SO and google, and couldn't find ...
1
vote
1answer
294 views
How to find an element by attribute value in XML via castor generated object
I am having trouble looking up elements by attribute value in the XML file via castor generated classes.
Castor does the mapping of XML to entity classes very good. However it doesn't provide means ...
1
vote
0answers
23 views
Loading a class from server machine
I want to test an API which lines in a jar. But I don't have the jar in my local machine.
And the API takes custom objects which are non serializable. So I am planning to use XStream to convert to ...
1
vote
1answer
192 views
how to change from castor to JAXB in a project?
How can i transition from Castor to JAXB in an existing project?
1
vote
2answers
919 views
Two different marshallers in spring project
I need to use two different marshallers typically JaxbMarshaller and CastorMarshaller.
I have spring project with lots of integration modules.
<bean id="marshaller" ...
1
vote
1answer
439 views
xml to java object using castor
HI all!,
How can I do to ignore the <envelope> and <body> tags in unmarshall process using Castor?
thanks in advance.
Xml examole:
<?xml version="1.0" encoding="UTF-8"?>
...
1
vote
0answers
89 views
Marshalling a collection of String to one comma separated String
I'm using Castor to marshal Java objects to and from XML as part of a Spring WS web service.
One of the object's properties is a Collection of String and instead of listing each item as a separate ...
1
vote
1answer
385 views
Maven - How do I get the Castor plugin to trigger in the generate-sources phase?
I am mavenizing an ant project. One module includes XSD files that are used to generate source files using Castor. I have everything working if I run:
mvn castor:generate package
However I am not ...
1
vote
0answers
142 views
XML to DynaBeans from only xsd. Possible?
my question seems simple but I'm going crazy :)
Is there a way, using JAXB, Castor or XStream to convert XML into DynaBeans, considering that I have the xsd schema but no precompiled mapping classes ...
1
vote
2answers
1k views
Android Converting objects to XML and vice versa
I created a xsd and I created Java objects using Castor. Then I imported this in my Android project and tried to build an XML from the object, using the marshal method.
Marshaller.marshal(v, writer);
...
1
vote
1answer
848 views
XML unmarshalling with Castor and Grails
I have a grails project that contains a few domain objects. I am using a java project in this code which can parse a document for me. The controller that calls that Java project is using JAXB to ...
1
vote
2answers
964 views
Castor XML Mapping and java.util.Map
I've been using Castor these past couple of days to try to get a little serialization going between my Java program and XML in a readable way. Though it has a few faults, Castor's automatic xml ...
1
vote
1answer
2k views
How change Castor mapping to remove “xmlns:xsi” and “xsi:type” attributes from element in XML output?
How do I change the Castor mapping
<?xml version="1.0"?>
<!DOCTYPE mapping PUBLIC "-//EXOLAB/Castor Mapping DTD Version 1.0//EN"
"http://castor.org/mapping.dtd">
...
1
vote
2answers
884 views
Using Castor, how do you map Java class “java.util.ArrayList” to element “ArrayList”, but also generate elements for the objects that it contains?
Using Castor, how do you map Java class java.util.ArrayList to element <ArrayList/> instead of <array-list/> while still including the elements that it contains?
For example, the class ...
1
vote
1answer
123 views
Trouble setting WS response schema
I'm using soapUI to test some WebServices.
In MockService available in soapUI I get this default response
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" ...
1
vote
1answer
457 views
using Castor to parse xml based on attribute values
Using Castor to parse the following xml into POJOs using a mapping file is fairly straightforward:
<human name="bob"/>
<dog owner="alice"/>
It uses the name of the element to map to the ...
1
vote
1answer
669 views
Castor and JAXB Marshaller
Currently I am using Castor framework to marshall the object into xml file it work greats
Writer writer = new FileWriter("D:/out.xml");
Marshaller.marshal(test, writer);
But now I am using ...
1
vote
1answer
150 views
Castor compilation problem
I got "cannot access org.exolab.castor.core.exceptions.CastorException" from the compiler when I try to use Marshal and unmarshal. I used Castor 1.3
try {
Writer writer = new ...
1
vote
1answer
90 views
DOM versus Castor
Can anyone tell me which one better to use for xml parsing - DOM or Castor (with criterion being lesser memory usage)?
1
vote
3answers
189 views
Castor and sockets
I'm new to Castor and data binding in general. I'm working on an application that, in part, needs to take data off of a socket and unmarshall the data to make POJOs. Now, I've got the socket stuff ...
1
vote
1answer
175 views
Castor and IKVM
I've converted an api written in Java into a .net dll using IKVM, and so far it's been good.
It basically uses xml behind the scenes to access some web services. The api is 3rd party, and I have no ...
1
vote
3answers
224 views
Tool for importing Excel spreadsheets
I need to import some Excel spreadsheets into Java objects. I will use POI to do the task (an old version of it unfortunately). However I wonder if there is some high-level framework to do the same ...
1
vote
2answers
1k views
How can I handle Castor unmarshaling of SOAP messages when the namespace is defined inside the operation tag?
I am developing a contract-first web service based on Spring-WS. I'm relying on Castor marshaling, and I have run into the following issue.
Requests are being accepted when the "xmlns" namespace is ...
1
vote
4answers
537 views
Java: Using Castor XML with images
how can I use Castor XML to marshal a java.awt.Image object to XML, or make the XML reference the image in some way.
Cheers,
Pete
1
vote
4answers
1k views
Castor performance issues
We recently upgraded to Castor 1.2 from version 0.9.5.3 and we've noticed a dramatic drop in performance when calling unmarshal on XML. We're unmarshaling to java classes that were generated by ...
1
vote
2answers
292 views
Filter on current date within Castor OQL
I'm running the java cocoon 2 and castor oql. I'm trying to filter my oql query by today's date, but I can't seem to figure out (or find in google) the syntax of the date. The database is mySql, but ...
0
votes
0answers
11 views
Spring and CastorMarshaller: add namespace to XML root
My Java application tries to get information from a webservice. The XML request needs to have the namespace specified in the XML root element (class name), but the namespace of the tags (class fields) ...
0
votes
0answers
48 views
Castor mapping: How to force to use one specific mapping
I'm trying to map some web services responses into Java with Castor.
I have this mapping for a class that works nicely:
<mapping>
<class name="GetCompaniesRentedWSResult">
...
0
votes
1answer
74 views
Castor: How to map a Java hierarchy
I have this Java-Castor issue while mapping a hierarchy. Thanks for your time.
I have this XML file:
<RESULT>
<RESULTCODE>OK</RESULTCODE>
<ERRORS />
<COMPANIES>
...
0
votes
1answer
43 views
Is it possible to generate java source files from a spring-beans.xsd which is generated from the spring-beans.dtd?
I am trying to generate Java classes to bind xml to objects using castor. The piece of xml that I am trying to bind is a spring xml file so i took the dtd and generated the xsd using the tools castor ...
0
votes
1answer
45 views
Castor marshalling of name/value pair
I have a simple POJO that contains a name/value pair:
public class Parameter {
private String name = null;
private String value = null;
public Parameter() {
// Do Nothing
}
...
0
votes
2answers
73 views
Castor - Unmarshalling a simple repeating group
I'm going slowly mad over this. I'm trying to unmarshall an XML document like this:
<GetDeadlineOffset>
<deadlineCode>DC1</deadlineCode>
<parameters>
...
0
votes
0answers
68 views
Spring OXM - Castor XML mapping elements with the same name and different attributes
I'm having an hard time mapping elements with the same name ("attribute") and different attribute (attribute1, attribute2, ...).
<?xml version="1.0" encoding="UTF-8"?>
<documents ...
0
votes
0answers
53 views
castor marshaller suppress xsi
i read a post written by you about:
Marshaller marshaller = new Marshaller(w);
marshaller.setSuppressXSIType(true);
the problem is that i'm using that method but the result didn't changed.
...