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.
    这是原文。


  • 相关阅读:
    作业1
    113
    112
    工作量统计
    测试大纲
    2019-2020-2 20175335丹增罗布《网络对抗技术》Exp8 Web基础
    2019-2020-2 20175335丹增罗布 《网络对抗技术》Exp7 网络欺诈防范
    2019-2020-2 20175335丹增罗布 《网络对抗技术》Exp6 MSF基础应用
    2019-2020-2 20175335 丹增罗布 《网络对抗技术》Exp5 信息搜集与漏洞扫描
    2019-2020-2 20175335 丹增罗布《网络对抗技术》Exp4 恶意代码分析
  • 原文地址:https://www.cnblogs.com/gwazy/p/673101.html
Copyright © 2011-2022 走看看