최근에 꽤 많은 일이 벌어지고 있습니다.WCF에서 이름으로 DispatchOperation 찾기 GET 요청에 대한 확장 성
WCF에서 사용자 지정 권한 부여 관리자를 구현했으며 먼저 이름으로 작업을 가져와야합니다. WCF 서비스는 REST 및 SOAP 끝점에 노출되어 있으므로 인증 프로세스를 계속 진행하는 데 필요한 정보를 여러 곳에서 확인해야합니다.
모든 것이 정상적으로 작동하며 약 15-20 개의 서비스가 정상적으로 실행되고 있지만 최근에는 정상적인 방법으로 작업 이름을 가져올 수없는 문제가 발생했습니다.
public class AuthorizationManager : ServiceAuthorizationManager
{
private ServiceEndpoint _endpoint { get; set; }
public AuthorizationManager(ServiceEndpoint endpoint)
{
_endpoint = endpoint;
}
public override bool CheckAccess(OperationContext operationContext, ref Message message)
{
var buffer = message.CreateBufferedCopy(Int32.MaxValue);
message = buffer.CreateMessage();
var originalMessage = buffer.CreateMessage();
/*Step 1 - Pull Operation*/
string action = operationContext.IncomingMessageHeaders.Action ?? OperationContext.Current.IncomingMessageProperties["HttpOperationName"] as string;
DispatchOperation operation = operationContext.EndpointDispatcher.DispatchRuntime.Operations.FirstOrDefault(o => o.Name == action || o.Action == action);
Type hostType = operationContext.Host.Description.ServiceType;
var operationInfo = hostType.GetMethod(operation.Name);
/*Continue here using operationInfo - but operation is null*/
}
}
이 모두 REST와 SOAP 엔드 포인트에 대한 올바른 작동을 당겨 유용했다,하지만 지금은 행동이 비어 :
작업을 당겨에 대한 코드는 다음과 같다. ,
[ServiceContract]
public interface ICollectionService
{
[OperationContract]
[WebGet]
CollectionResponse GetCollection()
}
모든 꽤 표준 것 같습니다이 어떤 다르게 내 다른 서비스에 비해 행동 왜 그냥 알아낼 수 없습니다 :
서비스의 정의는 다음과 같다.
그런 다음 질문에 답을 표시하십시오. – ErnieL