Opened 13 years ago
Closed 13 years ago
#1917 closed defect (fixed)
Join WFS feature source cause ServerDescribeScheme fail
Reported by: | ChristineBao | Owned by: | Christine Bao |
---|---|---|---|
Priority: | medium | Milestone: | |
Component: | Feature Service | Version: | 2.1.0 |
Severity: | major | Keywords: | |
Cc: | Jenny He | External ID: | 1443676 |
Description
Report from Autodesk QA:
Steps:
- Create one connection to WFS data.
- Create one join with 2 feature class in this WFS feature resource.
- Refresh to describe schema and feature class.
Results:
One error happened.
An exception occurred in FDO component. Schema cannot be found in the collection.
Expected results:
The schema and feature class info should be listed correctly.
Workaround: N
Regression: Y AIMS 2012 works well.
Attachments (1)
Change History (4)
comment:1 by , 13 years ago
by , 13 years ago
Attachment: | Fix1917.patch added |
---|
comment:2 by , 13 years ago
Attach patch for fixing this ticket. http://trac.osgeo.org/mapguide/attachment/ticket/1917/Fix1917.patch
It fixed the above problem, meantime it removes the unnecessary setSchema/setFeatureClass code.
comment:3 by , 13 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Submit to 2.4j branch in r6441. Not submit to trunk so far.
Note:
See TracTickets
for help on using tickets.
This defect happens in ServerDescribeSchema.cpp. When it addes the extension schema, it changed the schema name.
WFS is cached connection, which means it will not close connection, so next time when describe the schema, the matching cannot be found anymore, causing the defect.
To fix this problem, make a copy of the original one and added as extension schema, no change the original one.