Hi, I'm just searching the web for some serialization mechanisms on Java objects. So far JSX seems to be the best feature-wise. I just tried it with a few...
beders@...
Mar 16, 2001 12:35 pm
32
On Fri, 16 Mar 2001 beders@... wrote: hi! ... Brendan accepts patches. But as far as i understand it Brendan wants to start a rewrite since the package...
Raimund 'Raimi' Jacob
raimi@...
Mar 16, 2001 1:45 pm
33
Hi Jochen, Thanks very much for your kind words, and also for raising some interesting points. Oddly enough, I'd been looking at some of them over the last...
Brendan Macmillan
bren@...
Mar 16, 2001 2:13 pm
34
... I suggest gnu.xml.hammer. (if it will be under GPL). The prefix max be used for GPL software. Of course, org.gnu would be correct but gnu. is more often...
Bernhard Fastenrath
fasten@...
Mar 16, 2001 2:48 pm
35
On Fri, 16 Mar 2001, Bernhard Fastenrath wrote: Hello again! ... I like that, too. _ __ ... _/acob *...
Raimund 'Raimi' Jacob
raimi@...
Mar 16, 2001 3:08 pm
36
gnu.xml.hammer has my vote! -- Gary Lawrence Murphy <garym@...> TeleDynamics Communications Inc Business Innovations Through Open Source Systems:...
Gary Lawrence Murphy
garym@...
Mar 17, 2001 7:35 am
37
Hi all, Just a short note to say that the book is finally finished, and I can finally spend some time on JSX! There's lots of good ideas to incorporate. ...
Brendan Macmillan
bren@...
Mar 24, 2001 1:24 am
38
Welcome back! Oh how we missed you :) Here's hoping your editors don't drive you nuts with their nitpicking ;) I already have a wishlist welcome-back item:...
Gary Lawrence Murphy
garym@...
Mar 24, 2001 3:23 am
39
Hi Gary and all, ... Yes! ObjIn.java, line 32, change: public ObjIn(InputStreamReader in) throws IOException { to: public ObjIn(Reader in) throws IOException {...
Brendan Macmillan
bren@...
Mar 25, 2001 3:33 am
40
... B> ObjIn.java, line 32, change: public ObjIn(InputStreamReader in) Cool! It's something I can hack in place for now, so a release is not really required. ...
Gary Lawrence Murphy
garym@...
Mar 25, 2001 5:12 am
41
If this message works, it confirms that messages can be sent to the JSX-ideas by anyone. B....
Brendan Macmillan
fred.nurk@...
Mar 31, 2001 7:06 am
42
... think). ... Hi Brendan, I joined the mailing list :-) (although Yahoo tells me that my subscription has not been validated by 'the moderators'? :-) Anyway,...
twolf@...
Apr 2, 2001 5:56 pm
43
At the company where I work, TCEnet Inc., we are in need of xml serialization to replace our existing binary serialization. I gave your code a try, and it...
Mark Collette
mcollett@...
Apr 2, 2001 11:00 pm
44
... I'm not on the JSX project, I'm just a user, but I thought I might be able to clarify some general licensing issues about the GPL. You can release your...
Brandon K. Wiley
cyb@...
Apr 2, 2001 11:52 pm
45
Hi Mark, ... Thanks for your email, and interest in JSX despite this failure :( I am very very surprised that it broke down for your non-trivial case. There ...
Brendan Macmillan
bren@...
Apr 3, 2001 12:10 am
46
... case. There ... one of ... information ... When writing out an array of chars (or a String, which has a char[]), if one char is a newline ('\n'), it will...
mcollett@...
Apr 3, 2001 1:37 am
47
Hi Mark, Thanks for your quick response. It's always good to move fast. ... Thanks for this succient diagnosis. I need to check more closely, but it sounds...
Brendan Macmillan
bren@...
Apr 3, 2001 3:41 am
48
... The GNU project has sold commercial licenses. They sold a commercial license for GCC to Motorola....
Brandon K. Wiley
cyb@...
Apr 3, 2001 6:50 am
49
... changes for you? ... because I am ... to patch it. ... All the code ... think you are OK ... grant a specific ... be open ... technically places ... ...
mcollett@...
Apr 3, 2001 8:31 pm
50
Hi, Just trying the lastest version of JSX (0.8.4) against our large memory structure ;-) . The following code produces a null pointer exception... Code:- ...
Andy Thomas
alt@...
Apr 4, 2001 8:53 pm
51
Just found JSX, and it's very cool stuff. Is it possible to add the ability to selectively omit certain fields from being written? I've got a class that...
neal@...
Apr 5, 2001 12:17 am
52
I'd say you are violating what JSX is doing, and voilating your OOP, with this approach; wouldn't it make more sense to have a specialized class that contains...
Gary Lawrence Murphy
garym@...
Apr 5, 2001 12:25 am
53
... the ... via ... And I guess, an easy answer to my own question would be: It's XML silly, remove the line before sending it! :) -N...
neal@...
Apr 5, 2001 12:30 am
54
... OOP, ... specialized ... transform ... I know what you mean. That's definitely a good idea, I'll have to try that out. Sort of like a 'filter' class that...
neal@...
Apr 5, 2001 12:34 am
55
One option is to mark the field as transient. Paul Flinton ... From: neal@... To: JSX-ideas@yahoogroups.com Sent: Wednesday, April 04, 2001 5:17 PM ...
Paul Flinton
pflinton_lords@...
Apr 5, 2001 12:39 am
56
True, but then the private key can't be serialized, and it's definitely important information, just something that shouldn't be sent to other people via XML....
neal@...
Apr 5, 2001 12:52 am
57
I didn't read your post closely enough. I missed the reference to PK. You're correct that transient wouldn't work. Paul Flinton ... From: neal@... To:...
Paul Flinton
pflinton_lords@...
Apr 5, 2001 1:14 am
58
Hi Neal, ... Thanks very much! ... My immediate reaction was also "transient", as was Paul's; but now I think that Gary has really nailed it: you want...
Brendan Macmillan
bren@...
Apr 5, 2001 1:37 am
59
Hi Andy, Thanks a lot for the detailed stacktrace - it makes it really easy to diagnose. The problem is that JSX doesn't presently implement .write(byte[]...
Brendan Macmillan
bren@...
Apr 5, 2001 1:52 am
60
Hi all, We have been working with JSX for a month. Our goal is to build an object structures visualization tool. This could be very interesting when testing...