zoukankan      html  css  js  c++  java
  • arcxml 中 outputmode="xml" 和 outputmode="newxml" 的区别

       
       最近正在研究
       ArcXML_Programmers_Ref_Gd.pdf
       英语差,但也得啃啊。。
     
      outputmode="xml" 时
      request 
     

      
    <?xml version="1.0" encoding="UTF-8"?>
       
    <ARCXML version="1.1">
        
    <REQUEST> 
        
    <GET_FEATURES outputmode="newxml"> 
        
    <LAYER id="2" />
         
    <SPATIALQUERY subfields="state_name sub_region" where="STATE_NAME='Washington'" /> 
         
    </GET_FEATURES>
          
    </REQUEST> 
          
    </ARCXML>

    respose
    <?xml version="1.0" encoding="UTF8"?> 
    <ARCXML version="1.1"> 
    <RESPONSE> <FEATURES>
     
    <FEATURE> 
     
    <FIELDS STATE_NAME="Washington" SUB_REGION="Pacific" />
      
    </FEATURE>
       
    <FEATURECOUNT count="1" hasmore="false" /> 
      
    </FEATURES>
       
    </RESPONSE> 
      
    </ARCXML>
     

      

     outputmode="newxml" 时
     request

      
    <?xml version="1.0" encoding="UTF-8"?>
       
    <ARCXML version="1.1">
        
    <REQUEST> 
        
    <GET_FEATURES outputmode="newxml"> 
        
    <LAYER id="2" />
         
    <SPATIALQUERY subfields="state_name sub_region" where="STATE_NAME='Washington'" /> 
         
    </GET_FEATURES>
          
    </REQUEST> 
          
    </ARCXML>

    respose
      <?xml version="1.0" encoding="UTF8"?>
           
    <ARCXML version="1.1"> 
           
    <RESPONSE> <FEATURES> 
           
    <FEATURE> 
           
    <FIELDS> 
           
    <FIELD name="STATE_NAME" value="Washington" />
           
    <FIELD name="SUB_REGION" value="Pacific" /> </FIELDS>
             
    </FEATURE> <FEATURECOUNT count="1" hasmore="false" /> 
             
    </FEATURES> </RESPONSE> </ARCXML>
             

     在用.net link 做开发时,好些时候要求用 newxml 格式
     
    The "xml" outputmode can be used only when no XML parser is used since the attribute names in FIELD are always changing. When using an XML parser, outputmode should be set to "newxml", which returns data in a valid XML format. If outputmode="newxml", then all fields are returned using the FIELD element. The next request asks for the same information on Washington as the previous request.
    这是原文。


  • 相关阅读:
    数组中最大和的子数组
    数据结构与算法面试题80道
    fcntl获取和修改文件打开状态标志
    dup等复制文件描述符函数
    截断文件函数truncate和ftruncate
    浅析
    五个Taurus垃圾回收compactor优化方案,减少系统资源占用
    如何用交互式特征工程工具进行数据分析处理
    【华为云技术分享】解密如何使用昇腾AI计算解决方案构建业务引擎
    Scrum Master教你四招,瓦解团队内部刺头
  • 原文地址:https://www.cnblogs.com/gwazy/p/673101.html
Copyright © 2011-2022 走看看