<?xml version="1.0" encoding="utf-8"?>
<feed xml:lang="en" xmlns="http://www.w3.org/2005/Atom"><title>Recent changes to support-requests</title><link href="https://sourceforge.net/p/jox/support-requests/" rel="alternate"/><link href="https://sourceforge.net/p/jox/support-requests/feed.atom" rel="self"/><id>https://sourceforge.net/p/jox/support-requests/</id><updated>2005-08-31T10:02:08Z</updated><subtitle>Recent changes to support-requests</subtitle><entry><title>support for Set</title><link href="https://sourceforge.net/p/jox/support-requests/10/" rel="alternate"/><published>2005-08-31T10:02:08Z</published><updated>2005-08-31T10:02:08Z</updated><author><name>Anonymous</name><uri>https://sourceforge.net/u/userid-None/</uri></author><id>https://sourceforge.net4d9aafb3a50737b0a7eb5adb4ffd04a8c92ce667</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Does jox support HashSet or Set interface?&lt;br /&gt;
If yes, could you please me write how to write dtd?&lt;/p&gt;
&lt;p&gt;Thanks.&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>I cannot create ENUMERATION</title><link href="https://sourceforge.net/p/jox/support-requests/9/" rel="alternate"/><published>2004-11-14T17:44:01Z</published><updated>2004-11-14T17:44:01Z</updated><author><name>Anonymous</name><uri>https://sourceforge.net/u/userid-None/</uri></author><id>https://sourceforge.neta4f1b556dd77a007b8caf8c14c33be67214fc3b4</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;I cannot read XML documents like this :&lt;/p&gt;
&lt;p&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;&lt;br /&gt;
&amp;lt;stock_info&amp;gt;&lt;br /&gt;
&amp;lt;name&amp;gt;"YYY"&amp;lt;/name&amp;gt;&lt;br /&gt;
&amp;lt;price&amp;gt;SYM&amp;lt;/price&amp;gt;&lt;br /&gt;
&amp;lt;/stock_info&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;stock_info&amp;gt;&lt;br /&gt;
&amp;lt;name&amp;gt;"XXX"&amp;lt;/name&amp;gt;&lt;br /&gt;
&amp;lt;price&amp;gt;SYM&amp;lt;/price&amp;gt;&lt;br /&gt;
&amp;lt;/stock_info&amp;gt;&lt;/p&gt;
&lt;p&gt;I can' create enumeration.&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>Support indent</title><link href="https://sourceforge.net/p/jox/support-requests/8/" rel="alternate"/><published>2004-09-13T06:19:06Z</published><updated>2004-09-13T06:19:06Z</updated><author><name>Anonymous</name><uri>https://sourceforge.net/u/userid-None/</uri></author><id>https://sourceforge.net4f5865829f204ca6c9b16d3131c4b28d69029781</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Programmer can choose whether need indent on the &lt;br /&gt;
output xml.&lt;/p&gt;
&lt;p&gt;Make it on JOXConfig.&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>Please support BigDecimal as base type</title><link href="https://sourceforge.net/p/jox/support-requests/7/" rel="alternate"/><published>2004-09-13T04:07:05Z</published><updated>2004-09-13T04:07:05Z</updated><author><name>Anonymous</name><uri>https://sourceforge.net/u/userid-None/</uri></author><id>https://sourceforge.net79f51eb0041438f3386de5318b23fee41705c069</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;I have an attribuite which type is BigDecimal.&lt;br /&gt;
JOX can write it as empty tag only and can't read it &lt;br /&gt;
since BigDecimal has no constructor with empty &lt;br /&gt;
argument.&lt;/p&gt;
&lt;p&gt;Becuase float and double will cause wrong calculation, &lt;br /&gt;
we would like to use BigDecimal to guarantee the &lt;br /&gt;
mathematical calculation is correct.&lt;/p&gt;
&lt;p&gt;Please change JOX to support BigDecimal as the base &lt;br /&gt;
type of property.&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>Cannot write XML with encoding = UTF-8</title><link href="https://sourceforge.net/p/jox/support-requests/6/" rel="alternate"/><published>2004-08-30T13:19:32Z</published><updated>2004-08-30T13:19:32Z</updated><author><name>Anonymous</name><uri>https://sourceforge.net/u/userid-None/</uri></author><id>https://sourceforge.netc80f78afe6ea0c46d964fe7bd2a27b87db9228e2</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;I tried to write out an XML document with &lt;br /&gt;
JOXBeanOutputStream ( a code piece follow ) :&lt;/p&gt;
&lt;p&gt;:&lt;br /&gt;
FileOutputStream fileOut = new FileOutputStream&lt;br /&gt;
("output.xml");&lt;br /&gt;
JOXBeanOutputStream joxOut = new &lt;br /&gt;
JOXBeanOutputStream(fileOut);&lt;br /&gt;
JOXConfig myjc = (JOXConfig) joxOut.getConfig();&lt;br /&gt;
myjc.setWriteClassNames(false);&lt;br /&gt;
myjc.setEncoding("UTF-8");&lt;br /&gt;
out.println("encoding : "+myjc.getEncoding()); &lt;br /&gt;
joxOut.writeObject("myRootElement", myBean);          &lt;br /&gt;
joxOut.close();&lt;br /&gt;
:&lt;/p&gt;
&lt;p&gt;where myBean is a javabean.&lt;/p&gt;
&lt;p&gt;the method writeObject(..) can set the elements of &lt;br /&gt;
myBean and some properties of JOXConfig but the &lt;br /&gt;
output.xml file that it generates begin with&lt;br /&gt;
&amp;lt;?xml version="1.0" encoding="ISO-8859-1"?&amp;gt;&lt;br /&gt;
instead that&lt;br /&gt;
&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;&lt;/p&gt;
&lt;p&gt;where it is the error?&lt;/p&gt;
&lt;p&gt;thanks!&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>cannot read XML document like this</title><link href="https://sourceforge.net/p/jox/support-requests/5/" rel="alternate"/><published>2004-08-25T17:03:02Z</published><updated>2004-08-25T17:03:02Z</updated><author><name>afterbit</name><uri>https://sourceforge.net/u/afterbit/</uri></author><id>https://sourceforge.neta9ad3cecbca6c8bbab34e54fbc5234b9628c630d</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;I cannot read XML documents like this :&lt;/p&gt;
&lt;p&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;&lt;br /&gt;
&amp;lt;item-list&amp;gt;&lt;br /&gt;
&amp;lt;stock_info name="YYY"&amp;gt;SYM&amp;lt;/stock_info&amp;gt;&lt;br /&gt;
&amp;lt;/item-list&amp;gt;&lt;/p&gt;
&lt;p&gt;I can't get property name="YYY".&lt;/p&gt;
&lt;p&gt;thanks!&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>parse large XML files and performance</title><link href="https://sourceforge.net/p/jox/support-requests/4/" rel="alternate"/><published>2004-08-20T14:23:48Z</published><updated>2004-08-20T14:23:48Z</updated><author><name>afterbit</name><uri>https://sourceforge.net/u/afterbit/</uri></author><id>https://sourceforge.net178a8064a66420170e09eca8408689cc77d62762</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Hello Mark,&lt;/p&gt;
&lt;p&gt;I'm testing your JOX to use it with an e-commerce web &lt;br /&gt;
application. I found it very interesting, but I have a &lt;br /&gt;
couple of questions.&lt;/p&gt;
&lt;p&gt;- I have downloaded JOX 1.17Beta3 (March 31, 2004). &lt;br /&gt;
What (and when) will be the next release (new &lt;br /&gt;
features..) ?&lt;br /&gt;
- How about performance?&lt;br /&gt;
- I have to parse large XML files.. Is there a limit?&lt;/p&gt;
&lt;p&gt;thanks!&lt;br /&gt;
Roberto.&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>How to make Jox to generatre SAX events while reading object</title><link href="https://sourceforge.net/p/jox/support-requests/3/" rel="alternate"/><published>2004-03-29T22:02:45Z</published><updated>2004-03-29T22:02:45Z</updated><author><name>Anonymous</name><uri>https://sourceforge.net/u/userid-None/</uri></author><id>https://sourceforge.netbf097a140f1233fbb0e9b1181afb220b547bcd5b</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Hi All,&lt;/p&gt;
&lt;p&gt;I am using Jox in my application. I urgently need to &lt;br /&gt;
know, how to handle sax events while Jox loads/reads &lt;br /&gt;
an object from an xml source. Especially I am getting an &lt;br /&gt;
error while loading the document. I need to pinpoint &lt;br /&gt;
where exactly the error is occuring while loading?..&lt;/p&gt;
&lt;p&gt;Please Help&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>Reading Arguments from XML</title><link href="https://sourceforge.net/p/jox/support-requests/2/" rel="alternate"/><published>2003-10-08T14:01:43Z</published><updated>2003-10-08T14:01:43Z</updated><author><name>Anonymous</name><uri>https://sourceforge.net/u/userid-None/</uri></author><id>https://sourceforge.netfd2116876d6d37398320cca7b43aa9e0ed627374</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I am evaluating the JOX software that is very easy to &lt;br /&gt;
convert Java Beans object to XML and back. It is truly &lt;br /&gt;
amazing. I am actually stuck in one important scenario:&lt;/p&gt;
&lt;p&gt;My XML file looks like:&lt;br /&gt;
&amp;amp;lt;item-list&amp;amp;gt;&lt;br /&gt;
&amp;amp;lt;stock_info name=&amp;amp;quot;YYY&amp;amp;quot;&amp;amp;gt;SYM&amp;amp;lt;/stock_info&amp;amp;gt;&lt;br /&gt;
&amp;amp;lt;/item-list&amp;amp;gt;&lt;/p&gt;
&lt;p&gt;I want to write an particular java bean code to get &lt;br /&gt;
access to symbol SYM.&lt;br /&gt;
can you please tell me how to do it?&lt;/p&gt;
&lt;p&gt;thanks. I appreciate your help.&lt;br /&gt;
Manish&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>Support for collection and HashMaps</title><link href="https://sourceforge.net/p/jox/support-requests/1/" rel="alternate"/><published>2003-07-03T10:16:26Z</published><updated>2003-07-03T10:16:26Z</updated><author><name>Anil Kumar C</name><uri>https://sourceforge.net/u/anilkrc/</uri></author><id>https://sourceforge.net3576034c1cbcd7007e66b5fdc4e16ea2cfc46c67</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I liked JOX and wanted to use this as a means of&lt;br /&gt;
getting JDK1.4's javabean to XML mapping in JDK1.3&lt;/p&gt;
&lt;p&gt;The problem that I am facing is JOX currently does not&lt;br /&gt;
seem to handle Collections and HashMaps in my bean. &lt;/p&gt;
&lt;p&gt;Is there plan for incorporating the same or has some&lt;br /&gt;
one already provided a fix or patch for this feature.&lt;/p&gt;
&lt;p&gt;regards,&lt;/p&gt;
&lt;p&gt;Anil&lt;/p&gt;&lt;/div&gt;</summary></entry></feed>