Skip to Main Content

Java EE (Java Enterprise Edition) General Discussion

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

JAXB schema Support?

843834Sep 30 2002 — edited Sep 30 2002
Does anyone know when the first release of JAXB with schema support is due?

I would rather not write lots of dtd and xjs files as i already have the schemas for my XML but I would prefer to use an official java API.

Do you think I should develop using castor or wait for JAXB to support schemas?

Are there any utilitys to convert a schema into a dtd and xjs.

Thanks in advance

Sam

Comments

843829
Are you by any chance running on a dual processor machine? If you are, you might be running with -server (this is the new ergonomic change in Tiger), and with a larger default heap size. The best way to check this is to run
java -showversion myClass
A new feature in Java5 was to determine if the machine was better off using -server instead of -client (>2cpu, >2gb of memory). If that was true then -server is used and certain GC tuning parameters are specified. If the VM detects you are on a "Server Class" machine, than by default 1/4 of your memory is used as maximum heap up to a maximum of 1gb. So its possible that's what you are hitting.
843829
You are right, this may be the problem.

Is there a way to change the default behavior or do I always set -server/-client manually to make shure my favorite java vm gets started?
843829
You can continue to use the server VM if you wish, but just remember to specify minimum and maximum heap sizes with -Xms and -Xmx.
1 - 3
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Oct 28 2002
Added on Sep 30 2002
2 comments
154 views