We want to set up an auto test environment for our
SystemWeaver applications. Is there a command line interface for starting the
Systemweaver server?
最佳答案
S
SystemWeaver
说
超过7年 以前
The server can be started from C# the following way:
var startInfo = new ProcessStartInfo(exeFileName, args);
startInfo.WorkingDirectory = Path.GetDirectoryName(exeFileName);
var process = Process.Start(startInfo);
args may contain: ini=fil.ini props=props.ini
In the ini file for the server – swServer.ini you can set
the database that shall be started by setting the DSN property e.g.:
DSN=D:\temp\database.sqlite
1 Comment
SystemWeaver
说
超过7年 以前
回答
The server can be started from C# the following way:
var startInfo = new ProcessStartInfo(exeFileName, args);
startInfo.WorkingDirectory = Path.GetDirectoryName(exeFileName);
var process = Process.Start(startInfo);
args may contain: ini=fil.ini props=props.ini
In the ini file for the server – swServer.ini you can set
the database that shall be started by setting the DSN property e.g.:
SystemWeaver
We want to set up an auto test environment for our SystemWeaver applications. Is there a command line interface for starting the Systemweaver server?
The server can be started from C# the following way:
args may contain: ini=fil.ini props=props.ini
In the ini file for the server – swServer.ini you can set the database that shall be started by setting the DSN property e.g.:
DSN=D:\temp\database.sqlite
SystemWeaver
The server can be started from C# the following way:
args may contain: ini=fil.ini props=props.ini
In the ini file for the server – swServer.ini you can set the database that shall be started by setting the DSN property e.g.:
DSN=D:\temp\database.sqlite
-
Major version exception in API
-
Part multiplicity exception in API
-
Get enum attribute value description
-
Detecting connection status?
-
Item type name from SID
-
Adding an existing item as part to an item using C# API
-
Last Changed date isn't updating
-
Script filer och API
-
How do I return a DataTable instead of IswItems?
查看所有19话题