啓用會話:用法=在這樣的Web服務方法,真正
[WebMethod(EnableSession=true)]
public string HelloWorld()
{
return "Hello World";
}
使用Cookie的會話狀態(web.config中):
<sessionState cookieless="true"></sessionState>
然後嘗試從這樣的客戶端調用它:
localhost.WebService1 ws1 = new localhost.WebService1(); // the web service proxy
ws1.HelloWorld();
你得到一個重定向WebException(302)說對象有蜜蜂n來移動:
localhost.WebService1的基類是什麼? –
SoapHttpClientProtocol(namespace'System.Web.Services.Protocols),因爲它已經由.NET自動生成。 –
你的布爾屬性爲「AllowAutoRedirect」,請檢查它是否爲默認值,將其更改爲true並對其進行測試 –