Windows 10: wcf ssl3 and windows 11

Discus and support wcf ssl3 and windows 11 in Windows 10 Gaming to solve the problem; Our customer has an installation of about 70 wcf services running sslStreamSecurity sslProtocols="Ssl3" on operating systems W2012 to W2022. He also... Discussion in 'Windows 10 Gaming' started by David Sisques, Jun 21, 2023.

  1. wcf ssl3 and windows 11


    Our customer has an installation of about 70 wcf services running sslStreamSecurity sslProtocols="Ssl3" on operating systems W2012 to W2022. He also has about 300 wpf clients connecting to these services.In addition, the certificates used in the system have md5 algorithm.Everything works over a private network, so the privacy of communications is not the most important thing.Neither Ssl3.0 nor md5 works on Windows 11 and it is a big problem. We don't know how to deal with the upgrade of the operating systems.Is there any way to force Windows 11 to use Ssl3 and md5 certificates?If not, how can

    :)
     
    David Sisques, Jun 21, 2023
    #1

  2. a call from WCF Client using a distributed transaction on one workstaion blocks all WCF Clients that use the same WCF Service from different workstation for an extended period of time?

    Aside from removing the TransactionScope created on the WCF client (and effectively taking msdtc out of the picture), Is there an alternate way to avoid the excessively long WCF-service-wide hang when a single workstation hosting
    the WCF client is misconfigured (or experiencing communications issues)?

    We have a simple WCF service implemented using C#, and a simple WCF Client which creates TransactionScope before invoking the WCF service proxy.

    Both work fine as far as concurrency goes if Windows Firewall allows TCP communication from/to msdtc.exe thru firewall. However if a single workstation is misconfigured (i.e. has firewall enabled, and has an Inbound Rule for TCP for msdtc.exe disabled),
    its attempt to communicate with the service will block all other WCF clients (which are properly configured) from communicating with the WCF Service for at least 41 seconds (given the currect settings for TCP retransmissions), despite us using much shorter
    timeout settings for the WCF binding as well as for the TransactionScope timeout.

    The WCF service is decorated with

    [System.ServiceModel.ServiceBehavior(

    InstanceContextMode = System.ServiceModel.InstanceContextMode.PerCall,

    ReleaseServiceInstanceOnTransactionComplete = false,

    ConcurrencyMode = System.ServiceModel.ConcurrencyMode.Multiple,

    IncludeExceptionDetailInFaults = false,

    TransactionTimeout = "00:00:13"

    )

    The WCF service has a single operation contract, decorated with [System.ServiceModel.TransactionFlow(System.ServiceModel.TransactionFlowOption.Mandatory)] in the class interface.In the class itself, the same method is decorated with [System.ServiceModel.OperationBehavior(TransactionScopeRequired
    = true)].

    The WCF service is hosted using a Windows console application which uses a netTcpBinding configured with transactionFlow="true" transactionProtocol="OleTransactions" sendTimeout="00:00:20" receiveTimeout="00:00:20"

    The service is accessed from a Windows Forms client application configured with the following values for its netTcpBinding:

    transactionFlow="true"

    transactionProtocol="OleTransactions"

    transferMode="Streamed"

    sendTimeout="00:00:20"

    receiveTimeout="00:00:20"
     
    Jiri S Wpg, Jun 21, 2023
    #2
  3. RajeshJIL Win User
    Windows WCF Service Concurrency

    Hi,

    I am rajesh from chennai, We have created WCF Service and hosted as Windows Service, the service don't response on concurrency mode (we have added concurrency mode as multiple and percall instance). when limited users are accessing the service it works fine,
    but on multiple access (more than 50 users) , the service don't respond and after restarting service, it works. can you please suggest any settings have been missed out / misconfigured.
     
    RajeshJIL, Jun 21, 2023
    #3
  4. wcf ssl3 and windows 11

    WCF rest service template

    How do you add the WCF rest Service template to Visual Studio 2015?
     
    Mike Bullen, Jun 21, 2023
    #4
Thema:

wcf ssl3 and windows 11

Loading...
  1. wcf ssl3 and windows 11 - Similar Threads - wcf ssl3

  2. wcf ssl3 and windows 11

    in Windows 10 Software and Apps
    wcf ssl3 and windows 11: Our customer has an installation of about 70 wcf services running sslStreamSecurity sslProtocols="Ssl3" on operating systems W2012 to W2022. He also has about 300 wpf clients connecting to these services.In addition, the certificates used in the system have md5...
  3. Migrate WCF to .Net Core API

    in Windows 10 Gaming
    Migrate WCF to .Net Core API: Hi,The question is regarding - Whether it is required to move WCF project to .Net Core WEB API?We have a product written in WCF and with good about of business-rules are written into it. Though WCF technology is quite older and is Microsoft putting up the end-of-life/service?...
  4. Migrate WCF to .Net Core API

    in Windows 10 Software and Apps
    Migrate WCF to .Net Core API: Hi,The question is regarding - Whether it is required to move WCF project to .Net Core WEB API?We have a product written in WCF and with good about of business-rules are written into it. Though WCF technology is quite older and is Microsoft putting up the end-of-life/service?...
  5. After applying windows updateKB4565627, Unable to communicate the WCF service from the...

    in AntiVirus, Firewalls and System Security
    After applying windows updateKB4565627, Unable to communicate the WCF service from the...: Hello Team, We have a WCF service that is hosted at the production server as well as my local machine, Previously I was able to communicate my local WCF service through our Web applicationMVC over the net.tcp as well as the http, but after the installing the update of...
  6. MSMQ send message in remote machine using WCF without adding Anonymous logon user

    in Windows 10 Customization
    MSMQ send message in remote machine using WCF without adding Anonymous logon user: Hi Team, I am trying to send a message to an MSMQ using WCF that is in the different machine but I am getting error in the dead letter of Access denied. I am using NetMSMQBinding and tried with both modes none & messageCredentialType WindowsDomain. It's working fine when...
  7. WCF Tracing File deletion

    in AntiVirus, Firewalls and System Security
    WCF Tracing File deletion: There is a WCF Tracing file on one of our servers in C:\ProgramData that is 44GB. It was not set up by me, but by a predecessor, I assume. My lead IT Admin and I are searching for answers as to whether or not we can delete that file and not screw up the server. We both...