1

以下のコードを記述して、SOAPWebサービスにリクエストを投稿します。

NSString *newstr = [[NSString alloc] initWithFormat:@"%@/Enki_UpperWs.asmx",[WebServices RequestURL]];
NSString *soapMsg = [[NSString alloc] initWithFormat:@"<?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"
                         "<Generate_Facility_List xmlns=\"http://tempuri.org/\">\n"
                         "<UserID>%d</UserID>\n"
                         "<LicenseKey>%d</LicenseKey>\n"
                         "<token>%@</token>\n"
                         "</Generate_Facility_List>\n"
                         "</soap:Body>\n"
                         "</soap:Envelope>",UserId,OfficeKey,strUserToken];

    soapMsg=[self getcodeforkeys:soapMsg];

    NSString *msgLength = [NSString stringWithFormat:@"%i", [soapMsg length]];
    NSURL *myURL = [[NSURL alloc] initWithString:[newstr stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
    NSMutableURLRequest *myRequest = [NSMutableURLRequest requestWithURL:myURL cachePolicy:NSURLCacheStorageAllowed timeoutInterval:500];
    [myRequest setValue:@"text/xml; charset=UTF-8" forHTTPHeaderField:@"Content-type"];
    [myRequest addValue:@"http://tempuri.org/Generate_Facility_List" forHTTPHeaderField:@"SOAPAction"];
    [myRequest addValue: msgLength forHTTPHeaderField:@"Content-Length"];
    [myRequest setHTTPMethod:@"POST"];
    [myRequest setHTTPBody:[soapMsg dataUsingEncoding:NSUTF8StringEncoding]];
    NSURLConnection *con = [[NSURLConnection alloc]initWithRequest:myRequest delegate:self];
    self.connection = con;
    [con release];
    [myURL release];
    [newstr release];
    [soapMsg release];
    return [self doParsing];

しかし、<または>または&または'または"のような特殊文字を持つパラメータがあり、それを以下の関数を使用して置き換える場合:

-(NSString*)getcodeforkeys:(NSString*)str_code{
    str_code = [str_code stringByReplacingOccurrencesOfString:@"&" withString:@"&amp;"];
    str_code = [str_code stringByReplacingOccurrencesOfString:@"<" withString:@"&lt;"];
    str_code = [str_code stringByReplacingOccurrencesOfString:@">" withString:@"&gt;"];
    str_code = [str_code stringByReplacingOccurrencesOfString:@"'" withString:@"&apos;"];
    str_code = [str_code stringByReplacingOccurrencesOfString:@"\"" withString:@"&quot;"];
    return str_code;
} 

XML文字も置き換えます。XML形式でリクエストを投稿できないためです。渡されたオブジェクトを置き換えて、XML形式のままにする必要がありますが、どうすればよいですか?

たとえば、strUserTokenを@ "testing <&>"として渡すと、特殊文字は置き換えられますが、XML文字列は置き換えられません。

誰か助けてもらえますか?

4

1 に答える 1

1

XML 検証:

DTD に対して検証された XML は「有効な」XML です。

最終的な XML が有効であることを確認するために、次の方法のいずれかを試してください。

  1. テキスト コンテンツにはCDATAセクションを使用します。
  2. テキスト コンテンツを個別にエスケープします (つまりUserId、この場合はOfficeKey, strUserToken)。

1.

NSString *soapMsg = [[NSString alloc] initWithFormat:@"<?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"
                         "<Generate_Facility_List xmlns=\"http://tempuri.org/\">\n"
                         "<UserID><![CDATA[%d]]></UserID>\n"
                         "<LicenseKey><![CDATA[%d]]></LicenseKey>\n"
                         "<token><![CDATA[%@]]></token>\n"
                         "</Generate_Facility_List>\n"
                         "</soap:Body>\n"
                         "</soap:Envelope>",UserId,OfficeKey,strUserToken]; // the text inside CDATA is not parsed as a part of XML, it might have special characters unescaped. The parser should support CDATA though

// do not escape complete document - remove the line soapMsg=[self getcodeforkeys:soapMsg];

2.

NSString *soapMsg = [[NSString alloc] initWithFormat:@"<?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"
                         "<Generate_Facility_List xmlns=\"http://tempuri.org/\">\n"
                         "<UserID>%d</UserID>\n"
                         "<LicenseKey>%d</LicenseKey>\n"
                         "<token>%@</token>\n"
                         "</Generate_Facility_List>\n"
                         "</soap:Body>\n"
                         "</soap:Envelope>",
                         [self getcodeforkeys:UserId],
                         [self getcodeforkeys:OfficeKey],
                         [self getcodeforkeys:strUserToken]]; // escape text separately

// do not escape complete document - remove the line soapMsg=[self getcodeforkeys:soapMsg];
于 2013-02-27T09:39:00.473 に答える