vote up 2 vote down star

In the process of developing my first WCF service and when I try to use it I get "Method not Allowed" with no other explanation.

I've got my interface set up with the ServiceContract and OperationContract:

    [OperationContract]
    void FileUpload(UploadedFile file);

Along with the actual method:

    public void FileUpload(UploadedFile file) {};

To access the Service I enter http://localhost/project/myService.svc/FileUpload but I get the "Method not Allowed" error

Am I missing something?

flag

74% accept rate

5 Answers

vote up 1 vote down

The basic intrinsic types (e.g. byte, int, string, and arrays) will be serialized automatically by WCF. Custom classes, like your UploadedFile, won't be.

So, a silly question (but I have to ask it...): is UploadedFile marked as a [DataContract]? If not, you'll need to make sure that it is, and that each of the members in the class that you want to send are marked with [DataMember].

Unlike remoting, where marking a class with [XmlSerializable] allowed you to serialize the whole class without bothering to mark the members that you wanted serialized, WCF needs you to mark up each member. (I believe this is changing in .NET 3.5 SP1...)

A tremendous resource for WCF development is what we know in our shop as "the fish book": Programming WCF Services by Juval Lowy. Unlike some of the other WCF books around, which are a bit dry and academic, this one takes a practical approach to building WCF services and is actually useful. Thoroughly recommended.

link|flag
vote up 0 vote down

@jeremymcgee, I actually do have a DataContract setup:

[DataContract]
public class UploadedFile
{
    [DataMember]
    public string Name;

    [DataMember]
    public byte[] File;
}

Thanks for the book recommendation. I will take a look.

link|flag
vote up 0 vote down

It sounds like you're using an incorrect address:

To access the Service I enter http://localhost/project/myService.svc/FileUpload

Assuming you mean this is the address you give your client code then I suspect it should actually be:

http://localhost/project/myService.svc
link|flag
vote up 1 vote down

Check your web.config for verbs - Ensure GET and POST are allowed. Also check your IIS config for the same.

link|flag
vote up 5 vote down

You are trying to invoke the method in a RESTful way. Make sure you have the WebGet attribute on the operation in the contract:

[ServiceContract]
public interface IService1
{
    [WebGet()]
    [OperationContract]
    string GetSomeData();
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.