如何为本地使用创建xml命名空间?

时间:2015-09-02 12:21:16

标签: xml xml-namespaces

是否可以使用我自己的域创建一个xmlns(我在本地运行http服务器和一个oracle数据库),如果没有请建议备选方案

这是我的xml文件

 <ModelList xmlns="http://www.onenetwork.com/Platform" xmlns:vc="http://www.onenetwork.com/Platform">
  <ValueChainId>1217</ValueChainId>
  <CustomModelName>Standard ZGMP.Place</CustomModelName>
  <ActionName>ZGMP.Create</ActionName>
  <Place xmlns="http://www.onenetwork.com/Platform/places">
    <ValueChainId>1217</ValueChainId>
    <PlaceName>Home</PlaceName>
    <Address>
      <vc:Country>RSA</vc:Country>
      <vc:Component Type="STREET1">98 Elm Road</vc:Component>
      <vc:Component Type="CITY">Benoni</vc:Component>
      <vc:Component Type="PROVINCE">Gauteng</vc:Component>
      <vc:Component Type="ZIP">1501</vc:Component>
    </Address>
    <Latitude>-26.097595</Latitude>
    <Longitude>-26.097595</Longitude>
    <MarkerSize>medium</MarkerSize>
    <Zoom>14</Zoom>
    <MarkerColour>red</MarkerColour>
    <MarkerName>H</MarkerName>
    <Type>hybrid</Type>

  </Place>
</ModelList>

当我尝试将数据加载到我的数据库(通过xml)时,我收到此错误:

[org.xml.sax.SAXParseException:cvc-complex-type.2.4.a:找到以元素&#39; Place&#39;开头的无效内容。其中一个{&#34; http://www.onenetwork.com/Platform&#34;:错误,&#34; http://www.onenetwork.com/Platform&#34;:型号}&#39;是预期的。]

xml文件只是为数据库中的字段赋值

0 个答案:

没有答案