私は1つのWindows Phoneアプリケーションを開発しています。サイトへの認証が必要です。認証を確認する WCF サービスにユーザー ID とパスワードを送信します。
サービス側コード:
Service.svc.cs
public CookieContainer GetConnect(string uid, string password)
//public string GetConnect(string uid, string password)
{
try
{
HttpWebRequest req = (HttpWebRequest)WebRequest.Create("http://example.com/Login1.action");
req.Method = "POST";
CookieContainer con = new CookieContainer();
req.CookieContainer = con;
req.CookieContainer.Add(GetCookies());
req.KeepAlive = true;
req.UserAgent = "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/536.11 (KHTML, like Gecko) Chrome/20.0.1132.57 Safari/536.11";
req.ContentType = "application/x-www-form-urlencoded";
req.Accept = "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8";
req.Referer = "http://example.com/content/index.html";
byte[] data = Encoding.Default.GetBytes("username=" + uid + "&password=" + password);
req.Credentials = new NetworkCredential(uid, password);
req.ContentLength = data.Length;
req.AllowAutoRedirect = true;
req.ServicePoint.Expect100Continue = true;
string str = req.GetRequestStream();
str.Write(data, 0, data.Length);
str.Close();
HttpWebResponse res = (HttpWebResponse)req.GetResponse();
string iduri = System.Web.HttpUtility.ParseQueryString(res.ResponseUri.Query).Get("id");
if (iduri != "")
{
return con;
//return "Success";
}
else
{
res.Close();
str.Close();
return null;
//return "Fail";
}
}
catch (Exception)
{
return null;
}
}
IService.cs
[ServiceContract]
public interface IService1
{
[OperationContract]
CookieCollection GetCookies();
[OperationContract]
CookieContainer GetConnect(string uname, string password);
//string GetConnect(string uname, string password);
}
クライアント側のコード:
ログイン.xaml.cs
void svc_Get_Connected(object send, GetConnectCompletedEventArgs e)
{
var cc = new CookieContainer();
cc=e.Result;
}
conオブジェクトを返すと、次のエラーが発生します。
メッセージを受け入れることができるhttp://example.com:3922/Service1.svcでリッスンしているエンドポイントはありませんでした。これは、多くの場合、アドレスまたは SOAP アクションが正しくないことが原因です。詳細については、存在する場合は InnerException を参照してください。"
返却方法はCookieContainer
?