matitaweb / jwatch

Automatically exported from code.google.com/p/jwatch
GNU Lesser General Public License v3.0
0 stars 0 forks source link

cannot deploy on glassfish #4

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1.install glassfish
2.deploy jwatch

What is the expected output? What do you see instead?
Error occurred during deployment: Exception while deploying the app [jwatch] : 
org.xml.sax.SAXParseException: cvc-complex-type.2.4.d: Invalid content was 
found starting with element 'description'. No child element is expected at this 
point.. Please see server.log for more details.

What version of the product are you using? On what operating system?
Glassfish 3.1.1, Windows 7(64bit)

What browser/version are you using?
chrome 16

Please provide any additional information below.

Original issue reported on code.google.com by yxf...@gmail.com on 28 Dec 2011 at 1:27

Attachments:

GoogleCodeExporter commented 8 years ago
It has been solved. Just put the description at first place as below on 
WEB-INF/web.xsml :

    <context-param>
    <description>How many job execution events to keep in the queue.</description>
        <param-name>maxevents</param-name>
        <param-value>1000</param-value>
    </context-param>

Original comment by yakup.a...@gmail.com on 29 Jan 2013 at 12:58