wcf-security

WCF behind a public reverse proxy which is used for traffic encryption

北城余情 提交于 2021-02-07 06:47:14
问题 I have a Silverlight application that connects to a WCF service. Under the basic configuration I am used to, there's no problem connecting this application to its corresponding WCF service. However, recently, one of my clients started using an Apache reverse proxy. This proxy is the public server and it's only used to encrypt HTTP traffic via SSL (HTTPS) going between the client and it. This proxy passes all traffic from it to the actual web server that hosts my application. The traffic

One way SSL is one way encryption?

纵然是瞬间 提交于 2021-02-06 19:18:21
问题 If one way SSL is used (Server Certificate authentication) then data sent from client gets encrypted using Public key of the server certificate. So privacy protection is available for data sent from client. My questions are Does this mean that in One way SSL data sent from Server to client is not encrypted and sent as plain text ? For both server to client and client to server communications the data/message is not signed and so tamper protection or data integrity is not assured. Are there

One way SSL is one way encryption?

烈酒焚心 提交于 2021-02-06 19:16:19
问题 If one way SSL is used (Server Certificate authentication) then data sent from client gets encrypted using Public key of the server certificate. So privacy protection is available for data sent from client. My questions are Does this mean that in One way SSL data sent from Server to client is not encrypted and sent as plain text ? For both server to client and client to server communications the data/message is not signed and so tamper protection or data integrity is not assured. Are there

One way SSL is one way encryption?

妖精的绣舞 提交于 2021-02-06 19:12:40
问题 If one way SSL is used (Server Certificate authentication) then data sent from client gets encrypted using Public key of the server certificate. So privacy protection is available for data sent from client. My questions are Does this mean that in One way SSL data sent from Server to client is not encrypted and sent as plain text ? For both server to client and client to server communications the data/message is not signed and so tamper protection or data integrity is not assured. Are there

One way SSL is one way encryption?

好久不见. 提交于 2021-02-06 19:10:59
问题 If one way SSL is used (Server Certificate authentication) then data sent from client gets encrypted using Public key of the server certificate. So privacy protection is available for data sent from client. My questions are Does this mean that in One way SSL data sent from Server to client is not encrypted and sent as plain text ? For both server to client and client to server communications the data/message is not signed and so tamper protection or data integrity is not assured. Are there

One way SSL is one way encryption?

此生再无相见时 提交于 2021-02-06 19:08:20
问题 If one way SSL is used (Server Certificate authentication) then data sent from client gets encrypted using Public key of the server certificate. So privacy protection is available for data sent from client. My questions are Does this mean that in One way SSL data sent from Server to client is not encrypted and sent as plain text ? For both server to client and client to server communications the data/message is not signed and so tamper protection or data integrity is not assured. Are there

How to disable credentials input for HTTPS call to my WCF hosted in windows service

耗尽温柔 提交于 2021-01-29 10:53:03
问题 I'm just creating my first WCF project, so I have a lot of deficiencies in knowledge in this field. My problem is that when I'm calling my WCF url in web browser, I have to enter the credentials but I cannot even use my domain name and password, but I have to choose my personal chip card certificate and enter it's password. After that, everything work like a charm. My final product should be installed on every user workstation in our domain for IT operations purposes only. So there will be

WCF Service TLS 1.2 Enforcement

不想你离开。 提交于 2021-01-29 08:45:06
问题 We are trying to enforce TLS 1.2 in our WCF Service. We have our WCF Service hosted on IIS on our VM Boxes. We are not sure how to disable TLS 1.0 and TLS 1.1 for our service. We have tried the following approach: Configuration change in our WCF Service (Server side) and (client side)** – For the client side, we added the following code in our main method – Remove insecure protocols (SSL3, TLS 1.0, TLS 1.1) ServicePointManager.SecurityProtocol &= ~SecurityProtocolType.Ssl3;

Configuring WCF client binding to use X509 certificate in dotnet core 2.2

蹲街弑〆低调 提交于 2021-01-27 07:39:09
问题 I'm trying to convert an old WCF client to dotnet core. I successfully generated my proxies from the wsdl and have been trying to configure them so I can successfully call the endpoint. It appears, based on some googling, that under dotnet core I need to configure my WCF client from code. Here's the WCF configuration section from the web.config of the old application: <system.serviceModel> <serviceHostingEnvironment aspNetCompatibilityEnabled="true" /> <behaviors> <endpointBehaviors>

Configuring WCF client binding to use X509 certificate in dotnet core 2.2

为君一笑 提交于 2021-01-27 07:34:43
问题 I'm trying to convert an old WCF client to dotnet core. I successfully generated my proxies from the wsdl and have been trying to configure them so I can successfully call the endpoint. It appears, based on some googling, that under dotnet core I need to configure my WCF client from code. Here's the WCF configuration section from the web.config of the old application: <system.serviceModel> <serviceHostingEnvironment aspNetCompatibilityEnabled="true" /> <behaviors> <endpointBehaviors>