Hi
Is there a maxsize for how much data there can be return from the postgis DB in one request ?
I am trying to fetch 2446 rows of this (table name fg)
--
Column | Type | Modifiers
----------+-------------------+-----------
gid | integer |
id_nr | character varying |
navn | character varying |
address | character varying |
zip | integer |
name | character varying |
x | double precision |
y | double precision |
status | character varying |
the_geom | geometry |
Check constraints: "$1" (srid(the_geom) = -1)
"$2" ((geometrytype(the_geom) = 'POINT'::text) OR (the_geom IS NULL))
--
And I am getting this response
--
XML Parsing Error: not well-formed
Location: http://131.165.211.29:8080/geoserver/GetFeature?typeName=fg
Line Number 1, Column 23464:
EPSG:23032"><gml:coordinates>511558.474524356,6242256.83409024</gml:coordinates></gml:Point> .......
--
First I was running with loglevel FINEST and did consider that maby the transmition
of data from postgis to geoserver did take to long (it did take > 20 sec.) so I did change
the loglevel to INFO, but still have the problem (same column no)
I don't attach the catalina.out, unless you want 1.2Mb in the mail
but it seems that there is 500 lines returned from the request (well I know there is
an LIMIT 500 on the retrival statement, but what with the remaning ~1900 rows ?)
I have changed Typeinfo fo iso-8859-1
--
btw, is the field 'objectid' mandatory ?
-- info.xml
<?xml version="1.0" encoding="UTF-8"?>
<featureType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Name>fg</Name>
<Title>Forekomster af Forurenede grunde</Title>
<Abstract>Forekomster af forurenede grunde i Viborg Amt</Abstract>
<Keywords>Forurenede grunde, Viborg Amt</Keywords>
<SRS>EPSG:23032</SRS>
<Operations/>
<LatLonBoundingBox minx="-174.561" miny="-8.20422e+12" maxx="154.107" maxy="8.20422e+12" />
<MetadataURL>
<url>none</url>
<format>XML</format>
<type>TC211</type>
</MetadataURL>
<Host>localhost</Host>
<Port>5432</Port>
<DatabaseName>vibamt</DatabaseName>
<User>gis</User>
<Password></Password>
</featureType>
-- schema.xml
<xs:complexType name="fg_Type">
<xs:complexContent>
<xs:extension base="gml:AbstractFeatureType">
<xs:sequence>
<xs:element name="fg.gid" nillable="true" minOccurs="0" maxOccurs="1">
</xs:element>
<xs:element name="fg.id_nr" nillable="true" minOccurs="0" maxOccurs="1">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="100"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="fg.navn" nillable="true" minOccurs="0" maxOccurs="1">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="100"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="fg.address" nillable="true" minOccurs="0" maxOccurs="1">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="100"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="fg.zip" nillable="true" minOccurs="0" maxOccurs="1">
</xs:element>
<xs:element name="fg.name" nillable="true" minOccurs="0" maxOccurs="1">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="100"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="fg.x" nillable="true" minOccurs="0" maxOccurs="1">
</xs:element>
<xs:element name="fg.y" nillable="true" minOccurs="0" maxOccurs="1">
</xs:element>
<xs:element name="fg.status" nillable="true" minOccurs="0" maxOccurs="1">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="100"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name=".the_geom" type="gml:PointPropertyType" nillable="false" minOccurs="1" maxOccurs="1"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>