|
POST
|
see Supporting a mix of public and private services—Documentation (10.4) | ArcGIS for Server
... View more
03-22-2016
12:50 AM
|
1
|
0
|
2009
|
|
POST
|
if you change api js and if there is a problem it should be on the client. what's the difference between two js client when return definition of map ( var webMapAsJSON ) : var printTask = new PrintTask(); // _getPrintDefinition isn't documented in help // ExportWebMap json http://resources.arcgis.com/en/help/main/10.1/index.html#/ExportWebMap_specification/0154000004w8000000/ var proxy_getPrintDefinition = printTask._getPrintDefinition; printTask._getPrintDefinition = function () { var getPrintDefResult = proxy_getPrintDefinition.apply(this, arguments); return getPrintDefResult; } var printParameters = new PrintParameters(); var webMapAsJSON = printTask._getPrintDefinition(this.map, printParameters);
... View more
03-15-2016
12:16 AM
|
0
|
0
|
1077
|
|
POST
|
If you have AGS 10.3.1 or superior the solution is develop a soi. In sdk arcobjects you have a sample for watermark in export https://github.com/Esri/arcobjects-sdk-community-samples/tree/master/Net/Server/ServerApplyWatermarkSOI demo live (bottom-left 'Esri Inc') : This solution, although more complicated, granting you security because the image is generated on the server. If you put your logic on client image files downloaded haven't watermark. in my blog about soi: http://nicogis.blogspot.it/2015/05/tutti-pazzi-per-il-soi.html
... View more
03-04-2016
05:45 AM
|
2
|
0
|
2863
|
|
POST
|
You can see http://support.esri.com/en/knowledgebase/techarticles/detail/42409 Path in system variable C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\ gives problem because in these folders you have C++ Runtime Library. If you update last 'Intel(R) Management Engine Components' C++ Runtime Library is removed from these folder and you haven't this problem.
... View more
02-29-2016
11:34 PM
|
0
|
0
|
1248
|
|
POST
|
Have you removed StOLE ? Set in properties Project Platform x86 for adf select ArcObjects SDK 10.4 system requirements—System Requirements | ArcGIS for Desktop
... View more
02-29-2016
05:09 AM
|
0
|
0
|
2864
|
|
POST
|
Have you tried with this simple sample http://help.arcgis.com/en/sdk/10.0/Arcobjects_net/conceptualhelp/index.html#/Sample_Simple_point_plug_in_data_source/0001000001t4000000/
... View more
02-26-2016
06:10 AM
|
0
|
1
|
948
|
|
POST
|
Have you set target 4.5 net in your project? system requirments: vs 2013 - vs 2015 https://desktop.arcgis.com/en/system-requirements/latest/arcobjects-sdk-system-requirements.htm
... View more
02-26-2016
06:00 AM
|
0
|
4
|
2864
|
|
POST
|
see first sample: https://dojotoolkit.org/reference-guide/1.10/dijit/form/ComboBox.html
... View more
02-24-2016
11:02 PM
|
0
|
1
|
1153
|
|
POST
|
Now 10.4 is available in myEsri. Have you a chance try with ags 10.4 ?
... View more
02-19-2016
03:39 AM
|
0
|
2
|
3020
|
|
POST
|
when you have your polygon you can use a spatial relationship with a shape comparison language string for select polygon adjacent: use F***T**** 9IM F => interior-interior (false) e T => boundary-boundary (true) * => not tested (not need for your comparision) for details 9IM Shape comparison Language ' Get the feature with the known oid Dim caFeature As IFeature = featureClass.GetFeature(4)
Dim caGeometry As IGeometry = caFeature.Shape
' Create a spatial filter with a 9IM spatial relationship.
Dim spatialFilter As ISpatialFilter = New SpatialFilterClass()
spatialFilter.Geometry = caGeometry
spatialFilter.GeometryField = featureClass.ShapeFieldName
spatialFilter.SpatialRel = esriSpatialRelEnum.esriSpatialRelRelation
spatialFilter.SpatialRelDescription = "F***T****"
spatialFilter.SubFields ="yourfield1, ..." ' Execute the query.
Dim selectionSet As ISelectionSet = featureClass.Select(spatialFilter, esriSelectionType.esriSelectionTypeSnapshot, _ esriSelectionOption.esriSelectionOptionNormal, Nothing)
... View more
02-19-2016
12:38 AM
|
0
|
1
|
1093
|
|
POST
|
You can write js code like on(dom.byId("execute"), "click", execute);
function execute (evt) {
var aQuery = new esri.tasks.QueryTask("http://mymaps.com/arcgis/rest/services/myservice/MapService/0"); //layerA
var aParams = new esri.tasks.Query();
//...set your parameters
aParams.geometry = evt.mapPoint;
aQuery.execute(aParams, function (aResults) {
var aQuery2 = esri.tasks.QueryTask("http://mymaps.com/arcgis/rest/services/myservice/MapService/1"); //layerB
var aParams2 = new esri.tasks.Query();
// ... set query parameters
aParams2.where = "ID = " + aResults.features[0].attributes["ID"];
aQuery2.execute(aParams2, function (aResults2) {
//visualize in map
});
});
}
... View more
02-16-2016
11:03 PM
|
1
|
1
|
1079
|
|
POST
|
You can use gp trace geometric network trace ( http://server.arcgis.com/en/server/latest/publish-services/linux/gp-service-example-geometric-network-trace.htm ) and then you consume it in Esri client (SL, flex, js).
... View more
02-15-2016
11:23 PM
|
0
|
0
|
1392
|
|
POST
|
I thought enough you remove all records but if you need also remove tables I don't know if the two operations are quicker that a single operation (IDataset.Delete)
... View more
02-15-2016
05:17 AM
|
0
|
1
|
3127
|
|
POST
|
Is possible remove only rows and mantain table (use truncate)? http://help.arcgis.com/EN/sdk/10.0/ArcObjects_NET/componenthelp/index.html#//0025000008n5000000 Truncating tables The ITableWrite2.Truncate method provides a way to quickly delete every row in a table (or every feature in a feature class). It is only available for local geodatabase classes and for non-versioned classes in ArcSDE. Caution should be taken when using this method, for two reasons: ##All complex behavior is bypassed when calling this method. Calling it on a dataset that participates in a composite relationship class, participates in a controller dataset such as a topology, or has custom behavior defined (i.e., using a class extension) will likely cause data corruption. This should only be used to truncate simple data. ##This method ignores schema locks. If the dataset is being used by other users they may experience unexpected behavior.
... View more
02-15-2016
04:20 AM
|
0
|
3
|
3127
|
|
POST
|
I don't answer your question directly because the method is IDasaset.Delete. But why you don't use a gdb separate or a scratch gdb for these tables (I guess that are scratch tables) ? So you can delete entire gdb ...
... View more
02-15-2016
03:56 AM
|
0
|
1
|
3127
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-20-2024 11:20 AM | |
| 1 | 05-25-2017 10:11 AM | |
| 1 | 06-20-2023 12:09 AM | |
| 1 | 10-14-2022 05:14 AM | |
| 1 | 06-14-2023 02:00 AM |
| Online Status |
Offline
|
| Date Last Visited |
05-18-2026
04:12 AM
|