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...
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'...
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...
Thanks for the quick reply,
It's just a suggestion / a nice to have.
Currently, it displaying 10.0.15063.0 for me instead of 10.0.15063.296. 296 is my UBR.
Like the latest version on wikipedia https://en.wikipedia.org/wiki/Windows_10 it is 10.0.15063.296, with the 296 you know which monthly updates are installed on the machine. / comments
Thanks for the quick reply,
It's just a suggestion / a nice to have.
Currently, it displaying 10.0.15063.0 for me instead of 10.0.15063.296. 296 is my UBR.
Like the latest version on wikipedia http...
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.
I added 1433 to my connection string and it work.
Here is my config if it can help someone.
<SmartAssembly.Settings>
<Options>
<Database ConnectionString="Data Source=192.168.0.8\SmartAssembly,1433; Initial Catalog=smartassembly; User Id=sa; Password=password" DatabaseEngine="1" LastProject="{ae726256-376b-4c6a-80f4-505fef2a73cf}" MasterConnectionString="Data Source=192.168.0.8\SmartAssembly,1433; Initial Catalog=master; User Id=sa; Password=password" Server="192.168.0.8\SmartAssembly,1433" />
</Options>
</SmartAssembly.Settings> / comments
I added 1433 to my connection string and it work.
Here is my config if it can help someone.
<SmartAssembly.Settings>
<Options>
<Database ConnectionString="Data Source=192.168.0.8\SmartAssembly,1433...
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...
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.
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...
Thanks for your quick reply,
I made the change into my registry and it's working.
All files can be embbed except the file Microsoft.Threading.Tasks.dll.
If I embbed this file I have this crash on load:
FileLoadException: Could not load file or assembly
'System.Core, Version=2.0.5.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, Retargetable=Yes'
or one of its dependencies. The given assembly name or codebase was invalid.
(Exception from HRESULT: 0x80131047)
I removed this file from the embbeding and I made a copy of "Microsoft.Threading.Tasks.dll" version 1.0.168.0 into my project exe folder and it's now working.
Maybe smart assembly do something different with this file but this is not really an issue for us.
Thanks again. / comments
Thanks for your quick reply,
I made the change into my registry and it's working.
All files can be embbed except the file Microsoft.Threading.Tasks.dll.
If I embbed this file I have this crash on l...