Launch Ignition window from URL

It is possible to pass parameters into the project through the launch URL like this:http://192.168.1.5:8088/main/system/launch/client/ProjectName.jnlp?paramName=paramValueThe parameter gets passed into a client tag with the same name (paramName). You can use the client tag anywhere in the project.

The only problem is you still have to auto-login as a specific user. On a startup script you can check to see if the value is passed in and call:system.security.switchUser(username, password)So the startup script would look something like this:[code]username = system.tag.read("[Client]Username")
password = system.tag.read("[Client]Password")

if username != “” and password != “”:
system.security.switchUser(username, password)[/code]Just keep in mind that the password will be plain text. You may want to think of encrypting it.