Changes between Version 19 and Version 20 of ZooWorkshop/FOSS4GJapan/CreatingOGRBasedWebServices
- Timestamp:
- Oct 15, 2010, 11:09:20 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ZooWorkshop/FOSS4GJapan/CreatingOGRBasedWebServices
v19 v20 20 20 21 21 {{{ 22 #!sh 22 23 [Boundary] 23 24 }}} … … 26 27 27 28 {{{ 29 #!sh 28 30 Title = Compute boundary. 29 31 Abstract = Returns the boundary of the geometry on which the method is invoked. … … 35 37 36 38 {{{ 39 #!sh 37 40 processVersion = 1 38 41 storeSupported = true … … 46 49 C !ServicesProvider Example : 47 50 {{{ 51 #!sh 48 52 serviceProvider=ogr_ws_service_provider.zo 49 53 serviceType=C … … 55 59 56 60 {{{ 61 #!sh 57 62 serviceProvider=ogr_ws_service_provider 58 63 serviceType=Python … … 64 69 65 70 {{{ 71 #!sh 66 72 <MetaData> 67 Title = Demo73 Title = Demo 68 74 </MetaData> 69 75 }}} … … 74 80 75 81 {{{ 82 #!sh 76 83 [InputPolygon] 77 Title = Polygon to compute boundary78 Abstract = URI to a set of GML that describes the polygon.79 minOccurs = 180 maxOccurs = 181 <MetaData lang="en">82 Test = My test83 </MetaData>84 Title = Polygon to compute boundary 85 Abstract = URI to a set of GML that describes the polygon. 86 minOccurs = 1 87 maxOccurs = 1 88 <MetaData lang="en"> 89 Test = My test 90 </MetaData> 84 91 }}} 85 92 … … 88 95 {{{ 89 96 <ComplexData> 90 <Default>91 mimeType = text/xml92 encoding = UTF-893 </Default>94 <Supported>95 mimeType = application/json96 encoding = UTF-897 </Supported>97 <Default> 98 mimeType = text/xml 99 encoding = UTF-8 100 </Default> 101 <Supported> 102 mimeType = application/json 103 encoding = UTF-8 104 </Supported> 98 105 </ComplexData> 99 106 }}} … … 103 110 {{{ 104 111 [Result] 105 Title = The created geometry106 Abstract = The geometry containing the boundary of the geometry on which the methodwas invoked.107 <MetaData lang="en">108 Title = Result109 </MetaData>110 <ComplexData>111 <Default>112 mimeType = application/json113 encoding = UTF-8114 </Default>115 <Supported>116 mimeType = text/xml117 encoding = UTF-8118 </Supported>119 </ComplexData>112 Title = The created geometry 113 Abstract = The geometry containing the boundary of the geometry on which the method was invoked. 114 <MetaData lang="en"> 115 Title = Result 116 </MetaData> 117 <ComplexData> 118 <Default> 119 mimeType = application/json 120 encoding = UTF-8 121 </Default> 122 <Supported> 123 mimeType = text/xml 124 encoding = UTF-8 125 </Supported> 126 </ComplexData> 120 127 }}} 121 128