Tagged Questions
0
votes
0answers
40 views
How redirection works by specifying the Redirection URL in APIs that implements OAuth?
Well I am very new to the API world...
I need to find out that how the logic of redirection is implemented in API methods that implements OAuth to get the Access Token. What they simply do is that ...
0
votes
1answer
60 views
How does a WCF service know what certificate to use to decrypt an incoming security token?
I'm implementing a WCF service using .NET 4.5 and token-based security. On the client side, I'm calling myfact.CreateChannelWithIssuedToken() with a token previously retrieved from an STS, when I use ...
0
votes
3answers
550 views
how to generate a unique token which expires after 24 hours?
I have a WCF Webservice which checks if the user is valid.
If the user is valid I want to generate a token which expires after 24 hours.
public bool authenticateUserManual(string userName, string ...
1
vote
1answer
114 views
How to process SWT Token from ACS-hosted login page
I've set up a ACS domain with a Relaying Party to Authenticate a WCF Service. On my client (website), I want to link to the Hosted Login Page that ACS provides for my Relaying Party. I have the ...
1
vote
1answer
178 views
WCF service secured with WIF token needs public method
I have a WCF service hosted on a single endpoint with <ws2007FederationHttpBinding>. The service is secured using WIF tokens.
The service has one method void IsOnline() to determine the ...
0
votes
0answers
251 views
Secure Token Service with custom credential store
I've been searching round the net for a few days now for a guide to setting up a Windows Identity Foundation Security Token Service that specifically uses a username and password to authenticate the ...
2
votes
1answer
284 views
Security Token Service (STS) Over HTTPS
I've created a new WCF Security Token Service in visual studio which runs fine over http.
I'm trying to configure it now to run over https. I've changed the directory secruity in IIS to require SSL.
...
0
votes
1answer
212 views
How to make my HttpModule invoked only for Rest Service calls
I have a WCF Service application, in which I have some Rest Services and some conventional WCF services.
I have added a HttpModule to intercept the service calls to the Rest service and verify the ...
0
votes
1answer
337 views
Active WCF STS from scratch to end
I 've a problem with using WIF to secure WCF services. I just can't make it work.
I've read so many things about it in so many places, but that are not official documentation nor complete, that i ...
1
vote
2answers
451 views
How to secure the wcf web service with the use of ACS(Azure)
Would like to know how I can enable my wcf web service to provide encryption and authenication? Currently, my web service is connected to Azure(ACS) and ask the identity provider for authentication ...
3
votes
2answers
857 views
How to implement a Security token in a WCF soap response?
I am implementing an API from a bank and they require a security token to be provided. In the header of every soap message there is something which looks as follows:
<soapenv:Header>
...
0
votes
2answers
2k views
WCF custom authentication - Token
I'm trying to find a standard solution in WCF for the following scenario:
I have 2 services. Service1 wants to send a request to service2. I want that service1 will send credentials in order to ...
2
votes
1answer
145 views
Modifing CheckAccessCore(ctx) to permit WCF Help pages w/o authentication
I need to apply a different set of security policies to the "Help" urls on a WCF service. How can I get the full URL of the WCF service.. namely Session or Session.svc?
...
0
votes
1answer
246 views
WCF-based federated security in a service-oriented setup
So i have the following scenario:
I have a WPF-application which includes a login-box.
Users enter credentials, which is used to get a security token from a SecurityTokenService (STS).
This token is ...
1
vote
1answer
497 views
WCF SAML 1.1 Client Issue
Here is the scenario:
1) WCF client calls STS requesting a SAML token via a RST/Issue request
2) STS responds with RSTRC/IssueFinal placing the SAML token into the response header
3) WCF client ...
0
votes
1answer
221 views
WCF authorization token with mixed clients
I am working on some WCF services for an application that are not only consumed by our web app but would also be consumable from our clients internal applications. Since we will not know what ...
2
votes
1answer
651 views
Wif secured WCF service, caching tokens - async wcf method loses identity
I have a wcf service that is secured using WIF. I'm implementing token caching on the client (a website), as described in Travis Spencer's blog here:
...
1
vote
2answers
410 views
WCF Endpoint routing
Guys, how to route inbound message between different endpoints.
I need to expose the single endpoint that could accept different credentials. I guess, solve this by intercept the incoming message and ...
0
votes
1answer
507 views
WCF Emulate the Salesforce.com login service
How would I accomplish what Salesforce.com does for logging in with WCF? I would like to have an authentication service that returns a token on a correct login. Then, each set of service calls would ...
2
votes
1answer
2k views
Exception Security Context token in WCF
I'm using Service WCF, and I get the following error:
"The security context token is expired or is not valid. The message was not processed."
Client config
<endpoint ...
10
votes
1answer
6k views
WCF how to pass token for authentication?
I have a WCF service which would like to support basicHttpBinding and webHttpBinding. When the client successfully login, server will generate a token for client to pass to server on all the request ...
0
votes
1answer
708 views
Issued Token Authentication over HTTP
Is it possible to do Issued Token authentication over HTTP?
The scenario that we are faced with is an HTTPS request from client to server. Authentication is performed here and a token is issued. We ...
2
votes
1answer
879 views
Easiest method to use a client-generated token for WCF authentication
(I tried searching, but couldn't find any truly helpful links.)
We are implementing a set of WCF services. What I would like to do in these services is have the clients (which will be trusted ...
2
votes
1answer
2k views
WCF services: passing a token to validate a subscription and get database info
I'm creating a smart client application using .NET 3.5. A Winforms client connecting through WCF services to retrieve data from SQL Server 2008. I need to pass a username/password (encrypted and over ...
4
votes
1answer
2k views
Token-Based Authentication in WCF
I am creating a website which will contain both ASP.NET pages and a Flash applet. I want to encapsulate my business logic in a WCF service which will be exposed through two endpoints: One ...
0
votes
2answers
801 views
WCF: The incoming message was signed with a token which was different fron what used to encrypt the body. This was not expected
For what ever reason, a critical third peaty webservice functions like this. I can connect, send a request, and receive valid response, but i still get the error message. This only happens on one ...
15
votes
1answer
16k views
WCF Authentication with custom ClientCredentials: What is the clientCredentialType to use?
I had to ditch the basic WCF UserName/Pwd security and implement my own custom client credentials to hold some more info beyond what is provided by default.
I worked throughthis MSDN article, but I'm ...
