summaryrefslogtreecommitdiffstats
path: root/samples/OAuthResourceServer
Commit message (Collapse)AuthorAgeFilesLines
* Updates NuGet packages.Andrew Arnott2013-10-192-4/+18
|
* Switched Channel to receiving messages via HttpRequestMessage as well.Andrew Arnott2013-03-041-0/+12
|
* C# compiler warning fixes.Andrew Arnott2013-02-101-0/+1
|
* Removes unnecessary .config settings.Andrew Arnott2013-02-091-1/+0
|
* Fixes ASP.NET controls to be async.Andrew Arnott2013-02-091-1/+4
|
* Fixed a bunch more samples.Andrew Arnott2013-01-231-32/+52
|
* Fixes up some missing references.Andrew Arnott2012-12-292-1/+2
| | | | Upgrades MVC dependency from 1.0 to 3.0, via NuGet.
* System.Net.Http references recreated using NuGet.Andrew Arnott2012-12-282-4/+11
|
* Retargets exclusively to .NET 4.5 now.Andrew Arnott2012-12-281-1/+1
|
* Added NuGet package dependency and fixed build breaks in samples.Andrew Arnott2012-09-271-0/+4
|
* I hope VS will leave me alone if I finally let this in.Andrew Arnott2012-04-241-0/+2
|
* Fixes access denial errors from OAuth 2 resource servers so they include the ↵Andrew Arnott2012-04-221-8/+7
| | | | | | required parameters in their WWW-Authenticate headers. Fixes #124
* Replaces ResourceServer.VerifyAccess with a better pattern for error handling.Andrew Arnott2012-04-211-6/+6
| | | | Fixes #122
* Migrate all samples to target .NET 4.0 and use IIS Express (where available).Andrew Arnott2012-04-022-82/+16
| | | | | | InfoCardRelyingParty sample left out because it seems to cause input validation trouble. Fixes #108
* Let Dev11 dirty project files.Andrew Arnott2012-03-311-3/+5
|
* Migrated to Dev11 project files. They should all open in Dev10 still ↵Andrew Arnott2012-03-311-2/+9
| | | | | | | | (except the new .sqlproj). This reverts commit a5e59982c1b66ebabd4c6436d4d3d177d2440649. Fixes #96
* Revert "Migrated to Dev11 project files. They should all open in Dev10 ↵Andrew Arnott2012-03-301-9/+2
| | | | | | | still (except the new .sqlproj)." This reverts commit dc59bdbc51fce4ad19cb41e5ca610915c2e99789, reversing changes made to e5b8e2e4bd925ef6967c264644e4d67749b5b3de.
* Merged v4.0Andrew Arnott2012-03-301-1/+1
|\
| * Adjusted OAuth 2.0 resource server's port number so as to not conflict with ↵Andrew Arnott2012-03-221-1/+1
| | | | | | | | OAuth 1.0 service provider sample.
* | Merge branch 'v4.0' into dev11Andrew Arnott2012-03-212-1/+2
|\ \ | |/ | | | | | | Conflicts: src/DotNetOpenAuth.sln
| * HttpRequestInfo ctors are now internal, and publicly we have staticAndrew Arnott2012-03-051-1/+1
| | | | | | | | factory methods that return HttpRequestBase instances.
| * Replaced API requirements for HttpRequestInfo with HttpRequestBase (new in ↵Andrew Arnott2012-03-051-0/+1
| | | | | | | | | | | | .NET 3.5 SP1). This makes us more friendly to MVC as well as mock-based unit testing.
* | Project compatibility upgrades for Dev11.Andrew Arnott2012-02-241-2/+9
|/
* Fixed references to old DNOA.Messaging assembly in .config files.Andrew Arnott2012-01-291-3/+3
|
* Renamed assembly DotNetOpenAuth.Messaging(.UI) to DotNetOpenAuth.Core(.UI)Andrew Arnott2012-01-121-2/+2
|
* Fixed .config files to refer to the DNOA config types explicitly. This fixed ↵Andrew Arnott2011-10-091-5/+5
| | | | the OpenIdOfflineProvider WPF sample.
* Fixed web.config files.Andrew Arnott2011-09-281-1/+6
|
* Fixed a bunch of ASPX references to the now absent dotnetopenauth.dll assembly.Andrew Arnott2011-09-201-1/+1
| | | | <%@ Register Assembly="DotNetOpenAuth
* Samples now build.Andrew Arnott2011-08-021-0/+4
|
* Fixed compile errors in samples.Andrew Arnott2011-07-101-0/+10
|
* First pass at dividing DotNetOpenAuth features into separate assemblies.Andrew Arnott2011-07-011-6/+1
| | | | Nothing compiles at this point.
* Finished implicit grant sample. Yay.Andrew Arnott2011-06-214-4/+13
|
* Fixed static field initialization.Andrew Arnott2011-04-072-28/+11
|
* Fixed non-thread-safe use of RsaCryptoServiceProvider instances.Andrew Arnott2011-04-071-9/+26
|
* Replaced OAuth2 API demands for RSAParameters with demands for ↵Andrew Arnott2011-04-062-2/+23
| | | | | | | | RSACryptoServiceProvider. This allows for servers that have non-exportable private keys to still use those private keys for signing and decryption. Closes #16
* Merge branch 'v3.4' into oauth2Andrew Arnott2011-04-061-1/+1
| | | | | | | Conflicts: projecttemplates/RelyingPartyLogic/OAuthAuthorizationManager.cs samples/DotNetOpenAuth.ApplicationBlock/DotNetOpenAuth.ApplicationBlock.csproj samples/OAuthResourceServer/Code/OAuthAuthorizationManager.cs
* Replaced WCF "OriginalHttpRequestUri" property with simple Via.Andrew Arnott2010-12-251-1/+1
| | | | Thanks to Jamie Mutton for suggesting this.
* Removed database component from the Resource Server sample.Andrew Arnott2010-08-1110-668/+42
|
* Non-functional cleanup.Andrew Arnott2010-08-111-2/+2
|
* Fixed sample release compilation.Andrew Arnott2010-08-011-1/+1
|
* Now StyleCop clean.Andrew Arnott2010-08-011-31/+33
|
* The OAuthClient, OAuthResourceServer and OAuthAuthorizationServer samples ↵Andrew Arnott2010-08-011-2/+2
| | | | now work!
* Split the OAuthServiceProvider sample into two samples: ↵Andrew Arnott2010-07-3127-0/+1422
OAuthAuthorizationServer and OAuthResourceServer. Renamed OAuthConsumer to OAuthClient.