Questions tagged [wcf-security]

Questions related to the authentication and authorization services for Windows Communication Foundation (WCF) applications

Windows Communication Foundation is Microsoft's implementation of the WS-* web service specifications. Its security functionality mainly deals with authentication, authorization and secure over-the-wire transmission of user credentials.

When setting up WCF Security for an application, the following parameters need to be configured:

  • The type of credential required, e.g. NTLM, plaintext, or certificate authentication
  • The security mode: transport mode (e.g. SSL), message mode (SOAP message security), or a combination of both
  • Which endpoint(s) are protected

Once a client successfully connects to an endpoint protected with WCF Security, the server application can examine the security context to determine the identity of the client and to determine its authorizations (which need to be configured separately).

1285 questions
-1
votes
1 answer

WCF Services for both Web Application and Ipad development

I am in a situation where i have wcf services and which can be consumed by both web application and ipad application. So my question is, my client needs to be authenticated with user name and password, so what is the authentication method i have to…
user757207
  • 303
  • 1
  • 3
  • 9
-1
votes
1 answer

How to authenticate/validate JWT for accessing data WCF asp.net

I came accross to work with WCF restful API's with security tokens Json Web Token (JWT). I've created registration and login (created jwt here) service for user. Now I'm unsure about how to authenticate JWT on each request of user while accessing…
Rameez Javed
  • 139
  • 3
  • 9
-1
votes
2 answers

Technology choices for LOB App with Standalone and Software-as-a-service model

Sorry in advance for the wall of text! Scenario: We're looking at what technology to choose for a LOB app that needs to support a "stand-alone" model (frontend + backend running on desktop machine), but also local server mode (backend installed on a…
Huron
  • 1,055
  • 1
  • 9
  • 16
-1
votes
1 answer

"The caller was not authenticated by the service" when using a customBinding only on machines on a domain

I wrote a WCF service hosted by IIS 6 on a server that is not part of a domain. It uses the following configuration:
madd0
  • 9,053
  • 3
  • 35
  • 62
-1
votes
1 answer

How to integrate PHP code with a WCF web service using Message Security

Good day. I want to integrate with a WCF web service with Message Security from PHP. The web service expect a certificate from the client (the PHP code) and does not require any usernames or passwords. It also uses wsHttpBinding. I have a Windows…
-1
votes
1 answer

How to connect to the web service?

I want to connect to web service which is on this adress: https://webapp2.rzzo.rs/rzzo/RzzoService?wsdl I add service reference to it in my .net 4.0 C# app. And here is my code which I used to connect to this servis: …
Naum
  • 125
  • 1
  • 3
  • 12
-1
votes
2 answers

How to pass additional data to WCF service with Windows authentification (during authentification)

I have WCF web-service with windows authentification. Binding
Sir Hally
  • 2,318
  • 3
  • 31
  • 48
-1
votes
1 answer

Distinguish between local service account and impersonated client identity in a WCF ServiceLayer

we have a web frontend written in MVC which uses SSO and Windows Authentication and this frontend connects to a Backend WCF service layer configured to run with a specific AD service account. we like this approach because the connections to the…
Davide Piras
  • 43,984
  • 10
  • 98
  • 147
-2
votes
1 answer

Windows Authentication in WCF

I am new to WCF, trying to create a .net WCF service app. i need to accept a xmldocumnet obj and username , password, do the authentication against Active directory and only allow certian role users. i cannot use IIS integrated or basic auth as some…
Natasha Thapa
  • 979
  • 4
  • 20
  • 41
-2
votes
1 answer

Message Level Security and Transport level security in the same WCF config file

I am trying to set up message level security for a WCF application that I am writing. This application already has an endpoint that is set up with transport level security. Can I set up another endpoint that has message level security? This…
SoftwareSavant
  • 9,467
  • 27
  • 121
  • 195
1 2 3
85
86