Apache WSS-建立连接时出错:net::ERR_connection_RESET[paraview web]

Apache WSS-建立连接时出错:net::ERR_connection_RESET[paraview web],apache,ssl,websocket,paraview,Apache,Ssl,Websocket,Paraview,我正在尝试运行paraview web,并使用Apache HTTPS服务器作为代理服务器 我收到以下错误,我无法通过Apache HTTPS打开安全websocket。以下是apache虚拟主机: <VirtualHost _default_:443> SSLEngine on SSLCertificateFile "C:\Program Files\Apache Software Foundation\SSL\apache.crt" SSLCertific

我正在尝试运行paraview web,并使用Apache HTTPS服务器作为代理服务器

我收到以下错误,我无法通过Apache HTTPS打开安全websocket。以下是apache虚拟主机:

<VirtualHost _default_:443>
    SSLEngine on
    SSLCertificateFile "C:\Program Files\Apache Software Foundation\SSL\apache.crt"
    SSLCertificateKeyFile "C:\Program Files\Apache Software Foundation\SSL\apache.key"

    ServerName MYAPACHE-SERVER
    ServerAdmin admin@MYAPPACHE-SERVER
    DocumentRoot "C:\Program Files (x86)\ParaView 4.1.0\share\paraview-4.1\www"
    ErrorLog "logs/pv-error_log"
    CustomLog "logs/pv-access_log" common


    <Location "C:\Program Files (x86)\ParaView 4.1.0\share\paraview-4.1\www" >
       SSLRequireSSL On
       SSLVerifyClient optional
       SSLVerifyDepth 1
       SSLOptions +StdEnvVars +StrictRequire
     </Location>

    # Turn on the rewrite engine
    RewriteEngine On

    # This is the path the mapping file Jetty creates
    RewriteMap session-to-port "txt:C:\Program Files (x86)\pythonLauncher\mapping\proxy.txt"

    # This is the rewrite condition. Look for anything with a sessionId= in the query part of the URL and capture the value to use below.
    RewriteCond %{QUERY_STRING}     ^sessionId=(.*)$ [NC]

    # This does the rewrite using the mapping file and the sessionId
    RewriteRule    ^/proxy.*$  ws://${session-to-port:%1}/ws  [P]


    <Directory "C:\Program Files (x86)\ParaView 4.1.0\share\paraview-4.1\www">
        Options Indexes FollowSymLinks
        Order allow,deny
        Allow from all
        AllowOverride None
        Require all granted
    </Directory>
    ProxyRequests off
    ProxyPass /apps http://localhost:9000/apps 
    ProxyPassReverse /apps http://localhost:9000/apps

    ProxyRequests off
    ProxyPass /lib http://localhost:9000/lib 
    ProxyPassReverse /lib http://localhost:9000/lib

    ProxyRequests off
    ProxyPass /paraview http://localhost:9000/paraview 
    ProxyPassReverse /paraview http://localhost:9000/paraview


    ProxyRequests off
    ProxyPass /ext http://localhost:9000/ext 
    ProxyPassReverse /ext http://localhost:9000/ext

    ProxyRequests off 
    ProxyPass / http://localhost:8181/ 
    ProxyPassReverse / http://localhost:8181/

</VirtualHost>             
Apache服务器版本:2.4.12

操作系统:Windows Server 2012 R2


Paraview web:4.1

您找到解决方案了吗?没有,我没有。。。。。如果我解决了,我会通知你的。你找到解决办法了吗?不,我没有。。。。。如果问题解决了,我会通知你的
"sessionURL" : "wss://${host}:${port}/proxy?sessionId=${id}"