0
我完全不熟悉WCF,並且創建了這些函數。 在我的本地主機完美工作,但將它放在IIS後,當我嘗試使用它時,出現errormessage 405「方法不允許」。WCF方法不允許
[ServiceContract]
public interface IService1
{
[WebInvoke(Method = "GET")]
[OperationContract]
string EncryptZonderPaswoord(string tekst);
[WebInvoke(Method = "GET")]
[OperationContract]
string EncryptMetPaswoord(string tekst, string paswoord);
[WebInvoke(Method = "GET")]
[OperationContract]
string DecryptZonderPaswoord(string tekst);
[WebInvoke(Method = "GET")]
[OperationContract]
string DecryptMetPaswoord(string tekst, string paswoord);
}
...
任何人的想法?我需要在IIS上設置哪些額外屬性?