diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-06-24 13:03:39 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-06-24 13:03:39 +0300 |
| commit | 54802d8343dcb710ced4d009995a8cc796915039 (patch) | |
| tree | b72d2d9bc9ae1a292e60d5b9a29cac6b2791963c /Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Update | |
| parent | 5095a1dd5f65a7659083cae6dfccb34007720ee9 (diff) | |
| download | Tango-54802d8343dcb710ced4d009995a8cc796915039.tar.gz Tango-54802d8343dcb710ced4d009995a8cc796915039.zip | |
Added password encryption.
Core version 1.0.0.1
Machine Studio version 1.0.0.4
Added forced update to machine studio versions db.
Removed pubxml files from gitignore.
Implemented a publish profile for machine studio update service.
Worked on twine.local IIS & FTP !! :(
Implemented virtual host names for publish and download (MS versions) FTP sites.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Update')
2 files changed, 5 insertions, 2 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Update/UpdateServiceHelper.cs b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Update/UpdateServiceHelper.cs index 2194ec5cf..067e4470d 100644 --- a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Update/UpdateServiceHelper.cs +++ b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Update/UpdateServiceHelper.cs @@ -13,8 +13,8 @@ namespace Tango.MachineStudio.Common.Update public static ChannelFactory<IMachineStudioUpdateService> GetUpdateServiceChannel() { BasicHttpBinding binding = new BasicHttpBinding(BasicHttpSecurityMode.None); - binding.ReceiveTimeout = TimeSpan.FromSeconds(20); - binding.SendTimeout = TimeSpan.FromSeconds(20); + binding.ReceiveTimeout = TimeSpan.FromSeconds(60); + binding.SendTimeout = TimeSpan.FromSeconds(60); binding.MaxBufferPoolSize = 6553600; binding.MaxBufferSize = 6553600; binding.MaxReceivedMessageSize = 6553600; diff --git a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Update/UploadVersionRequest.cs b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Update/UploadVersionRequest.cs index 71ce04f1f..18f29eda2 100644 --- a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Update/UploadVersionRequest.cs +++ b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Update/UploadVersionRequest.cs @@ -21,5 +21,8 @@ namespace Tango.MachineStudio.Common.Update [DataMember] public String Comments { get; set; } + + [DataMember] + public bool ForcedUpdate { get; set; } } } |
