Tagged Questions
The wcf-authentication tag has no wiki summary.
13
votes
3answers
15k views
WCF: The request for security token could not be satisfied because authentication failed
I have written a very simple WCF Service that sends and receives messages. I have tested the app through the VS 2008 default web server host and everything works fine. But when I deploy the WCF ...
6
votes
2answers
10k views
Connect with WCF to a WebService authenticated with username/password
I created a proxy of a Web Service with Visual Studio 2008, and it created for me the following entry in the app.config:
<system.serviceModel>
<bindings>
...
5
votes
1answer
190 views
WCF and Silverlight 4.0 in N-Tier App : authenticate calls to the service
I have an N-Tier app which built as follows:
On the server side in IIS7 is sitting an ASP.Net Application that exposes methods on a WCF Service. Those methods talk to the DB using EF4. Clients written ...
5
votes
1answer
204 views
Authenticating to a WCF service
There seems to be a plethora of resources out there on how to do this, but I haven't really been able to find anything to exactly do what I want to do. I'm trying to create a WCF web service that will ...
3
votes
1answer
658 views
How do I pass username/password credentials from php client to self-hosted wcf service?
I have a self-hosted wcf service that just adds 2 numbers and returns the value. It works fine, but I am not sure how I can send the username and password through the php client, so it will validate ...
1
vote
1answer
63 views
Adding Security for Custom WCF MessageHeaders in Silverlight platform
How can we add security for custom message headers of WCF Service in Silverlight service.
For example, I want to pass a important (authenticated) string value ( credentials) through WCF Message ...
1
vote
1answer
188 views
wcf Authentication Token Implementation - How to do
I need to implement token authentication between the user of my wcf services and my server.
1- User will request a token with his username, nickname and password from server and server will respond ...
1
vote
1answer
153 views
Reading ClientCredentials from SOAP Request body node and verifying it against a Custom Validator?
I have a method GetColors which takes a GetColorIdsRQ as a parameter and returns a GetColorIdsRS. GetColorIdsRQ is the SOAP Request and GetColorIdsRS is the SOAP Resposne. Here are the ...
1
vote
0answers
353 views
Authenticate a IIS Hosted WCF Service from a PHP Soap Client?
I have a wcf service that is hosted in IIS 7. I have a php soap client that I want to use to access this service. It works fine with no security, but I want to be able to pass the username and ...
1
vote
1answer
129 views
How do I capture the username and password for a WCF Service if I am not writing the client(s)?
I am writing a WCF Service that will require a username and password authentication, however, I am not responsible for writing the clients to access the service, so I am not sure how I can access the ...
1
vote
2answers
857 views
WCF, Certificate Authentication - Common Errors and Confusing Arguments
I am trying to setup a WCF service to use a Certificate for Authenticating the client. I have read tons of posts on how to create the certificate, and I have been able to do so (finally).
I am ...
1
vote
3answers
6k views
How to authenticate in WCF services in BasicHttpBinding?
I am developing WCF services with basicHttpBinding, these services should be accessible using .net 1.1 & .net 2.0, for this purpose I am using basicHttpBinding. In old ASMX web services I assed ...
1
vote
1answer
553 views
WCF ServiceSecurityContext Storage right for custom data?
I have a WCF application that is using Windows Authentication. So a Windows Principal object is what I will find in the System.Threading.Thread.CurrentPrincipal() property. That's is all fine. ...
0
votes
1answer
93 views
Passing windows identity to WCF from ASP.NET
I have a WCF service hosted in IIS with integrated windows authentication enabled and anonymous authentication disabled. When I try and call this service from ASP.NET, I'm getting the following ...
0
votes
0answers
31 views
wcf-authentication ,unix
I am trying to open a file in remote unix system in the same network using WCF. I am running the WCF under network account. While reading the file in unix I want my application to use windows ...
0
votes
1answer
45 views
Custom Token management in WCf
I have a webservice which passes raw messages using Message in WCF, I create the header
MessageHeader.CreateHeader , now i want to implement a custom token management system , so that i will pass ...
0
votes
1answer
146 views
WSHttpBinding binding, client authentication
i am new to wcf and using wshttpbinding ,but i want to remove the user name and password form the service client (which i have to pass),
my client code is
RServiceClient serviceClient = new ...
0
votes
2answers
67 views
How do I propogate Windows Identity without using delegation in WCF?
I need to propagate the Windows Identity of the current user across two service calls.
Service A (which runs under integrated authentication) calls Service B (which also runs under integrated ...
0
votes
2answers
110 views
WCF Type 'System.CodeDom.Compiler.GeneratedCodeAttribute' is not defined
I am following this tutorial that shows how to implement a WCF authentication Service. I have done exactly step by step as detailed. But after adding all the proxy classes when I try to build the ...
0
votes
1answer
370 views
Sending login and password through PHP Soap Client doesn't get picked up by WCF Sevice Host?
I am instantiating a PHP Soap Client like this:
$client = new SoapClient('http://localhost:8731/MathService?wsdl',array(
'login' => "test2", 'password' => "test"));
When I do this above, the ...
0
votes
0answers
242 views
Extract Soap Header variables in wcf c# to authenticate user?
I am creating the following soap request in a php soap client. To generate the UserCredentials header section, I am doing the following in my php script:
$header = new SoapHeader(
...
0
votes
1answer
475 views
Silverlight 4 raise event on forms authentication cookie expiration
I am stumped on how to fire an event in silverlight when a forms authentication cookie expires. I would like to redirect the application to a login screen immediately. I understand I can wait until ...