I'm building a service(C#) which selects a number of geometries from a system that stores its geometries in an Oracle 10g, and then save a copy of those into a SQL Server database
for use by another system.
Looked first at SDO_UTIL.TO_WKTGEOMETRY(). However, the geometries is stored as 3d geometries (Even though the z-layer is always 0, so it will not work as WKT only works if in 2d).
Option number two was then SDO_UTIL.TO_GMLGEOMETRY(), this however returns GMLs in V2, and SQL Server would like them in GML V3.1.1(from what I could read)(And have not found a simple way to convert these).
Does anyone have an idea of other options, maybe some third-party libraries that can be used for this?
Understand that some may find this more to belong in a. net forum, but have been trying for such, but not been able to find anything. Any ideas would be appreciated!