﻿<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>StrataFrame Forum » StrataFrame Application Framework - V1 » Enhancement Requests  » Security Enhancement</title><generator>InstantForum 2017-1 Final</generator><description>StrataFrame Forum</description><link>http://forum.strataframe.net/</link><webMaster>StrataFrame Forum</webMaster><lastBuildDate>Tue, 09 Jun 2026 07:02:21 GMT</lastBuildDate><ttl>20</ttl><item><title>Security Enhancement</title><link>http://forum.strataframe.net/FindPost13066.aspx</link><description>I'd like to see an enhancement to the security framework that provides a mechanism to specify&amp;nbsp;which domains are&amp;nbsp;used when Windows authentication is enabled. I'd like to be able to limit the application to the current domain or let it seek out the parent and other child domains. &lt;P&gt;The reason for this request is that the agency I work for is a child domain in a larger AD structure. I've already experienced problems where my application failed because some other child domain was not reachable. As a workaround I've&amp;nbsp;modified the framework to skip child domains that it can't find when it builds the list of child domains.&lt;/P&gt;&lt;P&gt;This weekend there was a power outage in our County's main data center that took down the parent domain's domain controller.&amp;nbsp;This would have been an issue except the power failure&amp;nbsp;also took down our Internet connectivity&amp;nbsp;which prevented our Enterprise Server from accepting new&amp;nbsp;connections&amp;nbsp;since it couldn't "phone home" (Thanks for commitment to fix that:)). Now that I have the Internet and ES back I'm finding that I&amp;nbsp;my users are experiencing&amp;nbsp;a 60 second&amp;nbsp;delay from the time an application is&amp;nbsp;launched until the login screen is displayed. A little profiling with Ants shows about&amp;nbsp;that much time being spent in "Login.AddChildDomainToList". Since one of our core Cisco routers was damaged in the outage I'm sure it's a network related issue that will eventually get fixed. However since I really have no interest in any of the other domains I'd really like to limit my application's dependance on them. As a test I modified the framework to only list the current domain and the login screen was displayed almost immediately. &lt;/P&gt;&lt;P&gt;Maybe a setting could be added to the security database or other config file that tells the application to look for the parent and child domains or just use (list) the current domain. That would allow applications that use Windows authentication to be easily configured to their environment without having to re-compile. I'd also like to see a fix for unreachable child domains when the domain list is being built.&lt;/P&gt;&lt;P&gt;-Larry</description><pubDate>Thu, 21 Feb 2008 09:51:37 GMT</pubDate><dc:creator>Larry Caylor</dc:creator></item><item><title>RE: Security Enhancement</title><link>http://forum.strataframe.net/FindPost14491.aspx</link><description>Sure.&amp;nbsp; It is in the latest 1.6.5 beta that I posted last night.&amp;nbsp; We are getting close to releasing the 1.6.5 build and are finalizing a few requests, help, and samples.&amp;nbsp; So if you get a change, you might load this to make sure it behaves the way you want it to.</description><pubDate>Thu, 21 Feb 2008 09:51:37 GMT</pubDate><dc:creator>Trent L. Taylor</dc:creator></item><item><title>RE: Security Enhancement</title><link>http://forum.strataframe.net/FindPost14470.aspx</link><description>Thanks! That saves me from having to modify the security module on each release.</description><pubDate>Wed, 20 Feb 2008 18:45:03 GMT</pubDate><dc:creator>Larry Caylor</dc:creator></item><item><title>RE: Security Enhancement</title><link>http://forum.strataframe.net/FindPost14463.aspx</link><description>At the very least, I will see if I can get this change added before the final release of 1.6.5.&amp;nbsp; In fact, I will probably add this tonight and post another update tomorrow.</description><pubDate>Wed, 20 Feb 2008 11:16:35 GMT</pubDate><dc:creator>Trent L. Taylor</dc:creator></item><item><title>RE: Security Enhancement</title><link>http://forum.strataframe.net/FindPost14462.aspx</link><description>While not the ideal fix, adding a Try Catch block to the shared sub AddChildDomainsToList in the Login class of the security module solves a big part of the problem. It prevents the login from failing if one of the child domains cannot be added. If it's not the domain of the user that is trying to login, no problem. I've been adding this to the Security module with each update. It might be a good idea to display a warning message if a child cannot be added to make the user aware there is a problem on the network.&lt;FONT size=2&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Private&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Shared&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Sub&lt;/FONT&gt;&lt;FONT size=2&gt; AddChildDomainsToList(&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;ByVal&lt;/FONT&gt;&lt;FONT size=2&gt; ParentDomain &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;As&lt;/FONT&gt;&lt;FONT size=2&gt; Domain, &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;ByVal&lt;/FONT&gt;&lt;FONT size=2&gt; List &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;As&lt;/FONT&gt;&lt;FONT size=2&gt; List(&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Of&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;String&lt;/FONT&gt;&lt;FONT size=2&gt;))&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#008000 size=2&gt;'-- Establish locals&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Dim&lt;/FONT&gt;&lt;FONT size=2&gt; loChild &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;As&lt;/FONT&gt;&lt;FONT size=2&gt; Domain&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#008000 size=2&gt;'-- Cycle through the children&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;For&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Each&lt;/FONT&gt;&lt;FONT size=2&gt; loChild &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;In&lt;/FONT&gt;&lt;FONT size=2&gt; ParentDomain.Children&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Try&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#008000 size=2&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; '-- Add to list&lt;BR&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; List.Add(loChild.Name)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;FONT color=#008000 size=2&gt;'-- Recursively call child's children&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;FONT size=2&gt;AddChildDomainsToList(loChild, List)&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Catch&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Continue&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;For&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;End&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Try&lt;/P&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#008000 size=2&gt;''-- Original code&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#008000 size=2&gt;''-- Add to list&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#008000 size=2&gt;'List.Add(loChild.Name)&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#008000 size=2&gt;''-- Recursively call child's children&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#008000 size=2&gt;'AddChildDomainsToList(loChild, List)&lt;/P&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Next&lt;/P&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;End&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Sub&lt;/P&gt;&lt;/FONT&gt;</description><pubDate>Wed, 20 Feb 2008 11:07:51 GMT</pubDate><dc:creator>Larry Caylor</dc:creator></item><item><title>RE: Security Enhancement</title><link>http://forum.strataframe.net/FindPost14086.aspx</link><description>Thanks for the update.</description><pubDate>Wed, 06 Feb 2008 10:51:17 GMT</pubDate><dc:creator>Larry Caylor</dc:creator></item><item><title>RE: Security Enhancement</title><link>http://forum.strataframe.net/FindPost14084.aspx</link><description>This is on our list to look at before the final release of the build...we have given this a cursory glance and it will require a bit of effort as we will have to make some relatively extensive LDAP queries happen.&amp;nbsp; We current just use the Windows API to populate this combo...so it is on our radar, but I do not have a direct answer for you until we see what will be fully involved to make this happen.</description><pubDate>Wed, 06 Feb 2008 10:29:12 GMT</pubDate><dc:creator>Trent L. Taylor</dc:creator></item><item><title>RE: Security Enhancement</title><link>http://forum.strataframe.net/FindPost14082.aspx</link><description>Comments???</description><pubDate>Wed, 06 Feb 2008 10:25:35 GMT</pubDate><dc:creator>Larry Caylor</dc:creator></item></channel></rss>