How can we help you today? How can we help you today?
mltgames

Activity overview

Latest activity by mltgames

I fixed the issue manually I added this inside SmartAssembly.exe.config     <AppContextSwitchOverrides value="Switch.System.Net.DontEnableSystemDefaultTlsVersions=false" /> and         <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" /> Basically it will allow the use of TLS 1.2 Here is my SmartAssembly.exe.config <?xml version="1.0"?> <configuration>   <configSections>     <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net, Version=1.2.11.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a"/>   </configSections>     <startup>          <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />     </startup>   <runtime>     <AppContextSwitchOverrides value="Switch.System.Net.DontEnableSystemDefaultTlsVersions=false" />   </runtime>   <log4net>     <!-- Uncomment to enable logging -->     <!-- This is a standard log4net configuration section; you can edit it as appropriate -->     <!--     <appender name="TraceLogger" type="log4net.Appender.FileAppender">       <file value="${LOCALAPPDATA}\Red Gate\SmartAssembly 6\SmartAssembly.log" />       <appendToFile value="false" />       <layout type="log4net.Layout.PatternLayout">         <conversionPattern value="%date %-7level %logger: %message%newline%exception" />       </layout>     </appender>     <root>       <level value="TRACE"/>       <appender-ref ref="TraceLogger" />     </root>     -->   </log4net> </configuration> Thanks again for your help, / comments
I fixed the issue manually I added this inside SmartAssembly.exe.config    <AppContextSwitchOverrides value="Switch.System.Net.DontEnableSystemDefaultTlsVersions=false" />and        <supportedRunti...
0 votes
Smart Assembly 6.13.0.1109 - TLS 1.2
I just upgraded our server on amazon with windows server 2019.The problem is that it support only TLS 1.1 or 1.2.Smart Assembly is using TLS 1.0 and it has been dropped.I can now send report but I'...
2 followers 3 comments 0 votes
Smart Assembly 6.11.2.609 issue
Hi, I need help with the Google API with the latest smart assembly version. I can't merge the Google API DLL since the new version... I have an error (due to other restriction? what is means?) I we...
1 follower 1 comment 0 votes
Humm where is the UBR version for windows 10? its good to have the build # but the UBR (Update Build Revision) is a nice to have. / comments
Humm where is the UBR version for windows 10? its good to have the build # but the UBR (Update Build Revision) is a nice to have.
0 votes
Remote sql server connection
I had sql server running, locally everything is working. I want to connect another pc that will share my map folder and sql server. My map folder is working perfectly on both pc except i cant conne...
2 followers 2 comments 0 votes
I finally found the issue. The server name was invalid. It was set to 127.0.0.1:443 instead of the hostname:443 Inside the IIS server configuration. / comments
I finally found the issue. The server name was invalid. It was set to 127.0.0.1:443 instead of the hostname:443 Inside the IIS server configuration.
0 votes
C++ DLL
I want to include an Unmanaged DLL Inside my projet. But when I'm obfuscating the code I have this error : System.IO.FileLoadException: Could not load file or assembly 'RFAccessPoint, Version=3.5.0...
1 follower 1 comment 0 votes