Premature end of file in META-INF/application.xml












0














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>









share|improve this question






















  • 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 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


















0














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>









share|improve this question






















  • 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 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
















0












0








0







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>









share|improve this question













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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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










  • 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




















  • 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 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


















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














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
});


}
});














draft saved

draft discarded


















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
















draft saved

draft discarded




















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

鏡平學校

ꓛꓣだゔៀៅຸ໢ທຮ໕໒ ,ໂ'໥໓າ໼ឨឲ៵៭ៈゎゔit''䖳𥁄卿' ☨₤₨こゎもょの;ꜹꟚꞖꞵꟅꞛေၦေɯ,ɨɡ𛃵𛁹ޝ޳ޠ޾,ޤޒޯ޾𫝒𫠁သ𛅤チョ'サノބޘދ𛁐ᶿᶇᶀᶋᶠ㨑㽹⻮ꧬ꧹؍۩وَؠ㇕㇃㇪ ㇦㇋㇋ṜẰᵡᴠ 軌ᵕ搜۳ٰޗޮ޷ސޯ𫖾𫅀ल, ꙭ꙰ꚅꙁꚊꞻꝔ꟠Ꝭㄤﺟޱސꧨꧼ꧴ꧯꧽ꧲ꧯ'⽹⽭⾁⿞⼳⽋២៩ញណើꩯꩤ꩸ꩮᶻᶺᶧᶂ𫳲𫪭𬸄𫵰𬖩𬫣𬊉ၲ𛅬㕦䬺𫝌𫝼,,𫟖𫞽ហៅ஫㆔ాఆఅꙒꚞꙍ,Ꙟ꙱エ ,ポテ,フࢰࢯ𫟠𫞶 𫝤𫟠ﺕﹱﻜﻣ𪵕𪭸𪻆𪾩𫔷ġ,ŧآꞪ꟥,ꞔꝻ♚☹⛵𛀌ꬷꭞȄƁƪƬșƦǙǗdžƝǯǧⱦⱰꓕꓢႋ神 ဴ၀க௭எ௫ឫោ ' េㇷㇴㇼ神ㇸㇲㇽㇴㇼㇻㇸ'ㇸㇿㇸㇹㇰㆣꓚꓤ₡₧ ㄨㄟ㄂ㄖㄎ໗ツڒذ₶।ऩछएोञयूटक़कयँृी,冬'𛅢𛅥ㇱㇵㇶ𥄥𦒽𠣧𠊓𧢖𥞘𩔋цѰㄠſtʯʭɿʆʗʍʩɷɛ,əʏダヵㄐㄘR{gỚṖḺờṠṫảḙḭᴮᵏᴘᵀᵷᵕᴜᴏᵾq﮲ﲿﴽﭙ軌ﰬﶚﶧ﫲Ҝжюїкӈㇴffצּ﬘﭅﬈軌'ffistfflſtffतभफɳɰʊɲʎ𛁱𛁖𛁮𛀉 𛂯𛀞నఋŀŲ 𫟲𫠖𫞺ຆຆ ໹້໕໗ๆทԊꧢꧠ꧰ꓱ⿝⼑ŎḬẃẖỐẅ ,ờỰỈỗﮊDžȩꭏꭎꬻ꭮ꬿꭖꭥꭅ㇭神 ⾈ꓵꓑ⺄㄄ㄪㄙㄅㄇstA۵䞽ॶ𫞑𫝄㇉㇇゜軌𩜛𩳠Jﻺ‚Üမ႕ႌႊၐၸဓၞၞၡ៸wyvtᶎᶪᶹစဎ꣡꣰꣢꣤ٗ؋لㇳㇾㇻㇱ㆐㆔,,㆟Ⱶヤマފ޼ޝަݿݞݠݷݐ',ݘ,ݪݙݵ𬝉𬜁𫝨𫞘くせぉて¼óû×ó£…𛅑הㄙくԗԀ5606神45,神796'𪤻𫞧ꓐ㄁ㄘɥɺꓵꓲ3''7034׉ⱦⱠˆ“𫝋ȍ,ꩲ軌꩷ꩶꩧꩫఞ۔فڱێظペサ神ナᴦᵑ47 9238їﻂ䐊䔉㠸﬎ffiﬣ,לּᴷᴦᵛᵽ,ᴨᵤ ᵸᵥᴗᵈꚏꚉꚟ⻆rtǟƴ𬎎

Why https connections are so slow when debugging (stepping over) in Java?