libxml2 解析器问题。如何处理来自服务器的错误消息?我该如何对待超时看门狗

发布于 2024-11-08 01:03:08 字数 1554 浏览 0 评论 0原文

我对相同的代码有一些疑问,

  1. 首先,

如果我返回的异常 XML 与我的应用程序阻止的对象类型不匹配,我该如何处理来自服务器的错误消息?

  1. 我如何对待网络超时(看门狗)

关于我的代码的任何其他建议将不胜感激。 我的代码:

xmlTextReaderPtr reader = xmlReaderForMemory([DecryResponse bytes], [DecryResponse length], NULL, NULL,  (XML_PARSE_NOBLANKS | XML_PARSE_NOCDATA | XML_PARSE_NOERROR | XML_PARSE_NOWARNING));
        NSString * currentTagName =nil;
        NSString * currentTagValue= nil;
        char *temp = nil;
        while (true) {
            if(!xmlTextReaderRead(reader))break;
            switch (xmlTextReaderNodeType(reader)) {
                case XML_READER_TYPE_ELEMENT:
                    temp = (char *)xmlTextReaderConstName(reader);
                    currentTagName =[NSString stringWithCString:temp encoding:NSUTF8StringEncoding];
                    continue;
               case XML_READER_TYPE_TEXT:                       
                    temp =(char *)xmlTextReaderConstValue(reader);
                    currentTagValue = [NSString stringWithCString:temp encoding:NSUTF8StringEncoding];
                    if ([currentTagName  isEqual:@"Account"]) {
                        SW.Account =[currentTagValue intValue];}
                    if ([currentTagName  isEqual:@"SessionNumber"]) {
                        SW.SessionNumber = currentTagValue;         }
                    if ([currentTagName  isEqual:@"OpCode"]) {
                        SW.OpCode = [currentTagValue intValue];}
                default:continue;
            }
        }

I have a few questions about the same code sow

  1. first of all how do i treat error messages from the server

if i get a unusual XML returned that does not match the type of my object my app blockes;

  1. How do i treat network time out (the watchdogs)

Any other suggestion about my code will be appreciated.
My code:

xmlTextReaderPtr reader = xmlReaderForMemory([DecryResponse bytes], [DecryResponse length], NULL, NULL,  (XML_PARSE_NOBLANKS | XML_PARSE_NOCDATA | XML_PARSE_NOERROR | XML_PARSE_NOWARNING));
        NSString * currentTagName =nil;
        NSString * currentTagValue= nil;
        char *temp = nil;
        while (true) {
            if(!xmlTextReaderRead(reader))break;
            switch (xmlTextReaderNodeType(reader)) {
                case XML_READER_TYPE_ELEMENT:
                    temp = (char *)xmlTextReaderConstName(reader);
                    currentTagName =[NSString stringWithCString:temp encoding:NSUTF8StringEncoding];
                    continue;
               case XML_READER_TYPE_TEXT:                       
                    temp =(char *)xmlTextReaderConstValue(reader);
                    currentTagValue = [NSString stringWithCString:temp encoding:NSUTF8StringEncoding];
                    if ([currentTagName  isEqual:@"Account"]) {
                        SW.Account =[currentTagValue intValue];}
                    if ([currentTagName  isEqual:@"SessionNumber"]) {
                        SW.SessionNumber = currentTagValue;         }
                    if ([currentTagName  isEqual:@"OpCode"]) {
                        SW.OpCode = [currentTagValue intValue];}
                default:continue;
            }
        }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文