Hi everyone and Faustas, Sorry, I think I totally misunderstood you! You were actually asking if JSX only a writer - if it was only Java Serialization "to"...
ARGH! My Bad. I forgot that some code was added to my logger reciently to strip out CR/LF in log messages so that we can write the print of a stack trace from...
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...
Dec 2, 2001 2:17 am
925
... hee hee, no worries. Thanks for letting me know. We all make mistakes - hearing about yours makes me feel better about mine. ;-) Your remark about...
... OK - it was this sentence that confused me: "Since the XML produced by JSX sooner or later gets parsed, it would save some CPU cycles to present it in DOM...
Hi Brendan It's been a while since my last message about our bug on AIX. We have received a (beta) patch last week from IBM. The first attempts (without JSX)...
I was not mislead at all by the "Java Serialization to XML". I just assumed that meant read and write....
Marti DeMore
Martha.D.DeMore@...
Dec 3, 2001 5:49 pm
931
is it possible to use jsx within the applet sandbox? after trying using JSX0.9.7.0 under the JRE 1.3.1_01 to serialize a test class, i am greeted with a access...
JSX does stuff internally that requires permissions beyond the sandbox. That is even before trying to write to a file, for getting at private fields, etc. I'm...
Hi Jean-Christophe, ... I can't seem to download it for some reason (tho the other zip files at JSX-ideas are OK...). Could you email it to me direct, please?...
This email is to inform you of release '0.9.7.1' of 'Java Serialization to/from XML.' through freshmeat.net. All URLs and other useful information can be found...
noreply@...
Dec 7, 2001 5:39 am
935
I have some Strings in my objects that have embedded double quotes. When I serialize them out and read them back in using JSX, I lose the embedded quotes. Is...
Marti DeMore
Martha.D.DeMore@...
Dec 12, 2001 11:29 pm
936
... This is strange - you should get the same thing back again, and so JSX should be preserving double quotes. I just checked it with: String a = "\" <- that's...
Well, now if this just isn't one o' them things.... I cannot duplicate the problem at all now. I cannot find any problem in our code, or any problem in the...
Marti DeMore
Martha.D.DeMore@...
Dec 13, 2001 1:41 am
938
I've been testing JSX with a view to recommending it as part of a Java-based application my company is shortly to begin developing (we would be the second...
Hi Mike, I'm the author of JSX, and I can give you the answer "yes". ;-) ... Yes. There is more information below, for illustrative purposes only. ... Yes -...
What are the fundamental issues that make running JSX with Java 1.1 difficult? Is it possible? I was hoping to use JSX but we're stuck on the 1.1 platform...
Hi Dave, Hi Dave, ... Support for 1.1 would be good, but JSX would theoretically be able to handle only objects with: - all public fields - no final fields - a...
hi all, can anyone point me to some tutorials on JSX? in the webpage i cannot find any links.. thanx and regards marco...
marco.mistroni@...
Dec 19, 2001 1:11 pm
945
Hey Macro, ... First thing is - JSX works just like Java's own Serialization (JOS), so that any tutorials on JOS also apply to JSX. Second, have a look at the...
Hi Brendan, ... I am missing one point. i have following classes: - Serializer - Deserializer - MyMap does the 'other data structure' has to be in the MyMap?? ...
marco.mistroni@...
Dec 20, 2001 10:22 am
947
... First, if Externalizeable, the "writeExternal" is called, not writeObject() - sorry, I think I misled you there. ... OK, this looks good - just two things:...
Hi Brendan, thanx i got it. Now it works fine 4 both serializing and deserializing. Now i would like to see if i can improve my structure to be more readable. ...
marco.mistroni@...
Dec 20, 2001 12:25 pm
949
Hi, I am working on a version that allows you to register a handler object with ObjOut. The handler has to implement the following interface: public interface...
Hi Marco, ... The issue here is "lists". In java, we can't have several objects with the same name - for that, we use arrays (or vectors etc). Thus, you...
Hi Mark van der Kraan, This sounds interesting! Just to rephrase to ensure I understand correctly: the idea is for JSX to output SAX events rather than XML ...