Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

24
votes
1answer
498 views

Using a shared cache in a Web farm environment for detecting replay attacks in WCF

I'm trying to figure out how to implement a replay attack detection mechanism with WCF in a web farm scenario. WCF provides such detection mechanism by using a nonce cache. Correct me if I'm wrong, ...
23
votes
2answers
9k views

What is the difference between WCF Service application and WCF Service library?

I am developing WCF web service and I used WCF Service application to do that.Is that creating "WCF Service application" fulfill this requirement. and above all what are the advantage of creating ...
22
votes
2answers
1k views

WCF Security - A list of what I dont understand

I'm going around in circles with regards to WCF and security so i'm just going to shove a load of questions here and hope someone can help me gain a clear picture. Can someone please give me a ...
12
votes
5answers
947 views

WCF Transport vs Message

i was reading about WCF security implementations and found out that there are 2 types of security: Transport Mode and Message Mode (or both) If i used HTTPS for Transport Mode, is it more secured ...
9
votes
2answers
10k views

Passing FormsAuthentication cookie to a WCF service

I have a website that talks to a remote WCF web service. Both use the same custom FormsAuthentication Provider. I would like to authenticate with the WCF service impersonating the user currently ...
8
votes
3answers
1k views

What's the difference between retrieving WindowsPrincipal from WindowsIdentity and Thread.CurrentPrincipal?

I am trying to work out why attribute based security isn't working as I'd expect in WCF and I suspect it might have something to do with the following: ...
7
votes
1answer
1k views

WCFTestClient - how can I add username and pass?

I'm using the WCFTestClient to debug a service. This normally works like a charm. This particular service is using SSL and I need to pass the user name and password. I can right click and edit the ...
7
votes
2answers
2k views

How to use custom binding in WCF and keep message security mode with username client credentials?

I have WCF service accessible over Internet which uses wsHttpBinding with message security mode and username client credentials. <bindings> <wsHttpBinding> <binding ...
7
votes
6answers
1k views

How Do I Avoid SSL Certificates during Development for a WCF endpoint that will be secured during Production

We are developing a number of WCF services. requests will cross a domain boundry; that is, the clients are running in one domain and the servers handling the requests are in a different (production) ...
6
votes
3answers
713 views

WCF 4.0 REST username password authentication

I have been struggling with username/password authentication/authorization in a WCF 4.0 RESTfull service using the ASP.Net membership/role providers. Having spent two days trying to find something ...
6
votes
2answers
648 views

How to inject an object into a WCF validator class

Following up on using dependency injection for WCF services, is there any way of using DI for WCF validators, so that one could do this: public class DIValidator : UserNamePasswordValidator { ...
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> ...
6
votes
3answers
1k views

WCF, Security and Certificates

I have a client/server WCF application that needs some sort of user authentication against a database. The application (both client and server together) is being developed to be sold to dozens of ...
5
votes
1answer
159 views

Authentication failed while calling WCF service from ASP.NET

Platform: VS 2008, .NET 3.5, C#, Oracle 11g I've created a WCF service which takes some data elements and then inserts them into a database table and returns an integer. I've also created a small ...
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
120 views

How can I ensure that IsInRole checks are not using cached credentials

I have a WPF client that connects to a WCF service, and I want to lock down some of the functionality so that only certain users can perform certain actions. The WCF service impersonates the client ...
5
votes
0answers
364 views

soapUI With WCF Message Security

I am trying to configure my WCF (.NET 4.0) service so that it can be tested using soapUI. I am using wsHttpBinding with message security. My goal is to expose the service on a public test endpoint and ...
5
votes
2answers
149 views

How to get the Username and Password in the service side of a WCF call?

When I supply credentials at client with following code: myChannelFactory.Credentials.UserName.UserName = "username"; myChannelFactory.Credentials.UserName.Password = "password"; Then on server ...
5
votes
2answers
365 views

WCF/ASP.NET Authentication

My scenario is a 3-Tier app where the data tier is a SQL Server database, the middle tier is a WCF application hosted in a Windows Service and finally the presentation is an Asp.Net MVC application. ...
5
votes
2answers
482 views

Why doesn't my WCF endpoint throw a Max Clock Skew exception?

With almost all of the (secure) WCF service endpoints in my application, if the client's system clock is set too far in the future or past, I get an exception from WCFs Clock Skew mechanism (described ...
5
votes
1answer
158 views

WCF - Third party application authentication

I am currently working on an iPhone application. This application calls back to WCF services exposed through my ASP.NET web application. Currently, my WCF operation looks like the following: ...
5
votes
2answers
607 views

Can i view the raw request made by soap wcf call

I am making a SOAP request using WCF to a third party service. The service requires that I sign the request, which I think I am doing but I get the error: Could not create SSL/TLS secure channel So ...
5
votes
2answers
241 views

How to save user object in WCF

I have a service that uses a custom "UserNamePasswordValidator" and need to save the validated user object to be able to retrieve it later in the service. How can I do this? Or how can I access the ...
5
votes
1answer
3k views

How to programmatically turn off security in WCF

I've been working with WCF the last two days and it was going very well with the server and client both on my development machine. Now that I am trying to do some distributed testing with the client ...
5
votes
2answers
8k views

Can not call web service with basic authentication using WCF

I've been given a web service written in Java that I'm not able to make any changes to. It requires the user authenticate with basic authentication to access any of the methods. The suggested way to ...
5
votes
7answers
15k views

Securing WCF service using basicHttpBinding which supports streaming

My question is in regards to the best (aka "least painful") way to secure access to a WCF service that is only exposed to our company's internal users. The goal is to ensure that the service is only ...
5
votes
1answer
2k views

Getting caller's hostname in WCF

I'm replacing an existing web service with a WCF service and as the first step of migration I'm going to expose an endpoint with BasicHttpBinding until the client is upgraded later on in the year. ...
4
votes
1answer
108 views

Best strategy to pass a token / cookie to a WCF service?

We are building a web service with WCF on .net 4.0. The service will be used mainly by an ASP.net MVC frontend, but will also be used by a .net Windows App. The basic username/password auth provided ...
4
votes
3answers
322 views

Open Source Alternatives to WCF

Could you tell me the open source alternatives to WCF?? I'm a newbie and just started using WCF. I wanted to know about the alternatives that are open source too. Also, what makes them better ...
4
votes
1answer
321 views

Where should I read my username and password for my WCF Service?

I have a WPF application that has just one button. When the button is clicked, all it does is open the service. Here is the code: private void button1_Click(object sender, RoutedEventArgs e) { ...
4
votes
2answers
3k views

Correct way communicate WSSE Usernametoken for SOAP webservice

I am attempting to consume a web service through it's corresponding wsdl. This service is dependent upon authentication conforming to Web Services Security Basic Security Profile 1.0 including that ...
4
votes
2answers
235 views

SSL and WCF Transport Security

I have an IIS-hosted WCF service which is configured to use basicHttpBinding with transport security. I have configured IIS with a certificate and I'm using an https endpoint to call the service. ...
4
votes
3answers
134 views

How do I ensure authentic silverlight clients are calling my azure services

How can I be confident that only our silverlight applications are calling our azure services? The silverlight client will need to have a user authenticated and have the correct permissions to perform ...
4
votes
5answers
173 views

How to put a password on a WCF Service?

I'm working on a WCF Service that is called by our other softwars to send bug information to our database. The problem is that, since it is an online service, it isn't safe, so I was wondering if it's ...
4
votes
1answer
6k views

WCF client endpoint identity - configuration question

I'm having a strange situation here. I got it working, but I don't understand why. Situation is as follows: There is a WCF service which my application (a website) has to call. The WCF service ...
4
votes
1answer
1k views

Using ASP.NET Membership Provider authentincation in a WCF service

Is there a way to use the same username and password from the membership provider for a WCF service authentication? if so, which binding does it supports? I need to extract a profile variable from the ...
4
votes
4answers
3k views

WCF Deployment to IIS 6 Results in 403 Permission Error

I've never deployed a WCF service to IIS 6 before. I've got a service that I'm deploying to IIS 6 by using the default configuration as part of the WCF project. I since simplified the configuration ...
4
votes
4answers
835 views

How do I authenticate user between ASP.NET and WCF?

We are developing a browser based intranet application. All users have active directory account, so obvious choice would be use Integrated Windows Authentication. But there will be multiple users ...
4
votes
1answer
538 views

Architechture of service application in WCF

I need some help with the architechture of a WCF application. The will be a number of services that should be available to serve a number of different clients, e.g. ASP.Net application (JavaScript ...
4
votes
4answers
4k views

WCF Security in a Windows Service

I have a WCF service which can run as Console App and a Windows Service. I have recently copied the console app up to a W2K3 server with the following security settings: <wsHttpBinding> ...
4
votes
3answers
9k views

WCF - There was no endpoint listening at net.tcp://…/Querier.svc that could accept the message

WCF - There was no endpoint listening at net.tcp://myserver:9000/SearchQueryService/Querier.svc that could accept the message. I have the net.tcp protocol enabled on the IIS application Windows ...
4
votes
1answer
2k views

How to use System.IdentityModel in own client-server application

I've got a simple client-server application based on TcpClient/TcpListener and SslStream. Clients can authenticate themselves to the server using a X509Certificate or by sending a user name and ...
4
votes
2answers
6k views

Implementing claims-based security (WCF/ASP.NET)

After researching on the topic of claims-Based security (or a federated security model). I've been coming across many examples that use CardSpace as an example. The main article that I read that gave ...
3
votes
2answers
61 views

wcf Binding configuration and security

I'm reading a book on Wcf. I always get confused when there is topic on binding configuration. Eg. In one chapter for securing service in internet environment, author used the following code in the ...
3
votes
1answer
86 views

WCF : How to detect a session is timeout?

I write this Interface to create and terminating a session. [ServiceContract(SessionMode = SessionMode.Required)] public interface IOrdersService { [OperationContract(IsInitiating = true, ...
3
votes
1answer
113 views

WCF Security - protecting from Man in the middle attacks

I have a WCF service that uses transport and message security. How do i protect data from a malicious man-in-the-middle attack, say from a user using fiddler and allowing fiddler to Decrypt HTTPS ...
3
votes
1answer
128 views

WCF/jQuery security

I have a set of WCF services with AspNetCompatibility enabled and consume them from jQuery. My web application requires authentication. Using only logic here (as I lack enough knowledge) does that ...
3
votes
1answer
228 views

Why do i get a signature over the certificate in my soap header

I need to communicate with a soap service that supports Soap1.1 en WS Security 1.0. I have put up some code in C# that communicates with this service, but it's returning an FaultException. One of the ...
3
votes
2answers
173 views

HTTP & HTTP WCF Services

Can I have a WCF Service Project that has both HTTP (basic http binding) and HTTPS (basic http binding) bindings? For example, I would have: https://localhost:44303/ServiceA.svc ...
3
votes
1answer
234 views

How to secure a WCF restful service?

I used to deal with web services and we secured it using the credential header with soap. The calling application would need to pass a username and password in the credential header. We are now ...

1 2 3 4 5 12