簡體   English   中英

如何在wcf數據服務中執行基於大量基於rest的url?

[英]how to execute huge rest based url in wcf data services?

我正在使用Wcf數據服務(V3)。 他們將從IOS App通過URL發送簽名。 問題是在這種情況下,有時用戶輸入長簽名會出現類似“ URL太長”的錯誤。 如何在WCF數據服務上解決此問題。

提前謝謝。

如果客戶端希望提供服務的消息很大,建議使用POST。

您可以在此處找到WCF數據服務V3中的操作指南: http : //blogs.msdn.com/b/odatateam/archive/2011/10/17/actions-in-wcf-data-services.aspx

這是在Action支持下設置WCF DS服務的快速演示:

public class Service : DataService<Context>, IServiceProvider 
{
    public static void InitializeService(DataServiceConfiguration config)
    {
        config.SetEntitySetAccessRule("*", EntitySetRights.All);
        config.SetServiceActionAccessRule("*", ServiceActionRights.Invoke);
        config.DataServiceBehavior.MaxProtocolVersion = DataServiceProtocolVersion.V3;
    }

    public object GetService(Type serviceType)
    {
        return typeof(IDataServiceActionProvider) == serviceType ? new ActionProvider() : null;
    }
}

public class ActionProvider : IDataServiceActionProvider, IDataServiceActionResolver
{
    private static List<ServiceAction> actions;

    static ActionProvider()
    {
        ServiceAction movieRateAction = new ServiceAction(
             "Action1", // name of the action 
             ResourceType.GetPrimitiveResourceType(typeof(string)), // no return type i.e. void 
             null, // no return type means we don’t need to know the ResourceSet so use null. 
             OperationParameterBindingKind.Never,
             new ServiceActionParameter[] { 
              new ServiceActionParameter("val", ResourceType.GetPrimitiveResourceType(typeof(string))) 
           }
            );
        movieRateAction.SetReadOnly();

        actions = new List<ServiceAction>() { movieRateAction };
    }

    public IEnumerable<ServiceAction> GetServiceActions(DataServiceOperationContext operationContext)
    {
        return actions;
    }

    public bool TryResolveServiceAction(DataServiceOperationContext operationContext, string serviceActionName,
                                        out ServiceAction serviceAction)
    {
        serviceAction = null;
        return false;
    }

    public IEnumerable<ServiceAction> GetServiceActionsByBindingParameterType(DataServiceOperationContext operationContext,
                                                               ResourceType bindingParameterType)
    {
        return Enumerable.Empty<ServiceAction>();
    }

    public IDataServiceInvokable CreateInvokable(DataServiceOperationContext operationContext, ServiceAction serviceAction,
                                                 object[] parameterTokens)
    {
        return new DataServiceInvokable(parameterTokens);
    }

    public bool AdvertiseServiceAction(DataServiceOperationContext operationContext, ServiceAction serviceAction, object resourceInstance, bool resourceInstanceInFeed, ref ODataAction actionToSerialize)
    {
        actionToSerialize = null;
        return false;
    }

    public bool TryResolveServiceAction(DataServiceOperationContext operationContext, ServiceActionResolverArgs resolverArgs, out ServiceAction serviceAction)
    {
        serviceAction = actions[0];
        return true;
    }
}

 public class DataServiceInvokable : IDataServiceInvokable
 {
     private readonly object[] parameters;
     private string result;

     public DataServiceInvokable(object[] parameters)
     {
         this.parameters = parameters;
     }

     public object GetResult()
     {
         return result;
     }

     public void Invoke()
     {
         result = parameters[0] as string;
     }
 }

然后,您可以將POST請求發送到http://example.org/service.svc/Action1

標題:內容類型:Application / json

請求正文:{“ val”:“ MessageToPostHere ...”}

如果您使用的是.Net 4.0或更高版本,則可以使用以下方法嘗試使用web.config設置文件:

<system.web>
...
    <httpRuntime maxUrlLength="500" />
....
</system.web>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM