7,642 reputation
723
bio website tydlevidle.cz
location Prague, Czech Republic
age 28
visits member for 2 years, 9 months
seen 5 hours ago
stats profile views 358

7h
answered Write table blob field to file
7h
answered Object does not exist in the namespace “http://schemas.esri.com/arcgis/client/2009”
2d
comment ArcObjects: Custom GP tools: GPCompositeDataType and DataType
Seems like a bug. You can always check what type the resulting IGPValue is by querying for implemented interfaces, such as IDEFeatureClass or IDEWorkspace3 . Will that do the trick?
May
21
answered ArcGIS Online - Programmatically Upload Tabular Data Source
May
15
answered Creating maps programmatically using ArcObjects. Adding legends, scale bars, north arrows?
May
14
revised How to get polyline out of multipart feature using ArcObjects C#
added 239 characters in body
May
14
answered How to get polyline out of multipart feature using ArcObjects C#
Apr
16
comment Write table blob field to file
Ensure that "Embed interop types" is turned off for all Esri references. Second, try IMemoryBlobStream instead of IBlobStream (this really shouldn't make a difference though).
Apr
11
comment Cannot input new data into FeatureDataForm
Is editing enabled on the feature service you are referring to? (see resources.arcgis.com/en/help/main/10.1/index.html#//…)
Apr
11
comment ArcGIS Add-In Project to Standard Library Project
The project is flagged with a particular identifier recognized by Esri, along with including a MSBuild task in the build process. Both are saved in the .csproj file but are not accessible through any UI. You can edit the .csproj file (which is in fact a MSBuild file) manually, but do so only if you have a certain level of understanding of MSBuild and how VS interacts with it.
Apr
3
comment ESRI CreateGeometryFromWkbVariant creates CCW polygon
How does the polygon geometry look in the original WKB/WKT? It may be the case that the behaviour was wrong at 9.3.1 and is correct (fixed) at 10+. Anyway, you can probably call ITopologicalOperator.Simplify (or IPolygon4.SimplifyEx for more control) to simplify the geometry.
Apr
3
answered How do I implement a custom IFeatureDatasetExtension?
Apr
3
comment The underlying connection was closed: The connection was closed unexpectedly, WCF and ESRI Objects
Sorry, but that is not sufficient info. Can you paste the complete contract interface and the types it references? From what you describe it's not actually clear whether PolygonN and Geometry are ESRI COM types, ESRI SOAP WebServices library types, or whether they are defined elsewhere (or by you).
Apr
3
comment The underlying connection was closed: The connection was closed unexpectedly, WCF and ESRI Objects
That said, it is most likely a serialization issue. You could turn on WCF tracing to see what exactly fails.
Apr
3
comment The underlying connection was closed: The connection was closed unexpectedly, WCF and ESRI Objects
Could you provide more details? How does your WCF service contract look like? Are you referencing ESRI COM objects or interfaces in a WCF operation/data contract? If that's the case, you will need to define your own non-COM classes representing the data contract and convert between these and ESRI COM objects, so that at no point are ESRI COM objects exposed in the public contract.
Apr
2
revised Arcobjects: DisplayTransformation.FromMapPoint() transforms wrong
deleted 6 characters in body
Apr
2
answered Arcobjects: DisplayTransformation.FromMapPoint() transforms wrong
Mar
29
comment Object does not exist in the namespace “http://schemas.esri.com/arcgis/client/2009”
Does the project reference the ESRI.ArcGIS.Client.Toolkit.dll assembly?
Mar
27
answered How to handle layers with different Spatial references in ArcGIS Runtime SDK WPF?
Mar
12
comment ArcGIS 10.1 - c# custom geoprocessing function tool - how to populate a polyline output parameter?
That is weird, if GPLine did not implement IGPLine2, then the line IGPLine2 outValue = new GPLineClass(); would not compile at all..