使用虚拟 KVM Java 应用程序时出现问题

使用虚拟 KVM Java 应用程序时出现问题

尝试使用控制台重定向远程控制服务器时收到此错误:

错误:该字段具有无效值:

<?xml version="1.0" encoding="UTF-8"?>

<jnlp spec="1.0+" codebase="https://10.0.0.196/Java" >
     <information>
        <title>JViewer</title>
        <vendor>American Megatrends, Inc.</vendor>
        <description kind="one-line">JViewer Console Redirection Application</description>
        <description kind="tooltip">JViewer Console Redirection Application</description>
        <description kind="short">
            JViewer enables a user to view the video display of managed server via KVM.  
            It also enables the user to redirect his local keyboard, mouse for managing the server remotely.
        </description>
    </information>
    <security>
        <all-permissions/>
    </security>
    <resources>
        <j2se version="1.5+"/>
        <jar href="release/JViewer.jar"/>
    </resources>
    <resources os="Windows" arch="amd64">
       <j2se version="1.5+"/>
       <nativelib href="release/Win64.jar"/>
    </resources>
    <resources os="Windows" arch="x86">
        <j2se version="1.5+"/>
        <nativelib href="release/Win32.jar"/>
    </resources>    
    <resources os="Linux" arch="x86">
        <j2se version="1.5+"/>
        <nativelib href="release/Linux_x86.jar"/>
    </resources>    
    <resources os="Linux" arch="i386">
        <j2se version="1.5+"/>
        <nativelib href="release/Linux_x86.jar"/>
    </resources>    
    <application-desc>
        <argument>10.0.0.196</argument>
        <argument>7578</argument>
        <argument><html><head><title>Document Error: Page not found</title></head>
        <body><h2>Access Error: Page not found</h2>
        <p>Could not create token for this session. Max session limit might have reached 
</p></body></html>

昨天它还能正常工作。我收到一条错误消息,说无法下载文件,但如果我尝试了足够多的次数,它就会下载成功。现在无论我尝试多少次,每次都会收到应用程序错误。

我已经尝试过 Java 6 和 7 以及 IE10、9、8 和 7。

答案1

可能已经解决了,但由于我今天遇到了同样的问题,所以我将其发布在这里以供将来参考

你需要启动Java 控制中心并启用“在您的计算机上保留临时文件”检查,因此 java 将能够保存下载的文件。

相关内容