Premature end of file in META-INF/application.xml
I have created a web application through maven 3 and in the project structure there is myartifactid/META-INF/application.xml file. This contains:
<?xml version="1.0" encoding="UTF-8"?>
<application xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/application_8.xsd"
version="8">
</application>
I'm using GlassFish 5 with jdk 1.8.0_191. Whenever I start the server I get the following error (Premature end of file.. Please see server.log for more details. in application.xml):
Successfully started the domain : domain1
domain Location: /usr/applicationserver/glassfish5/glassfish/domains/domain1
Log File: /usr/applicationserver/glassfish5/glassfish/domains/domain1/logs/server.log
Admin Port: 4848
Command start-domain executed successfully.
Connected to server
[2018-11-14 11:45:33,345] Artifact myproject: Artifact is being deployed, please wait...
[2018-11-14 11:45:35,767] Artifact myproject: Error during artifact deployment. See server log for details.
[2018-11-14 11:45:35,767] Artifact myproject: java.io.IOException: com.sun.enterprise.admin.remote.RemoteFailureException: Error occurred during deployment: Exception while deploying the app [myproject] : org.xml.sax.SAXParseExceptionpublicId: http://www.oracle.com/technetwork/java/index.html; lineNumber: 1; columnNumber: 1; Deployment descriptor file META-INF/application.xml in archive [myproject]. Premature end of file.. Please see server.log for more details.
In Intellij it gives me as an error "Element Application must be declared". Looking arround it seems that this file is used as deployment descriptor for javaeeApplication. In myproject.iml file in Intellij I have:
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="FacetManager">
<facet type="javaeeApplication" name="javaEEApplication">
<configuration>
<descriptors>
<deploymentDescriptor name="application.xml" url="file://$MODULE_DIR$/META-INF/application.xml" />
</descriptors>
</configuration>
</facet>
<facet type="web" name="Web">
<configuration>
<descriptors>
<deploymentDescriptor name="web.xml" url="file://$MODULE_DIR$/web/WEB-INF/web.xml" />
</descriptors>
<webroots>
<root url="file://$MODULE_DIR$/web" relative="/" />
</webroots>
<sourceRoots>
<root url="file://$MODULE_DIR$/src/main/java" />
</sourceRoots>
</configuration>
</facet>
</component>
</module>
java glassfish
add a comment |
I have created a web application through maven 3 and in the project structure there is myartifactid/META-INF/application.xml file. This contains:
<?xml version="1.0" encoding="UTF-8"?>
<application xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/application_8.xsd"
version="8">
</application>
I'm using GlassFish 5 with jdk 1.8.0_191. Whenever I start the server I get the following error (Premature end of file.. Please see server.log for more details. in application.xml):
Successfully started the domain : domain1
domain Location: /usr/applicationserver/glassfish5/glassfish/domains/domain1
Log File: /usr/applicationserver/glassfish5/glassfish/domains/domain1/logs/server.log
Admin Port: 4848
Command start-domain executed successfully.
Connected to server
[2018-11-14 11:45:33,345] Artifact myproject: Artifact is being deployed, please wait...
[2018-11-14 11:45:35,767] Artifact myproject: Error during artifact deployment. See server log for details.
[2018-11-14 11:45:35,767] Artifact myproject: java.io.IOException: com.sun.enterprise.admin.remote.RemoteFailureException: Error occurred during deployment: Exception while deploying the app [myproject] : org.xml.sax.SAXParseExceptionpublicId: http://www.oracle.com/technetwork/java/index.html; lineNumber: 1; columnNumber: 1; Deployment descriptor file META-INF/application.xml in archive [myproject]. Premature end of file.. Please see server.log for more details.
In Intellij it gives me as an error "Element Application must be declared". Looking arround it seems that this file is used as deployment descriptor for javaeeApplication. In myproject.iml file in Intellij I have:
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="FacetManager">
<facet type="javaeeApplication" name="javaEEApplication">
<configuration>
<descriptors>
<deploymentDescriptor name="application.xml" url="file://$MODULE_DIR$/META-INF/application.xml" />
</descriptors>
</configuration>
</facet>
<facet type="web" name="Web">
<configuration>
<descriptors>
<deploymentDescriptor name="web.xml" url="file://$MODULE_DIR$/web/WEB-INF/web.xml" />
</descriptors>
<webroots>
<root url="file://$MODULE_DIR$/web" relative="/" />
</webroots>
<sourceRoots>
<root url="file://$MODULE_DIR$/src/main/java" />
</sourceRoots>
</configuration>
</facet>
</component>
</module>
java glassfish
I suppose the problem is that the referenced XML Schemas URL is no longer valid ( java.sun.com/xml/ns/javaee/application_8.xsd )
– Gyro Gearless
Nov 14 '18 at 10:18
This is what I had also in mind, but I'm not sure how to fix it. In oracle.com/webfolder/technetwork/jsc/xml/ns/javaee/index.html#8 I put in the place of the link you provided oracle.com/webfolder/technetwork/jsc/xml/ns/javaee/… but it didn't fix it.
– Symeon Mattes
Nov 14 '18 at 10:50
Usingcurl -v http://xmlns.jcp.org/xml/ns/javaee/application_8.xsd
I receive a301 Moved Perm...
With a reference tohttp://www.oracle.com/webfolder/technetwork/jsc/xml/ns/javaee/application_8.xsd
. running the samecurl -v
command with that URL downloads the correct XML Schema, but I can't get it to validate any docs when referencing the schemaLocation. Feels like the parsers aren't doing something right. This is the Online Validator, I'm using.
– Jason Armstrong
Nov 14 '18 at 13:46
add a comment |
I have created a web application through maven 3 and in the project structure there is myartifactid/META-INF/application.xml file. This contains:
<?xml version="1.0" encoding="UTF-8"?>
<application xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/application_8.xsd"
version="8">
</application>
I'm using GlassFish 5 with jdk 1.8.0_191. Whenever I start the server I get the following error (Premature end of file.. Please see server.log for more details. in application.xml):
Successfully started the domain : domain1
domain Location: /usr/applicationserver/glassfish5/glassfish/domains/domain1
Log File: /usr/applicationserver/glassfish5/glassfish/domains/domain1/logs/server.log
Admin Port: 4848
Command start-domain executed successfully.
Connected to server
[2018-11-14 11:45:33,345] Artifact myproject: Artifact is being deployed, please wait...
[2018-11-14 11:45:35,767] Artifact myproject: Error during artifact deployment. See server log for details.
[2018-11-14 11:45:35,767] Artifact myproject: java.io.IOException: com.sun.enterprise.admin.remote.RemoteFailureException: Error occurred during deployment: Exception while deploying the app [myproject] : org.xml.sax.SAXParseExceptionpublicId: http://www.oracle.com/technetwork/java/index.html; lineNumber: 1; columnNumber: 1; Deployment descriptor file META-INF/application.xml in archive [myproject]. Premature end of file.. Please see server.log for more details.
In Intellij it gives me as an error "Element Application must be declared". Looking arround it seems that this file is used as deployment descriptor for javaeeApplication. In myproject.iml file in Intellij I have:
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="FacetManager">
<facet type="javaeeApplication" name="javaEEApplication">
<configuration>
<descriptors>
<deploymentDescriptor name="application.xml" url="file://$MODULE_DIR$/META-INF/application.xml" />
</descriptors>
</configuration>
</facet>
<facet type="web" name="Web">
<configuration>
<descriptors>
<deploymentDescriptor name="web.xml" url="file://$MODULE_DIR$/web/WEB-INF/web.xml" />
</descriptors>
<webroots>
<root url="file://$MODULE_DIR$/web" relative="/" />
</webroots>
<sourceRoots>
<root url="file://$MODULE_DIR$/src/main/java" />
</sourceRoots>
</configuration>
</facet>
</component>
</module>
java glassfish
I have created a web application through maven 3 and in the project structure there is myartifactid/META-INF/application.xml file. This contains:
<?xml version="1.0" encoding="UTF-8"?>
<application xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/application_8.xsd"
version="8">
</application>
I'm using GlassFish 5 with jdk 1.8.0_191. Whenever I start the server I get the following error (Premature end of file.. Please see server.log for more details. in application.xml):
Successfully started the domain : domain1
domain Location: /usr/applicationserver/glassfish5/glassfish/domains/domain1
Log File: /usr/applicationserver/glassfish5/glassfish/domains/domain1/logs/server.log
Admin Port: 4848
Command start-domain executed successfully.
Connected to server
[2018-11-14 11:45:33,345] Artifact myproject: Artifact is being deployed, please wait...
[2018-11-14 11:45:35,767] Artifact myproject: Error during artifact deployment. See server log for details.
[2018-11-14 11:45:35,767] Artifact myproject: java.io.IOException: com.sun.enterprise.admin.remote.RemoteFailureException: Error occurred during deployment: Exception while deploying the app [myproject] : org.xml.sax.SAXParseExceptionpublicId: http://www.oracle.com/technetwork/java/index.html; lineNumber: 1; columnNumber: 1; Deployment descriptor file META-INF/application.xml in archive [myproject]. Premature end of file.. Please see server.log for more details.
In Intellij it gives me as an error "Element Application must be declared". Looking arround it seems that this file is used as deployment descriptor for javaeeApplication. In myproject.iml file in Intellij I have:
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="FacetManager">
<facet type="javaeeApplication" name="javaEEApplication">
<configuration>
<descriptors>
<deploymentDescriptor name="application.xml" url="file://$MODULE_DIR$/META-INF/application.xml" />
</descriptors>
</configuration>
</facet>
<facet type="web" name="Web">
<configuration>
<descriptors>
<deploymentDescriptor name="web.xml" url="file://$MODULE_DIR$/web/WEB-INF/web.xml" />
</descriptors>
<webroots>
<root url="file://$MODULE_DIR$/web" relative="/" />
</webroots>
<sourceRoots>
<root url="file://$MODULE_DIR$/src/main/java" />
</sourceRoots>
</configuration>
</facet>
</component>
</module>
java glassfish
java glassfish
asked Nov 14 '18 at 10:05
Symeon Mattes
313117
313117
I suppose the problem is that the referenced XML Schemas URL is no longer valid ( java.sun.com/xml/ns/javaee/application_8.xsd )
– Gyro Gearless
Nov 14 '18 at 10:18
This is what I had also in mind, but I'm not sure how to fix it. In oracle.com/webfolder/technetwork/jsc/xml/ns/javaee/index.html#8 I put in the place of the link you provided oracle.com/webfolder/technetwork/jsc/xml/ns/javaee/… but it didn't fix it.
– Symeon Mattes
Nov 14 '18 at 10:50
Usingcurl -v http://xmlns.jcp.org/xml/ns/javaee/application_8.xsd
I receive a301 Moved Perm...
With a reference tohttp://www.oracle.com/webfolder/technetwork/jsc/xml/ns/javaee/application_8.xsd
. running the samecurl -v
command with that URL downloads the correct XML Schema, but I can't get it to validate any docs when referencing the schemaLocation. Feels like the parsers aren't doing something right. This is the Online Validator, I'm using.
– Jason Armstrong
Nov 14 '18 at 13:46
add a comment |
I suppose the problem is that the referenced XML Schemas URL is no longer valid ( java.sun.com/xml/ns/javaee/application_8.xsd )
– Gyro Gearless
Nov 14 '18 at 10:18
This is what I had also in mind, but I'm not sure how to fix it. In oracle.com/webfolder/technetwork/jsc/xml/ns/javaee/index.html#8 I put in the place of the link you provided oracle.com/webfolder/technetwork/jsc/xml/ns/javaee/… but it didn't fix it.
– Symeon Mattes
Nov 14 '18 at 10:50
Usingcurl -v http://xmlns.jcp.org/xml/ns/javaee/application_8.xsd
I receive a301 Moved Perm...
With a reference tohttp://www.oracle.com/webfolder/technetwork/jsc/xml/ns/javaee/application_8.xsd
. running the samecurl -v
command with that URL downloads the correct XML Schema, but I can't get it to validate any docs when referencing the schemaLocation. Feels like the parsers aren't doing something right. This is the Online Validator, I'm using.
– Jason Armstrong
Nov 14 '18 at 13:46
I suppose the problem is that the referenced XML Schemas URL is no longer valid ( java.sun.com/xml/ns/javaee/application_8.xsd )
– Gyro Gearless
Nov 14 '18 at 10:18
I suppose the problem is that the referenced XML Schemas URL is no longer valid ( java.sun.com/xml/ns/javaee/application_8.xsd )
– Gyro Gearless
Nov 14 '18 at 10:18
This is what I had also in mind, but I'm not sure how to fix it. In oracle.com/webfolder/technetwork/jsc/xml/ns/javaee/index.html#8 I put in the place of the link you provided oracle.com/webfolder/technetwork/jsc/xml/ns/javaee/… but it didn't fix it.
– Symeon Mattes
Nov 14 '18 at 10:50
This is what I had also in mind, but I'm not sure how to fix it. In oracle.com/webfolder/technetwork/jsc/xml/ns/javaee/index.html#8 I put in the place of the link you provided oracle.com/webfolder/technetwork/jsc/xml/ns/javaee/… but it didn't fix it.
– Symeon Mattes
Nov 14 '18 at 10:50
Using
curl -v http://xmlns.jcp.org/xml/ns/javaee/application_8.xsd
I receive a 301 Moved Perm...
With a reference to http://www.oracle.com/webfolder/technetwork/jsc/xml/ns/javaee/application_8.xsd
. running the same curl -v
command with that URL downloads the correct XML Schema, but I can't get it to validate any docs when referencing the schemaLocation. Feels like the parsers aren't doing something right. This is the Online Validator, I'm using.– Jason Armstrong
Nov 14 '18 at 13:46
Using
curl -v http://xmlns.jcp.org/xml/ns/javaee/application_8.xsd
I receive a 301 Moved Perm...
With a reference to http://www.oracle.com/webfolder/technetwork/jsc/xml/ns/javaee/application_8.xsd
. running the same curl -v
command with that URL downloads the correct XML Schema, but I can't get it to validate any docs when referencing the schemaLocation. Feels like the parsers aren't doing something right. This is the Online Validator, I'm using.– Jason Armstrong
Nov 14 '18 at 13:46
add a comment |
0
active
oldest
votes
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%2f53297564%2fpremature-end-of-file-in-meta-inf-application-xml%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f53297564%2fpremature-end-of-file-in-meta-inf-application-xml%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
I suppose the problem is that the referenced XML Schemas URL is no longer valid ( java.sun.com/xml/ns/javaee/application_8.xsd )
– Gyro Gearless
Nov 14 '18 at 10:18
This is what I had also in mind, but I'm not sure how to fix it. In oracle.com/webfolder/technetwork/jsc/xml/ns/javaee/index.html#8 I put in the place of the link you provided oracle.com/webfolder/technetwork/jsc/xml/ns/javaee/… but it didn't fix it.
– Symeon Mattes
Nov 14 '18 at 10:50
Using
curl -v http://xmlns.jcp.org/xml/ns/javaee/application_8.xsd
I receive a301 Moved Perm...
With a reference tohttp://www.oracle.com/webfolder/technetwork/jsc/xml/ns/javaee/application_8.xsd
. running the samecurl -v
command with that URL downloads the correct XML Schema, but I can't get it to validate any docs when referencing the schemaLocation. Feels like the parsers aren't doing something right. This is the Online Validator, I'm using.– Jason Armstrong
Nov 14 '18 at 13:46