0

私の xcode コンソール アプリケーション (10.12) では、http ポスト リクエストを使用してデータを wcf Web サービスに送信しています。その Web サービスが http で動作する場合、問題はありません。しかし、セキュア (https) 接続に変更すると、Web サービスと通信できなくなります。404 エラー コードが表示されます。

class request :NSObject,URLSessionDelegate{


func urlSession(_ session: URLSession, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) {
    completionHandler(.useCredential, URLCredential(trust: challenge.protectionSpace.serverTrust!))
}

func urlSession(_ session: URLSession, didBecomeInvalidWithError error: Error?) {
    if let err = error {
        print("Error: \(err.localizedDescription)")
    } else {
        print("Error. Giving up")
    }
}


func makeHTTPPostRequest(path: String, params: Dictionary<String,AnyObject>) {
    let request = NSMutableURLRequest(url: NSURL(string: path)! as URL)
    request.httpMethod = "POST"


    do  {
        request.httpBody = try JSONSerialization.data(withJSONObject: params, options: JSONSerialization.WritingOptions.prettyPrinted)
        request.addValue("application/json", forHTTPHeaderField: "Content-Type")
        request.addValue("application/json", forHTTPHeaderField: "Accept")

        let configuration = URLSessionConfiguration.default
        configuration.timeoutIntervalForRequest = 10
        configuration.timeoutIntervalForResource = 10

        let session = URLSession(configuration: configuration,delegate: self, delegateQueue: nil)


        let task = session.dataTask(with: request as URLRequest, completionHandler: {data, response, error -> Void in

            print(response)

        })
        task.resume()

    }
    catch{

    }

}

そして、そのようなWebサービスコード:

     [WebInvoke(UriTemplate = "/Test", Method = "POST", ResponseFormat = WebMessageFormat.Json, RequestFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.WrappedRequest)]
    [OperationContract]
    string Test(string name);

メソッドを呼び出しています:

var params = Dictionary<String,AnyObject>()

params["name"] = "こんにちは" as AnyObject?

var r = request() r.makeHTTPPostRequest(パス:" https://192.168.1.104/sample/Service1.svc/Test ",params:params)

これはサーバーからの応答です:

{ status code: 404, headers {
"Cache-Control" = private;
"Content-Length" = 0;
Date = "Sat, 25 Mar 2017 14:59:29 GMT";
Server = "Microsoft-IIS/7.5";
"Set-Cookie" = "ASP.NET_SessionId=l2omo5wflafesmcw2j23sw4t; path=/; HttpOnly";
"X-AspNet-Version" = "4.0.30319";
"X-Powered-By" = "ASP.NET";} 

それで、何が間違っているのですか?何か考えはありますか?

前もって感謝します !

4

1 に答える 1

0

私は自分の間違い、間違った web.config 構成を見つけました。上記のコードは正常に動作します。

一番

于 2017-03-29T15:53:59.043 に答える