|
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# |
|
May
3 |
|
revised |
WCF - BasicHttpBinding, No user name and/or password is available, name: null, password: null deleted 3 characters in body |
|
May
3 |
|
answered | WCF - BasicHttpBinding, No user name and/or password is available, name: null, password: null |
|
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..
|
|
Mar
8 |
|
comment |
What is the correct way to handle assembly resolution in .NET ArcGIS add-ins? LoadFrom context should be fine, but isn't ArcGIS using Load context instead? I'm not sure, I'll have to check. |
|
Mar
8 |
|
comment |
What is the correct way to handle assembly resolution in .NET ArcGIS add-ins? What a great topic! I personally do not like the add-in deployment model at all exactly for these reasons. I am curious what the practice and experience in the real world is. My opinion is that ArcGIS is essentially loading add-in assemblies in the wrong context (see blogs.msdn.com/b/suzcook/archive/2003/05/29/57143.aspx for further discussion). |