JNLP プロトコルを使用してパラメーターを指定して JAR ファイルを実行する方法について質問があります。たとえば、selenium-server-standalone-2.21.0.jar パッケージを適切に実行するには、次のように呼び出します。
selenium-server-standalone-2.21.0.jar -timeout 60000 -trustAllSSLCertificates -port 5555
これらのパラメータを次のように追加すると:
<jar href="/selenium-server-standalone-2.21.0.jar -timeout 60000 -trustAllSSLCertificates -port 5555"/>
エラーが発生しました - そのようなファイルが見つかりません。これらのパラメーターはファイル名の一部として扱われると思います。このため、このエラーが発生しました。call JAR パッケージのパラメーターは、以下の XML のどこに配置できますか。
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+" codebase="http://test.com/">
<information>
<title>Selenium-Server-Standalone-2.21.0</title>
<vendor>ESKY Testers Toolkit</vendor>
<homepage href="http://www.esky.pl/"/>
<description>starts selenium server on client machine</description>
</information>
<security>
<all-permissions/>
</security>
<resources>
<j2se version="1.4+"/>
<jar href="/selenium-server-standalone-2.21.0.jar"/>
</resources>
<application-desc main-class="org.openqa.selenium.server.SeleniumServer"/>
</jnlp>