3 Commits

Author SHA1 Message Date
Jonathan Jenne
1fb6038f17 Zooflow/Globix: fix crash related to checkbox 2021-12-23 12:47:28 +01:00
Jonathan Jenne
512ae2e815 Messaging: Include Limilabs License 2021-12-23 12:47:02 +01:00
Jonathan Jenne
d27eafd9aa EDMIService: Add Profile Logging 2021-12-23 12:46:41 +01:00
5 changed files with 39 additions and 3 deletions

View File

@@ -177,7 +177,7 @@ Public Class ControlCreator
oCheckBox.Checked = oValue
End If
AddHandler oCheckBox.CheckedChanged, Sub(sender As CheckBox, e As EventArgs)
AddHandler oCheckBox.CheckedChanged, Sub(sender As CheckEdit, e As EventArgs)
OnControlChanged.Invoke(sender)
End Sub

View File

@@ -0,0 +1,2 @@
DevExpress.XtraBars.Ribbon.RibbonControl, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
DevExpress.XtraEditors.ComboBoxEdit, DevExpress.XtraEditors.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a

View File

@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<License>
<Id>4dc5ef40-f1a9-468b-994c-b7ed600ad878</Id>
<ProductName>Mail.dll</ProductName>
<SubscriptionUntil>2022-07-29</SubscriptionUntil>
<RegisteredTo>Digital Data GmbH</RegisteredTo>
<LicenseType>single developer</LicenseType>
<BuyerName>Digital Data GmbH</BuyerName>
<Signature xmlns="http://www.w3.org/2000/09/xmldsig#">
<SignedInfo>
<CanonicalizationMethod Algorithm="http://www.w3.org/TR/2001/REC-xml-c14n-20010315" />
<SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1" />
<Reference URI="">
<Transforms>
<Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" />
</Transforms>
<DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<DigestValue>75MRtl4ipYelIZYlpT8O7QDX9Zc=</DigestValue>
</Reference>
</SignedInfo>
<SignatureValue>Raxfkz6DfQVs/sMvH+F2nH0eHXD8FoUFSdP3t7AgBUdpABJQx86srlyuMSEhXPlc1THCqPouEVob4RsWnd9OXvTiPPSOUSK9zuNG6uz93KLAhpSD5PraAgBCF4jwZArlAp7aCNfZpHqQ3w6TRHS+CfravUU0AHHG3MZ1ZcRkGuo=</SignatureValue>
</Signature>
</License>

View File

@@ -131,5 +131,10 @@
<Name>Logging</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Content Include="MailLicense.xml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
</Project>

View File

@@ -26,8 +26,7 @@ Namespace Methods.GlobalIndexer
Logger.Debug("Start of Method [LoadProfile]")
Try
Dim oProfile = GetDatatable.Run(
New GetDatatableFromCacheRequest With {
Dim oProfile = GetDatatable.Run(New GetDatatableFromCacheRequest With {
.DataTable = VIEW_PROFILE,
.FilterExpression = $"DOCTYPE_ID = {pProfileId}"
})
@@ -47,6 +46,13 @@ Namespace Methods.GlobalIndexer
.DynamicPath = oRow.ItemEx("DYNAMIC_FOLDER", "")
}
Logger.Debug("Name: [{0}]", oProfileObject.Name)
Logger.Debug("Active: [{0}]", oProfileObject.IsActive)
Logger.Debug("ObjectStore: [{0}]", oProfileObject.ObjectStore)
Logger.Debug("ShortName: [{0}]", oProfileObject.ShortName)
Logger.Debug("NameConvention: [{0}]", oProfileObject.NameConvention)
Logger.Debug("DynamicPath: [{0}]", oProfileObject.DynamicPath)
Return oProfileObject
Catch ex As Exception
LogAndThrow(ex, "Error while automatic loading profile!")