cannot find authoritative source location for XSOM
I'm looking for the official source code for XSOM. What with the various openJDK moves from an HG server to github, and splitting out of J2EE stuff from rest of OpenJDK, and the sheer volume of forks on github, I'm simply not finding it via searching. I can find lots of unofficial forks and such.
I hope to fix a bug, or at least better understand what XSOM is doing wrong with elementFormDefault and element form information. A fix here, or better understanding of what is actually happening in XSOM, is essential for mapping XML Schema information to w3c semantic web in the Ontmalizer tool.
java xsom
add a comment |
I'm looking for the official source code for XSOM. What with the various openJDK moves from an HG server to github, and splitting out of J2EE stuff from rest of OpenJDK, and the sheer volume of forks on github, I'm simply not finding it via searching. I can find lots of unofficial forks and such.
I hope to fix a bug, or at least better understand what XSOM is doing wrong with elementFormDefault and element form information. A fix here, or better understanding of what is actually happening in XSOM, is essential for mapping XML Schema information to w3c semantic web in the Ontmalizer tool.
java xsom
add a comment |
I'm looking for the official source code for XSOM. What with the various openJDK moves from an HG server to github, and splitting out of J2EE stuff from rest of OpenJDK, and the sheer volume of forks on github, I'm simply not finding it via searching. I can find lots of unofficial forks and such.
I hope to fix a bug, or at least better understand what XSOM is doing wrong with elementFormDefault and element form information. A fix here, or better understanding of what is actually happening in XSOM, is essential for mapping XML Schema information to w3c semantic web in the Ontmalizer tool.
java xsom
I'm looking for the official source code for XSOM. What with the various openJDK moves from an HG server to github, and splitting out of J2EE stuff from rest of OpenJDK, and the sheer volume of forks on github, I'm simply not finding it via searching. I can find lots of unofficial forks and such.
I hope to fix a bug, or at least better understand what XSOM is doing wrong with elementFormDefault and element form information. A fix here, or better understanding of what is actually happening in XSOM, is essential for mapping XML Schema information to w3c semantic web in the Ontmalizer tool.
java xsom
java xsom
asked Nov 21 '18 at 18:34
mbeckerlembeckerle
82
82
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Short answer, I think this is it: https://github.com/eclipse-ee4j/jaxb-ri
Long answer:
Archive.org has some information about XSOM being hosted on java.net as
part of the glassfish project:
https://web.archive.org/web/20110219005858/http://java.net:80/projects/xsom/sources/sources/show/trunk
At some point things were migrated away from java.net:
http://www.oracle.com/splash/java.net/maintenance/index.html
But XSOM isn't listed in any of those. Looking at maven central for xsom
finds this:
https://search.maven.org/artifact/org.glassfish.jaxb/xsom/2.4.0-b180830.0438/jar
Which is glassfish, so it seems xsom is now part of glassfish jaxb. The
repo for that is here:
https://github.com/javaee/jaxb-v2
And that does contains this xsom directory:
https://github.com/javaee/jaxb-v2/tree/master/jaxb-ri/xsom
And src/main/java does have the original com/sun/xml/xsom package name.
The commit logs also show evidence that xsom was merged into this jaxb-v2 repo.
https://github.com/javaee/jaxb-v2/commit/fe70e9210e316017ecccb1cf866ffae48927393c
The README for that repo has a notice that has migrated to this repo:
https://github.com/eclipse-ee4j/jaxb-ri
Which does have documentation about jaxb-ri/xsom. So I believe that is where the original java.net XSOM ended up with active development.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53418522%2fcannot-find-authoritative-source-location-for-xsom%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Short answer, I think this is it: https://github.com/eclipse-ee4j/jaxb-ri
Long answer:
Archive.org has some information about XSOM being hosted on java.net as
part of the glassfish project:
https://web.archive.org/web/20110219005858/http://java.net:80/projects/xsom/sources/sources/show/trunk
At some point things were migrated away from java.net:
http://www.oracle.com/splash/java.net/maintenance/index.html
But XSOM isn't listed in any of those. Looking at maven central for xsom
finds this:
https://search.maven.org/artifact/org.glassfish.jaxb/xsom/2.4.0-b180830.0438/jar
Which is glassfish, so it seems xsom is now part of glassfish jaxb. The
repo for that is here:
https://github.com/javaee/jaxb-v2
And that does contains this xsom directory:
https://github.com/javaee/jaxb-v2/tree/master/jaxb-ri/xsom
And src/main/java does have the original com/sun/xml/xsom package name.
The commit logs also show evidence that xsom was merged into this jaxb-v2 repo.
https://github.com/javaee/jaxb-v2/commit/fe70e9210e316017ecccb1cf866ffae48927393c
The README for that repo has a notice that has migrated to this repo:
https://github.com/eclipse-ee4j/jaxb-ri
Which does have documentation about jaxb-ri/xsom. So I believe that is where the original java.net XSOM ended up with active development.
add a comment |
Short answer, I think this is it: https://github.com/eclipse-ee4j/jaxb-ri
Long answer:
Archive.org has some information about XSOM being hosted on java.net as
part of the glassfish project:
https://web.archive.org/web/20110219005858/http://java.net:80/projects/xsom/sources/sources/show/trunk
At some point things were migrated away from java.net:
http://www.oracle.com/splash/java.net/maintenance/index.html
But XSOM isn't listed in any of those. Looking at maven central for xsom
finds this:
https://search.maven.org/artifact/org.glassfish.jaxb/xsom/2.4.0-b180830.0438/jar
Which is glassfish, so it seems xsom is now part of glassfish jaxb. The
repo for that is here:
https://github.com/javaee/jaxb-v2
And that does contains this xsom directory:
https://github.com/javaee/jaxb-v2/tree/master/jaxb-ri/xsom
And src/main/java does have the original com/sun/xml/xsom package name.
The commit logs also show evidence that xsom was merged into this jaxb-v2 repo.
https://github.com/javaee/jaxb-v2/commit/fe70e9210e316017ecccb1cf866ffae48927393c
The README for that repo has a notice that has migrated to this repo:
https://github.com/eclipse-ee4j/jaxb-ri
Which does have documentation about jaxb-ri/xsom. So I believe that is where the original java.net XSOM ended up with active development.
add a comment |
Short answer, I think this is it: https://github.com/eclipse-ee4j/jaxb-ri
Long answer:
Archive.org has some information about XSOM being hosted on java.net as
part of the glassfish project:
https://web.archive.org/web/20110219005858/http://java.net:80/projects/xsom/sources/sources/show/trunk
At some point things were migrated away from java.net:
http://www.oracle.com/splash/java.net/maintenance/index.html
But XSOM isn't listed in any of those. Looking at maven central for xsom
finds this:
https://search.maven.org/artifact/org.glassfish.jaxb/xsom/2.4.0-b180830.0438/jar
Which is glassfish, so it seems xsom is now part of glassfish jaxb. The
repo for that is here:
https://github.com/javaee/jaxb-v2
And that does contains this xsom directory:
https://github.com/javaee/jaxb-v2/tree/master/jaxb-ri/xsom
And src/main/java does have the original com/sun/xml/xsom package name.
The commit logs also show evidence that xsom was merged into this jaxb-v2 repo.
https://github.com/javaee/jaxb-v2/commit/fe70e9210e316017ecccb1cf866ffae48927393c
The README for that repo has a notice that has migrated to this repo:
https://github.com/eclipse-ee4j/jaxb-ri
Which does have documentation about jaxb-ri/xsom. So I believe that is where the original java.net XSOM ended up with active development.
Short answer, I think this is it: https://github.com/eclipse-ee4j/jaxb-ri
Long answer:
Archive.org has some information about XSOM being hosted on java.net as
part of the glassfish project:
https://web.archive.org/web/20110219005858/http://java.net:80/projects/xsom/sources/sources/show/trunk
At some point things were migrated away from java.net:
http://www.oracle.com/splash/java.net/maintenance/index.html
But XSOM isn't listed in any of those. Looking at maven central for xsom
finds this:
https://search.maven.org/artifact/org.glassfish.jaxb/xsom/2.4.0-b180830.0438/jar
Which is glassfish, so it seems xsom is now part of glassfish jaxb. The
repo for that is here:
https://github.com/javaee/jaxb-v2
And that does contains this xsom directory:
https://github.com/javaee/jaxb-v2/tree/master/jaxb-ri/xsom
And src/main/java does have the original com/sun/xml/xsom package name.
The commit logs also show evidence that xsom was merged into this jaxb-v2 repo.
https://github.com/javaee/jaxb-v2/commit/fe70e9210e316017ecccb1cf866ffae48927393c
The README for that repo has a notice that has migrated to this repo:
https://github.com/eclipse-ee4j/jaxb-ri
Which does have documentation about jaxb-ri/xsom. So I believe that is where the original java.net XSOM ended up with active development.
answered Nov 27 '18 at 18:06
stevedlawrencestevedlawrence
912
912
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53418522%2fcannot-find-authoritative-source-location-for-xsom%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown