How can we help you today? How can we help you today?
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
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
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