View Javadoc

1   package com.eviware.soapui.support.jnlp;
2   
3   import java.io.File;
4   
5   public class WebstartUtilCore extends WebstartUtil
6   {
7   
8   	public static void init()
9   	{
10  		if (isWebStart())
11  		{
12  			try
13  			{
14  				// wsi-test-tools
15  				System.setProperty("wsi.dir", createWebStartDirectory("wsi-test-tools", System
16  						.getProperty("wsitesttools.jar.url")
17  						)+ File.separator + "wsi-test-tools");
18  				System.out.println(System.getProperty("wsi.dir"));
19  			}
20  			catch (Exception e)
21  			{
22  				e.printStackTrace();
23  			}
24  
25  		}
26  
27  	}
28  }