.net - wcf rest post json example c#
WCF REST Webinvoke no encontrado (1)
El siguiente es el código que estoy usando en mi aplicación de prueba:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ServiceModel;
using System.ServiceModel.Description;
using System.IO;
namespace MyWCFServices
{
[ServiceContract]
interface IHelloWorldService
{
[OperationContract]
String GetMessage(String name);
//[OperationContract]
//[WebInvoke(Method = "PUT",UriTemplate = "File/{fileName}")]
//[WebContentType("application/octet-stream")]
// bool UploadFile(string fileName, Stream fileContents);
[OperationContract]
[WebInvoke(UriTemplate = "UploadFile/{fileName}")]
void UploadFile(string fileName, Stream fileContent);
}
}
Da un error en la compilación para webinvoke. ¿Alguna idea sobre lo mismo?
WebInvokeAttribute
está en un ensamblaje separado System.ServiceModel.Web.dll. ¿Hiciste referencia a esa asamblea? También debe agregar using System.ServiceModel.Web;
Editar:
Para usar el ensamblado System.ServiceModel.Web.dll, debe usar al menos .NET 3.5 y no puede usar .NET 4.0 Client Profile.