Compare commits

..

No commits in common. "e71d9d76681d1eb397057335fd963a66672d869d" and "6b2c0b696b5e1fc94dde9c3e48003923deb30c7f" have entirely different histories.

2 changed files with 2 additions and 14 deletions

View File

@ -155,8 +155,6 @@ Public Class Winline
oURI &= $"?{oQuery}"
_Logger.Info("WebService Request: {0}", oURI)
Dim oRequest As HttpWebRequest = WebRequest.Create(oURI)
Dim oResponse As HttpWebResponse = DirectCast(oRequest.GetResponse(), HttpWebResponse)
Dim oXmlResponse As String
@ -165,8 +163,6 @@ Public Class Winline
oXmlResponse = oReader.ReadToEnd()
End Using
_Logger.Info("WebService Response: {0}", oXmlResponse)
Dim oDocument As New XmlDocument
oDocument.LoadXml(oXmlResponse)
oDocument.Save(Console.Out)

View File

@ -4,16 +4,8 @@
Private Sub frmMain_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Try
My.Application.LogConfig = New LogConfig(
LogPath:=LogConfig.PathType.CustomPath,
CustomLogPath:=Application.StartupPath,
CompanyName:="Digital Data",
ProductName:="WinLineProductNumberGenerator"
)
My.Application.ConfigManager = New ConfigManager(Of Config)(
My.Application.LogConfig,
Application.StartupPath
)
My.Application.LogConfig = New LogConfig(LogPath:=LogConfig.PathType.AppData, CompanyName:="Digital Data", ProductName:="WinLineProductNumberGenerator")
My.Application.ConfigManager = New ConfigManager(Of Config)(My.Application.LogConfig, Application.UserAppDataPath)
_Logger = My.Application.LogConfig.GetLogger()
Catch ex As Exception
MsgBox("Fehler beim Initialisieren (Logging und Config):" & vbNewLine & ex.Message, MsgBoxStyle.Critical, Text)