Pass dynamic params via JNLP

后端 未结 2 1061
被撕碎了的回忆
被撕碎了的回忆 2020-12-09 12:58

I am using JavaScript in order to execute JNLP which in the end will execute my client.

I am trying to pass parameters via JavaScript execution to the JNLP and havin

2条回答
  •  长情又很酷
    2020-12-09 13:27

    Are you sure if the response type of the JSP is "application/x-java-jnlp-file"?

    If not, Please mention it at the top of the JSP and check.

    <% response.setContentType("application/x-java-jnlp-file"); %>
    

提交回复
热议问题