How to pass a geometry draw using geocortex to FME server . We have esri geometry draw by a user and we need to pass it to fme server .
thanks ,
How to pass a geometry draw using geocortex to FME server . We have esri geometry draw by a user and we need to pass it to fme server .
thanks ,
one solution could be to convert pass the geometry as either WKT or WKB. You can then convert it back in your workspace using the GeometryReplacer.
David
I used David method to get the geometry as WKT but when I check it using shape file as an output or inspecter I did not see the geometry , May I know what might be the reason
can you tell us how you implemented it? My idea was something like this:
David
I am using the same method that you explained but when I passed the below wKT as input I am not seeing the polygon on shape file or inspector . do we need to add any other transfermer
POLYGON ((55.723644024000066 24.237742129000083, 55.723659275000045 24.236346177000087, 55.725385866000067 24.23637092000007, 55.725414275000048 24.237711484000044, 55.723644024000066 24.237742129000083))
seems like there might be a bug in the GeometryReplacer that prevents it from reading the geometry string directly from a published parameter.
Use a ParameterFetcher first to put the WKT into a regular attribute. That worked for me (FME 2013)
David
For what it's worth, it seems like this bug has been resolved for FME 2014.
David