Commit Contribution from Helicon
Includes: - complete re-write of Web Application Gallery - Addition of Web PI Installer in Server module
This commit is contained in:
parent
3b81883a25
commit
a2beec7fe4
80 changed files with 9236 additions and 1762 deletions
|
@ -38,6 +38,7 @@ using Microsoft.Web.Services3;
|
|||
using Microsoft.Web.Services3.Design;
|
||||
using Microsoft.Web.Services3.Security;
|
||||
using Microsoft.Web.Services3.Security.Tokens;
|
||||
using WebSecurity=Microsoft.Web.Services3.Security.Security;
|
||||
|
||||
namespace WebsitePanel.Server
|
||||
{
|
||||
|
@ -105,7 +106,7 @@ namespace WebsitePanel.Server
|
|||
this.filterContext = filterContext;
|
||||
}
|
||||
|
||||
public override void ValidateMessageSecurity(SoapEnvelope envelope, Security security)
|
||||
public override void ValidateMessageSecurity(SoapEnvelope envelope, WebSecurity security)
|
||||
{
|
||||
if (!ServerConfiguration.Security.SecurityEnabled)
|
||||
return;
|
||||
|
@ -145,7 +146,7 @@ namespace WebsitePanel.Server
|
|||
throw new SecurityFault("Message did not meet security requirements.");
|
||||
}
|
||||
|
||||
private bool CheckSignature(SoapEnvelope envelope, Security security, MessageSignature signature)
|
||||
private bool CheckSignature(SoapEnvelope envelope, WebSecurity security, MessageSignature signature)
|
||||
{
|
||||
//
|
||||
// Now verify which parts of the message were actually signed.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue