我需要从客户端(OpenLayers)读取WFS事务并执行相应的操作。我想使用geoTools!有没有办法实现wfs服务器?
假设我有这样的Transacion:
<wfs:Transaction service=”WFS” version=”1.0.0″
xmlns:myns=”http://www.domain.com/ns“
xmlns:ogc=”http://www.opengis.net/ogc”
xmlns:wfs=”http://www.opengis.net/wfs”>
<wfs:Update typeName=”myns:LayerToUpdate“>
<wfs:Property>
<wfs:Name>propertyToUpdate</wfs:Name>
<wfs:Value>updatedValue</wfs:Value>
</wfs:Property>
<ogc:Filter>
<ogc:PropertyIsEqualTo>
<ogc:PropertyName>constraintProperty</ogc:PropertyName>
<ogc:Literal>constraintValue</ogc:Literal>
</ogc:PropertyIsEqualTo>
</ogc:Filter>
</wfs:Update>
</wfs:Transaction>
如果你提出另一种方法,我们将不胜感激!
答案 0 :(得分:0)
HttpServletRequest request=...;
org.geotools.xml.parser.Parser parser = new Parser(new org.geotools.wfs.v1_1.WFSConfigration());
TransactionType tt = (TransactionType) parser.parse(request.getReader());
InsertElementType insert1 = (InsertElementType) tt.getInsert().get(0);