gpt4 book ai didi

ios - NSMutableURLRequest 处理 SOAP 请求中的特殊字符

转载 作者:行者123 更新时间:2023-11-29 03:29:28 26 4
gpt4 key购买 nike

当我们将日志放入服务器时,请求(NSMutableURLRequest 处理 soap 请求中的特殊字符)不会在服务器上发送。当我调用 webservice 时,服务器没有收到我从我的设备发出的请求。如果您有想法,请帮助我。

最佳答案

除了 < > 和 & 之外,所有特殊字符都将出现在肥皂请求中。所以你需要为他们做一些工作。

您需要像 iOS 端那样替换它们。

-(NSString*)replaceSpecialCharsFromString:(NSString*)str
{
str = [str stringByReplacingOccurrencesOfString:@"&" withString:@"&amp;"];
str = [str stringByReplacingOccurrencesOfString:@"<" withString:@"&lt;"];
str = [str stringByReplacingOccurrencesOfString:@">" withString:@"&gt;"];

return str;
}

现在,当您在门户收到此响应时,此时您应该有代码将存储过程中的 & 替换为 &、< 替换为 < 、> 替换为 >,然后再插入门户数据库。

关于ios - NSMutableURLRequest 处理 SOAP 请求中的特殊字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20000489/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com