Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-users] Error in HTTPS configuration for Jetty-9.4.14(Unable to configure HTTPS in Jetty 9.4.14)

You have a different XML error.

Something to do with a <Array> element badly declared, or lack of one (where one is expected).

Jetty 9.4.20.v20180813 reports the file and line number where the XML issues occur btw.
Hopefully your ccm is using XML files and not in-memory XML strings.

Joakim Erdfelt / joakim@xxxxxxxxxxx


On Wed, Oct 2, 2019 at 1:34 PM Himalaya Jha <jhahimalaya0444@xxxxxxxxx> wrote:
Hi,

Thanks you so much that error is gone now, but now getting some another error :

[ccm_root@synredhat6qa2 cm722b139]$ ccm_server -start
Starting Jetty:
Jetty running pid=23812
Exception in thread "main" java.lang.ArrayStoreException
        at java.lang.System.arraycopy(Native Method)
        at java.util.ArrayList.toArray(ArrayList.java:423)
        at org.eclipse.jetty.util.LazyList.toArray(LazyList.java:346)
        at org.eclipse.jetty.xml.XmlConfiguration$JettyXmlConfiguration.newArray(XmlConfiguration.java:942)
        at org.eclipse.jetty.xml.XmlConfiguration$JettyXmlConfiguration.itemValue(XmlConfiguration.java:1313)
        at org.eclipse.jetty.xml.XmlConfiguration$JettyXmlConfiguration.value(XmlConfiguration.java:1214)
        at org.eclipse.jetty.xml.XmlConfiguration$JettyXmlConfiguration.newObj(XmlConfiguration.java:842)
        at org.eclipse.jetty.xml.XmlConfiguration$JettyXmlConfiguration.itemValue(XmlConfiguration.java:1309)
        at org.eclipse.jetty.xml.XmlConfiguration$JettyXmlConfiguration.value(XmlConfiguration.java:1214)
        at org.eclipse.jetty.xml.XmlConfiguration$JettyXmlConfiguration.access$500(XmlConfiguration.java:326)
        at org.eclipse.jetty.xml.XmlConfiguration$JettyXmlConfiguration$AttrOrElementNode.getList(XmlConfiguration.java:1442)
        at org.eclipse.jetty.xml.XmlConfiguration$JettyXmlConfiguration$AttrOrElementNode.getList(XmlConfiguration.java:1417)
        at org.eclipse.jetty.xml.XmlConfiguration$JettyXmlConfiguration.call(XmlConfiguration.java:780)
        at org.eclipse.jetty.xml.XmlConfiguration$JettyXmlConfiguration.configure(XmlConfiguration.java:472)
        at org.eclipse.jetty.xml.XmlConfiguration$JettyXmlConfiguration.configure(XmlConfiguration.java:413)
        at org.eclipse.jetty.xml.XmlConfiguration.configure(XmlConfiguration.java:311)
        at org.eclipse.jetty.xml.XmlConfiguration$1.run(XmlConfiguration.java:1558)
        at org.eclipse.jetty.xml.XmlConfiguration$1.run(XmlConfiguration.java:1512)
        at java.security.AccessController.doPrivileged(AccessController.java:703)
        at org.eclipse.jetty.xml.XmlConfiguration.main(XmlConfiguration.java:1511)

Please suggest !!!!

Regards,
Himalaya

On Wed, Oct 2, 2019 at 10:56 PM Simone Bordet <sbordet@xxxxxxxxxxx> wrote:
Hi,

On Wed, Oct 2, 2019 at 7:15 PM Himalaya Jha <jhahimalaya0444@xxxxxxxxx> wrote:
>
> Please help me with the solution, In which xml files  or where should I make changes.

You have an old XML file.

Search in those for "keyStore" you will find a <Set ...> element that
needs to be changed.
The name of the property to set is now "keyStorePath".

--
Simone Bordet
----
http://cometd.org
http://webtide.com
Developer advice, training, services and support
from the Jetty & CometD experts.
_______________________________________________
jetty-users mailing list
jetty-users@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://www.eclipse.org/mailman/listinfo/jetty-users
_______________________________________________
jetty-users mailing list
jetty-users@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://www.eclipse.org/mailman/listinfo/jetty-users

Back to the top