Hi Brendan, Just a minor detail: I suppose the id's ('xxxxxx') will not be numbers, as the XML spec asks for names here. Cheers, Mark ... IDREF as the ... ...
JSX FAQ - 14 November 2001 ======= JSX instantly XML-enables applications, by re-implementing the Serialization API for XML. FAQ Contents: (1). Background (2)....
JSX-ideas@yahoogroups...
Mar 2, 2003 1:26 am
1679
... Yes, tho T\the names can be numeric, of course. Cheers, Brendan...
This email is to inform you about the release of version '0.3.0' of 'JSX2' through freshmeat.net. All URLs and other useful information can be found at ...
noreply@...
Mar 3, 2003 8:03 am
1681
This email is to inform you about the release of version '0.4.0' of 'Java Serialization to XML 2' through freshmeat.net. All URLs and other useful information...
noreply@...
Mar 6, 2003 7:48 pm
1682
Hi all, I've just completed a rewrite of JSX2, with a different XML format. This format is much easier to work with in many ways (esp processing with other...
Wow !! Looks very neat . primitive -> <primitive type='' value=''/> [Preetham Kajekar] Perhaps you have missed out the field attribute for primitive. You...
... Thanks :-) ... Yes, that's a typo in the spec - thanks. ... C++ ? Not for C++... Strings are "really" objects - and this is important in the XML ...
Hi all, JSX's current XML representation of Maps (eg Hashtable) Lists (eg Vector, ArrayList) and Sets is pretty awful - it exactly the serial form of these...
Hi Gary and all, This is to warn you that in the just-about-to-be-released version of JSX, you will need to say: jout.reset(); after each jout.writeObject(); ...
Hi all, I don't want to overload you with all these issues - but here's a simple one: <primitive field='x' type='int' value='20'/> <primitive field='y'...
Hi Brennan, I believe JOS only looks at whether a list or a map is stored. For instance I think you can read in as a TreeMap something that was writen as a...
Hi Mike, Thanks for you input - I'd much appreciate your input on the actual format below, as well! ... I don't think this is precisely true for JOS, but I'm...
Strings are immutable. i.e they behave like primitives. So, main() { String a = "a"; String b = a; System.out.println(" A is " + a); System.out.println(" B is...
This email is to inform you about the release of version '0.5.0' of 'Java Serialization to XML 2' through freshmeat.net. All URLs and other useful information...
noreply@...
Mar 10, 2003 9:39 am
1692
... This behaviour is also true of objects - it's not to do with immutability. The variables a and b both refer to the same object in your code (at first). If...
Coolest JSX App of the Day #1 Define the JSX DTD in your XML database and get fully indexed persistent Java Objects by using the new "id" attributes ... ...
Hi I recently moved to IBM's JVM because it's faster and I found this message from JSX 1.0.7.3. Is there some quick hack that I can use to get around this...
Here it goes... using JSX2.0.5.0.jar... but... I think the problem is simply that JSX doesn't know how to deserialize a java.lang.Class object... FWIW, I also...
Hi er Mr Blue, I'll look into the Apple issue in due course, but just at the moment paying licensees needs are getting priority. Cheers, Brendan -- ...
Hi Matias, I don't know if there is a quick hack or not - I'll look into this in due course, but at the moment some things are needed for paying licensees, and...
JSX is wonderful but I'm having problems running it in a jre 1.3.0_02 plugin. If I include JSX inside an applet, the applet will not launch, it hangs. When I...
Hi again Steve, Actually, I think this may be a security issue: JSX does some things that require a high level of access, which is usually disabled in applets....
Hi I noticed that in JSX1, the available() method is not implemented in ObjIn. As a result, the available() method in the super class is called, which results...
Hi Brendan Well, as I mentioned I am storing multiple object-graphs in a single file. When I come back, later, to read the objects back out of the file, I...
Something about this feels like it is not the "right" way to do it! ;-) You are mixing levels - this is a hack. An alternate way to get the same effect is to...
What do you think of this, for a simple representation of collections? <collection id='i43' class='java.util.ArrayList'> <string id='i44' value='apple 0'/> ...
Hi Brendan, For maps, I would personally like a marker for the key-value pairs, eg: <map id='i43' class='java.util.Hashtable'> <entry> <string id='i44'...