3

助けを求めたいです。次のクラスを持つことを検討してください。

public class UploadRequest{
    public byte[] Data{get;set;}

    public string Filename{get;set;}
}

および WCF メソッド

UploadFile(UploadRequest request);

私の設定は次のとおりです。

<service name="WCF.Messenger" behaviorConfiguration="DefaultBehavior">
  <endpoint                 binding="basicHttpBinding" contract="WCF.Interfaces.IMessenger" bindingConfiguration="soapBinding"/>
  <endpoint address="json"  binding="webHttpBinding" behaviorConfiguration="jsonBehavior" contract="WCF.Interfaces.IMessenger" bindingConfiguration="jsonBinding"/>
  <endpoint address="mex"   binding="mexHttpBinding" contract="IMetadataExchange"/>
</service>

このメソッドを HTTP Web リクエスト経由で呼び出すことはできますか?

返信ありがとうございます

4

1 に答える 1

-1

このメソッドを http Web リクエスト経由で呼び出す場合は、WCF REST サービスを使用する必要があります

これを見てください:WCF Rest Service

于 2012-10-03T15:42:33.253 に答える