|
BLOG
|
Can help you reducing Maximum time of idle instance that you can see in service Timeout settings in the Pooling tab for each service in Server Manager the default is 600 sec). ArcSOC not in use anymore terminate quicker and Windows has more resource available.
... View more
12-11-2015
09:16 AM
|
0
|
0
|
5609
|
|
POST
|
This behavior occurs if the computer name does not match the name that is specified as the common name in the SSL certificate. For example, this behavior occurs if the computer name is a NetBIOS name and the SSL certificate uses a fully qualified domain name (FQDN). To resolve this behavior, verify that the following conditions are true: •The computer name and the name that is specified as the common name in the SSL certificate are both NetBIOS names or both FQDN names. •The SSL certificate has not expired. •The Web server trusts the certificate or the certificate issuer. •The certificate is not corrupted. •No one has tampered with the certificate. •The Web browser on the client computer recognizes the format of the certificate. •The Web browser on the client computer can read the certificate. •The SSL certificate has not been revoked.
... View more
12-11-2015
06:11 AM
|
0
|
0
|
1099
|
|
BLOG
|
You can try use low isolation and you can have it's advantages also if Esri documentation strongly recommended that you use high isolation. Low isolation improve ram consume but: - you couldn't have good optimize pool-shrinking - generally slightly less performant than high isolation services - if fail a instance service go down other instance services in same process I advise use Capacity Planning Tool for dimension core/ram/service: http://wiki.gis.com/wiki/index.php/Capacity_Planning_Tool_updates useful link Esri: System monitor 1.1.6 and System Log Parser and System Test
... View more
12-10-2015
09:33 AM
|
1
|
0
|
5609
|
|
POST
|
Is your config-store a UNC path or local path ? Have you instances in high or low isolation ?
... View more
12-10-2015
06:54 AM
|
0
|
0
|
1674
|
|
POST
|
if you are a developer and you have arcview license you can use my code in ao https://github.com/nicogis/Voronoi If you need create voronoi diagram on web I have made a PoC with js 4.0 beta1: http://sit5.sistemigis.it/demo/js/3d/voronoi/ (click on map and generate polygons from points clicked). You can edit js and upload your points and see your polygons. If you have license 3d Analyst and arcview license you can create a tin (z=0) and from ao you can use method GetVoronoiRegion in ITinNode interface http://resources.arcgis.com/EN/HELP/ARCOBJECTS-NET/COMPONENTHELP/index.html#//002500000933000000 (If you need I send you a PoC). You can use Dan tool python and arcview license http://www.arcgis.com/home/item.html?id=6e9bc6cbf93d4939b2eb04ff8519be47
... View more
12-09-2015
10:17 AM
|
1
|
0
|
4509
|
|
POST
|
To create the code value domain from table you can use arcobjects (http://help.arcgis.com/en/sdk/10.0/ArcObjects_NET/conceptualhelp/index.html#//0001000003mt000000) or Table To Domain http://resources.arcgis.com/EN/HELP/MAIN/10.1/index.html#//001700000025000000 I understand what you mean but Geodatabase is an object relational ( http://desktop.arcgis.com/en/desktop/latest/manage-data/geodatabases/the-architecture-of-a-geodatabase.htm ) link useful: http://desktop.arcgis.com/en/desktop/latest/manage-data/gdbs-in-oracle/geodatabase-admin-vocabulary.htm
... View more
12-08-2015
02:31 AM
|
1
|
0
|
1325
|
|
POST
|
from your jsonobject convert in IGeometry (arcobjects) Conversion.ToGeometry(jsonObjectGeometry, esriGeometryType.esriGeometryPoint); in arcobjects use a spatialfilter on featureclass with your IGeometry here you can see how get featureclass from service in soe
IFeatureClass
GetFeatureClass(IMapServer3
mapServer, int
layerID)
{
IMapServerDataAccess
dataAccess = (IMapServerDataAccess
)mapServer;
return
dataAccess.GetDataSource(mapServer.DefaultMapName, layerID) as
IFeatureClass
;
}
Return your client a json using ToJsonObject JsonObject jsonResultsGeometry = Conversion.ToJsonObject(polygonGeometry); You can see this sample (spatial query soe) that it does your same task (input point and return polygons) http://resources.arcgis.com/en/help/arcobjects-net/conceptualhelp/index.html#//000100000nwp000000
... View more
11-18-2015
07:08 AM
|
2
|
1
|
1382
|
|
POST
|
Yes, I have same behavior. In code I have checked and I set the routeMeasureUnit correctly but there's something I don't get! Peraphs I need get unit of spatial reference and convert manually unit but in these case I don't understand use of the property routeMeasureUnit
... View more
11-16-2015
11:27 AM
|
0
|
2
|
2830
|
|
DOC
|
you also can create a incremental diagram Voronoi: for example on add point in tin you can use pseudo code: IPoint pt = yourPointClass pt.Z = 0; ITinNode tinNode = new TinNodeClass(); tinFeatureEdit.AddPointZ(pt, 0, tinNode); IPolygon pg = tinNode.GetVoronoiRegion(yourMaxExtent); get adjacent point of point added: ITinNodeArray a = tinNode.GetAdjacentNodes(); //remove feature with index in ITinNodeArray from featureclass polygon Voronoi IFeatureCursor pCur = fcVoronoi.Search(qf, false); // not recycling IFeature pFeat = pCur.NextFeature(); do { pFeat.Delete(); pFeat = pCur.NextFeature(); } while (pFeat != null); //and add new polygon Voronoi foreach (index of Node in ITinNodeArray) { ITinNode tinNodeCurrent = tinNodeCollection.GetNode(index); IPolygon pgCurrent = tinNodeCurrent.GetVoronoiRegion(yourMaxExtent); if ((pgCurrent != null) && (!pgCurrent.IsEmpty)) { feature = fcVoronoi.CreateFeature(); feature.Shape = pgCurrent; feature.set_Value(idxId, tinNodeCurrent.Index); feature.Store(); } }
... View more
11-10-2015
09:55 AM
|
0
|
0
|
2029
|
|
POST
|
you need use ArcGIS Rest API - Administering your server : http://resources.arcgis.com/en/help/arcgis-rest-api/#/Edit_Service/02r3000001zp000000/
... View more
11-09-2015
03:40 AM
|
0
|
0
|
1092
|
|
POST
|
in section "Singletons and System.__COMObject" http://help.arcgis.com/en/sdk/10.0/Arcobjects_net/conceptualhelp/index.html#/Interacting_with_singleton_objects/00010000043p000000/ there is the detail why use Activator class instead of the new keyword to instantiate singletons
... View more
10-26-2015
01:41 AM
|
1
|
0
|
1098
|
|
POST
|
Is the ArcGIS Server Basic\Enterprise can Connect and EDIT enterprise geodatabase such as Oracle and SQL Server? Yes. You need arcgis desktop std or adv for geodatabase management Is it able to publish feature service? Yes for map visualization and query
... View more
10-22-2015
11:55 PM
|
2
|
0
|
3452
|
|
POST
|
you can see in arcgis server functionality matrix http://www.esri.com/library/brochures/pdfs/arcgis-server-functionality-matrix.pdf
... View more
10-22-2015
11:16 PM
|
0
|
9
|
3452
|
|
POST
|
you can use toolboxalias.toolname or toolname_toolboxalias pattern. The data management toolbox has alias 'management' while the name of tool is 'AddField' (click right button of mouse on tool and select property and see the name) Here in https://desktop.arcgis.com/en/desktop/latest/guide-books/extensions/task-assistant-manager/task-assistant-manager-faqs.htm you can see the list of alias of toolbox system
... View more
10-13-2015
01:04 AM
|
1
|
1
|
6722
|
| 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
|