I have a jnlp file and I run it from an url in jsf page. for ex: http://localhost:8080/Test.jnlp
I want to pass parameter to my main class which is run with jnlp file.
Ex: http://localhost:8080/Test.jnlp?username=testuser
I want use it in my main class.
Test.java
String myuserName=username;
Do anyone has any idea how to pass parameter like this?