Warnings at startup

  • Platform information:
    • Hardware: CPUArchitecture/RAM/storage
    • OS: Ubuntu 16.04
    • Java Runtime Environment: 1.8.0_151-b12
    • openHAB version: openHAB 2.2.0 Build #1081

After updating to the latest build (updated with # 1073), when you start OpenHAB, in the warning log:

2017-11-16 16:43:12.655 [INFO ] [.dashboard.internal.DashboardService] - Started dashboard at http://192.168.215.111:8080
2017-11-16 16:43:12.671 [INFO ] [.dashboard.internal.DashboardService] - Started dashboard at https://192.168.215.111:8443
2017-11-16 16:43:13.177 [WARN ] [org.eclipse.jetty.http.HttpParser   ] - Illegal character 0x7F in state=HEADER_IN_VALUE for buffer DirectByteBuffer@33b76bda[p=188,l=2414,c=16384,r=2226]={HTTP/1.1 200 OK\r\n... 2017 08:43:13<<<\r\nEXT:\r\n\r\n<?xml v.../device></root>>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}
2017-11-16 16:43:13.179 [WARN ] [org.eclipse.jetty.http.HttpParser   ] - bad HTTP parsed: 400 Illegal character 0x7F for HttpReceiverOverHTTP@3d7093dc(rsp=HEADER,failure=null)[HttpParser{s=HEADER_IN_VALUE,0 of 2216}]
2017-11-16 16:43:13.211 [INFO ] [home.model.script.RULE.SystemStarted] - <-- System Started
2017-11-16 16:43:13.478 [WARN ] [org.eclipse.jetty.http.HttpParser   ] - Illegal character 0x7F in state=HEADER_IN_VALUE for buffer DirectByteBuffer@33b76bda[p=188,l=2414,c=16384,r=2226]={HTTP/1.1 200 OK\r\n... 2017 08:43:13<<<\r\nEXT:\r\n\r\n<?xml v.../device></root>>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}
2017-11-16 16:43:13.480 [WARN ] [org.eclipse.jetty.http.HttpParser   ] - bad HTTP parsed: 400 Illegal character 0x7F for HttpReceiverOverHTTP@22273665(rsp=HEADER,failure=null)[HttpParser{s=HEADER_IN_VALUE,0 of 2216}]
2017-11-16 16:43:13.925 [INFO ] [basic.internal.servlet.WebAppServlet] - Started Basic UI at /basicui/app
2017-11-16 16:43:14.019 [WARN ] [org.eclipse.jetty.http.HttpParser   ] - Illegal character 0x7F in state=HEADER_IN_VALUE for buffer DirectByteBuffer@77d200c5[p=188,l=2414,c=16384,r=2226]={HTTP/1.1 200 OK\r\n... 2017 08:43:13<<<\r\nEXT:\r\n\r\n<?xml v.../device></root>>>>s="yes"><name>Phy...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}
2017-11-16 16:43:14.030 [WARN ] [org.eclipse.jetty.http.HttpParser   ] - bad HTTP parsed: 400 Illegal character 0x7F for HttpReceiverOverHTTP@208b7fb2(rsp=HEADER,failure=null)[HttpParser{s=HEADER_IN_VALUE,0 of 2216}]
2017-11-16 16:43:14.125 [INFO ] [arthome.ui.paper.internal.PaperUIApp] - Started Paper UI at /paperui
2017-11-16 16:43:14.495 [WARN ] [org.eclipse.jetty.http.HttpParser   ] - Illegal character 0x7F in state=HEADER_IN_VALUE for buffer DirectByteBuffer@33b76bda[p=188,l=2414,c=16384,r=2226]={HTTP/1.1 200 OK\r\n... 2017 08:43:14<<<\r\nEXT:\r\n\r\n<?xml v.../device></root>>>>me>NewInternalPor...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}
2017-11-16 16:43:14.498 [WARN ] [org.eclipse.jetty.http.HttpParser   ] - bad HTTP parsed: 400 Illegal character 0x7F for HttpReceiverOverHTTP@59d283cc(rsp=HEADER,failure=null)[HttpParser{s=HEADER_IN_VALUE,0 of 2216}]
2017-11-16 16:43:15.431 [INFO ] [b.core.service.AbstractActiveService] - Expire Refresh Service has been started

I can not understand what is wrong? already two days I try to understand. Help please, where to look?

What is this Rule ? Perhaps any wrong http request?

rule "System started"
when
    System started
then
    logInfo("RULE.SystemStarted","<-- System Started")
    voice_str.postUpdate("System Started")
end
rule "voice"
when
    Item voice_str received update
then
    var String VoiceStr = voice_str.state.toString
    playSound("doorbell.mp3")
    createTimer(now.plusSeconds(2), [|
        say(VoiceStr,"voicerss:ruRU")
    ])
end

Okay that is not the Problem.

Yes, I saw it, even before I had this problem. But I did not understand how this works for me, there seems to be a way to develop my binding. I do not even understand where to start looking :frowning: I tried to remove most bindings, but not all, I’m not even sure whether the problem is in bindings or elsewhere.