We want to set up an auto test environment for our
SystemWeaver applications. Is there a command line interface for starting the
Systemweaver server?
Best Answer
S
SystemWeaver
said
over 8 years ago
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
said
over 8 years ago
Answer
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?
										 
See all 20 topics