geoserver添加数据时报错java.net.MalformedURLException: no protocol:
下面是代码,求指点
<?xml version="1.0" encoding="GBK"?>
<wfs:Transaction service="WFS" version="1.0.0"
xmlns:wfs="http://www.opengis.net/wfs"
xmlns:topp="http://www.openplans.org/topp"
xmlns:gml="http://www.opengis.net/gml"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.opengis.net/wfs http://schemas.opengis.net/wfs/1.0.0/WFS-transaction.xsd
http://www.openplans.org/topp http://localhost:8080/geoserver/wfs/DescribeFeatureType?typename=topp:restaurant">
<wfs:Insert>
<topp:restaurant>
<topp:geom>
<gml:Point srsName="http://www.opengis.net/gml/srs/epsg.xml#4326">
<gml:coordinates xmlns:gml="http://www.opengis.net/gml" decimal="." cs=","
ts=" ">114.52, 29.98</gml:coordinates>
</gml:Point>
</topp:geom>
<topp:address>富强路123号</topp:address>
<topp:name>佳丽茶点2分店</topp:name>
<topp:class>中餐厅</topp:class>
<topp:gid>77393</topp:gid>
</topp:restaurant>
</wfs:Insert>
</wfs:Transaction>