Tagged Questions

XML data binding refers to a means of representing information in an XML document as an object in computer memory. This allows applications to access the data in the XML from the object rather than using the DOM or SAX to retrieve the data from a direct representation of the XML itself.

learn more… | top users | synonyms (1)

8
votes
4answers
8k views

JAXB - Remove 'standalone=“yes”' from generated XML

Do you know of a JAXB setting to prevent standalone="yes" from being generated in the resulting XML? <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
3
votes
1answer
228 views

Where has the XML Data Binding Wizard in Delphi XE2 gone?

Embarcadero help indicates that the XML Data Binding Wizard is also in XE2 (as well as XE and earlier) but I cannot see it (on two machines). Has it moved? Did it not get into XE2 yet? Is there a file ...
3
votes
1answer
215 views

Problem in generating complex types while using XML Data Binding

I am using XML Data Mapping and having a problem with generating complex types while using it. If i am having an XML like below its working fine <?xml version="1.0" standalone="yes" ?> ...
3
votes
1answer
82 views

Choosing framework for XML persistency

I need to choose a framework for XML persistency of some java classes in our application. My requirements are: 1. I start from java classes, not from schema 2. Using annotations for customization 3. ...
3
votes
4answers
4k views

Binding XML in Silverlight without nominal classes

Let's say I have a simple chunck of XML:- <root> <item forename="Fred" surname="Flintstone" /> <item forename="Barney" surname="Rubble" /> </root> Having fetched this ...
2
votes
4answers
388 views

How to bind xml to bean

In my application i use some API via HTTP and it returns responces as xml. I want automaticaly bind data from xml to beans. For example bind following xml: <xml> ...
2
votes
2answers
2k views

JiBX: How do I keep using interfaces in my code?

How can I keep my using interfaces in classes I want to use JiBX binding with? Example: I have this very simple model in java: public interface A { B getB(); void setB(B b); } public ...
1
vote
1answer
104 views

How to change xml binding at runtime in Dashcode (iPhone)

I am working on Dashcode (iphone). I get xml data from a url and need to change or refresh xml binding to a list at runtime. In apple website, there is a way shown to bind xml/Json data only at ...
1
vote
1answer
52 views

JAXBContext and @XmlNsForm annotation

Please shed some light on JAXBContext configutation. Given: customer library com.mycompany.user01234 with several JAXB-annotated classes all classes are simple POJOs located in the same package ...
1
vote
1answer
143 views

How can I set the SelectedIndex property of a ComboBox that is bound to XML based on an attribute in that xml?

I have a WPF Combobox defined as such: <ComboBox Grid.Column="1" x:Name="cUrls" SelectedIndex="1" ItemsSource=" {Binding XPath=//data/endpoints/endpoint}" Margin="5" > ...
1
vote
2answers
263 views

Generate XML Schema with documentation

Is there a way to generate XML Schema(xsd) with documentation(<xsd:annotation> / <xsd:documentation>) from javadoc comments in classes? I know the reverse is possible (i.e generation ...
1
vote
5answers
187 views

Suggesstion needed for persisting java objects to xml

We are using hibernate to load data from oracle database. I need to load the data from one of the tables and then store selected data from this table as an xml file in another table. It would be great ...
1
vote
2answers
91 views

calling plugin from java code

hi i am using eclipse as IDE for the development of my application. I have one doubt. I have one plugin that is capable to creating a class on from one xml file. Now, the problem is that i have many ...
1
vote
1answer
1k views

Bind ListBox to XmlDocument

Could someone help me out, to why my listbox is empty? The XmlDocument contains the following XML: <Config> <Tabs> <Tab Name="Test1" /> <Tab Name="Test2" /> ...
1
vote
3answers
191 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 ...
0
votes
0answers
36 views

Binding Sql Server and XML

I have a Sql Server database (version 2008 running databases in 2000 mode) and I want to generate some XML files using data from this db. I have XML schema for this XML. I've though of 3 ways to do ...
0
votes
1answer
77 views

Making data model classes serializable

I am using JiBX for XML-Java data binding. The current configuration generates classes pretty well but I want these generated classes to implement java.io.Serializable. Here is maven plugin ...
0
votes
1answer
35 views

Convert XMl code to java code with expression

<date-time>2008-07-13T18:00:00</date-time>
0
votes
1answer
581 views

WPF datagrid XML binding displaying multiple Items in a cell using DataTemplate

I have a DataGrid which is as follows:: <wpfkit:DataGrid AutoGenerateColumns="False" ItemsSource="{Binding}" Width="Auto" FrozenColumnCount="2" ...
0
votes
1answer
294 views

Datagrid databinding to XML with DataGridTemplateColumn

I have an XML like this :: <?xml version="1.0" encoding="utf-8" ?> <Rows> <Row Id="1"> <Devices> <Device DeviceId="123">Device 1</Device> ...
0
votes
1answer
394 views

How to bind XML with namespace to WPF DataGrid?

I have a use-case where I need to bind data from an XML file to a WPF DataGrid. I prepared this example to demonstrate what I'll be doing in my final code. This is Books.xml: <?xml ...