Version, 8 Spalten, Icon variabel
This commit is contained in:
@@ -70,8 +70,16 @@ Public Class ClassInit
|
||||
End If
|
||||
|
||||
If CONFIG.Config.AppServerConfig <> String.Empty Then
|
||||
|
||||
|
||||
Try
|
||||
_Client = New Client(LOGCONFIG, CONFIG.Config.AppServerConfig, 9000)
|
||||
Dim oSplit() = CONFIG.Config.AppServerConfig.ToString.Split(";")
|
||||
Dim oAppServer = oSplit(0)
|
||||
Dim oAppServerPort = 9000
|
||||
If oSplit.Length = 2 Then
|
||||
oAppServerPort = oSplit(1)
|
||||
End If
|
||||
_Client = New Client(LOGCONFIG, oAppServer, oAppServerPort)
|
||||
If Not IsNothing(_Client) Then
|
||||
If _Client.Connect() Then
|
||||
APPSERVER_ACTIVE = True
|
||||
|
||||
Reference in New Issue
Block a user