Commit dc215c73 authored by garciay's avatar garciay
Browse files

Validate TC_ECRF_HTTP_POST_BV_06-09

parent 07c1b062
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -75,9 +75,9 @@ system.httpPort.params := "HTTP(codecs=lost:lost_codec;held:held_codec)/TCP(debu
#AtsNg112_TestCases.TC_ECRF_HTTP_POST_BV_03
#AtsNg112_TestCases.TC_ECRF_HTTP_POST_BV_04
#AtsNg112_TestCases.TC_ECRF_HTTP_POST_BV_05
#AtsNg112_TestCases.TC_ECRF_HTTP_POST_BV_06
AtsNg112_TestCases.TC_ECRF_HTTP_POST_BV_06
#AtsNg112_TestCases.TC_ECRF_HTTP_POST_BV_07
AtsNg112_TestCases.TC_ECRF_HTTP_POST_BV_08
#AtsNg112_TestCases.TC_ECRF_HTTP_POST_BV_08
#AtsNg112_TestCases.TC_ECRF_HTTP_POST_BV_09
#AtsNg112_TestCases.TC_ECRF_HTTP_POST_BV_10
#AtsNg112_TestCases.TC_ECRF_HTTP_POST_BV_11
+4 −3
Original line number Diff line number Diff line
@@ -479,7 +479,6 @@ with {

type PolygonType Polygon
with {
  variant "name as 'Polygon'";
  variant "element";
};

@@ -495,6 +494,7 @@ type record PolygonType
	Exterior exterior optional
}
with {
  variant "name as 'Polygon'";
  variant (axisLabels) "attribute";
  variant (gid) "attribute";
  variant (id) "attribute";
@@ -512,7 +512,7 @@ with {

type AbstractRingPropertyType Exterior
with {
  variant "name as uncapitalized";
  variant "name as 'exterior'";
  variant "element";
};

@@ -522,13 +522,13 @@ type record AbstractRingPropertyType
	Ring_group ring
}
with {
  variant "name as 'exterior'";
  variant (ring) "name as '_Ring'";
};


type LinearRingType LinearRing
with {
  variant "name as 'LinearRing'";
  variant "element";
};

@@ -550,6 +550,7 @@ type record LinearRingType
	} choice
}
with {
  variant "name as 'LinearRing'";
  variant (axisLabels) "attribute";
  variant (gid) "attribute";
  variant (id) "attribute";
+21 −0
Original line number Diff line number Diff line
@@ -621,6 +621,27 @@ module LibItsHttp_XmlTemplates {
      exterior     := p_exterior
    } // End of template mw_polygon

    template (present) Exterior mw_exterior_linear_ring(
                                                        template (present) LinearRingType p_linear_ring := ?
                                                        ) := {
      ring := { linearRing := p_linear_ring }
    } // End of template mw_exterior
    
    template (present) LinearRingType mw_linear_ring_type_pos(
                                                              template (present) XSD.AnyURI p_srsName := ?,
                                                              template (present) LinearRingType.choice.choice_list p_choice_list := ?
                                                              ) := {
      axisLabels   := *,
      gid          := *,
      id           := *,
      srsDimension := *,
      srsName := p_srsName,
      uomLabels  := *,
      choice := {
        choice_list := p_choice_list
      }
    } // End of template mw_exterior
    
  } // End of group open_gis
  
} // End of module LibItsHttp_XmlTemplates