How to run applications with options in IDEs like Netbeans

Hi, I'm new to the Netbeans IDE and I'm wondering how to run applications with options.

Normally I'd enter the following in the command line:

java -Djavax.net.ssl.keyStore=mykeystore -Djavax.net.ssl.keyStorePassword="..." TLSServer

java -Djavax.net.ssl.trustStore=mytruststore -Djavax.net.ssl.trustStorePassword="..." TLSClient localhost

Problem is, I've no idea how to do the same thing in IDE's like Netbeans and I can't any settings to add options like "-Djavax.net.ssl.keyStore=mykeystore" before running the application. Any help will be appreciated.

Message was edited by:

Wolfgard

[688 byte] By [Wolfgarda] at [2007-10-3 2:58:57]
# 1
Right-click the project, click properties, clicl run, and add parameters to VM Options.
ChuckBinga at 2007-7-14 20:48:31 > top of Java-index,Java Essentials,New To Java...