1

サーバーとクライアントの通信に json(NSJSONSerialization) と NSURL を使用していました。これまでは問題なく動作していましたが、サーバーに NTLM セキュリティが実装されました。

iOS で NTLM を使用してリクエストを送信する方法を教えてもらえますか?

ありがとう

4

2 に答える 2

1

このコードは役に立ちます

NSMutableString *nodeContent = [[NSMutableString alloc]init];

    NSString *soapFormat = [NSString stringWithFormat:@"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n"
                            "<soap:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">\n"
                            "<soap:Body>\n"
                            "<GetListCollection xmlns=\"http://schemas.microsoft.com/sharepoint/soap/\" />\n"
                            "</soap:Body>\n"
                            "</soap:Envelope>\n"];



    NSLog(@"The request format is %@",soapFormat);

    NSURL *locationOfWebService = [NSURL URLWithString:@"http://localhost/_vti_bin/lists.asmx"];

    NSLog(@"web url = %@",locationOfWebService);

    NSMutableURLRequest *theRequest = [[NSMutableURLRequest alloc]initWithURL:locationOfWebService];

    NSString *msgLength = [NSString stringWithFormat:@"%d",[soapFormat length]];


    [theRequest addValue:@"text/xml" forHTTPHeaderField:@"Content-Type"];
    [theRequest addValue:@"http://schemas.microsoft.com/sharepoint/soap/GetListCollection" forHTTPHeaderField:@"SOAPAction"];
    [theRequest addValue:msgLength forHTTPHeaderField:@"Content-Length"];
    [theRequest setHTTPMethod:@"POST"];
    //the below encoding is used to send data over the net
    [theRequest setHTTPBody:[soapFormat dataUsingEncoding:NSUTF8StringEncoding]];


    NSURLConnection *connect = [[NSURLConnection alloc]initWithRequest:theRequest delegate:self];

    if (connect) {
        webData = [[NSMutableData alloc]init];
    }
    else {
        NSLog(@"No Connection established");
    }

チュートリアルとサンプルコードを見る

iOS の NTLM リクエスト用。これを使いました。

于 2012-11-05T06:10:55.333 に答える
1

NSURLProtectionSpaceを使用できる場合は、 NSString *NSURLAuthenticationMethodNTLM;が提供されます。認証方法。

行上の何か:

NSURLProtectionSpace *protectionSpace = [[NSURLProtectionSpace alloc]
    initWithHost: _host
    port: 80
    protocol: @"http"
    realm: _host
    authenticationMethod:NSURLAuthenticationMethodNTLM];
于 2012-11-05T06:12:12.773 に答える