|
POST
|
If you plan on developing new SOEs, keep in mind that in ArcGIS Server 10.1 you will be required to analyze your map documents before publishing them and fix any errors that appear. Thus, one of the things you can do to get your SOE’s ready for 10.1 is to make sure they work against MSDs at 10.0. Building SOE’s on top of MSD based map services with ArcGIS Server 10.0 is perfectly possible. The biggest requirement is that you avoid using MXD-specific interfaces (such as IMap, ILayer, anything to do with page layouts, and so on). http://blogs.esri.com/Dev/blogs/arcgisserver/archive/2010/11/12/Accessing-optimized-map-services-with-server-object-extensions.aspx You can get your featureclass, raster ect using IMapServerDataAccess casting mapServer Here you can see further details: http://blogs.esri.com/esri/arcgis/2010/11/12/accessing-optimized-map-services-with-server-object-extensions/ IMapServer3 mapServer = (IMapServer3)serverObjectHelper.ServerObject;
string mapName = mapServer.DefaultMapName;
IMapLayerInfo layerInfo;
IMapLayerInfos layerInfos = mapServer.GetServerInfo(mapName).MapLayerInfos;
// Find the index position of the map layer to query.
int c = layerInfos.Count;
int layerIndex = 0;
for (int i = 0; i < c; i++)
{
layerInfo = layerInfos.get_Element(i);
if (layerInfo.Name == m_mapLayerNameToQuery)
{
layerIndex = i;
break;
}
}
IMapServerDataAccess dataAccess = (IMapServerDataAccess)mapServer;
// Get access to the source feature class.
IFeatureClass fc = (IFeatureClass)dataAccess.GetDataSource(mapName, layerIndex);
... View more
04-02-2015
06:47 AM
|
0
|
0
|
1332
|
|
POST
|
Here there is a sample in java: mraad/ExportImageSOI · GitHub In this code there is override to handleRESTRequest. If there is a request of 'export' and 'image' the function call custom doExportImage (watermark) otherwise follow the request from client ExportImageSOI/ExportImageSOI.scala at master · mraad/ExportImageSOI · GitHub
... View more
04-01-2015
12:11 PM
|
1
|
4
|
2271
|
|
POST
|
what's the version of Windows 32 or 64 bit? If you have 64bit: what's the version installed driver Access 32bit or 64bit ? Have you compiled your dll with the ANY CPU ?
... View more
04-01-2015
06:06 AM
|
1
|
0
|
1689
|
|
POST
|
you can see Query the ArcGIS Server logs ArcGIS Help 10.1 or you can use or customize System Monitor http://www.arcgis.com/home/item.html?id=848f48b0f88e4de7a036377197453efe
... View more
03-19-2015
02:35 AM
|
2
|
0
|
862
|
|
POST
|
you can see Query the ArcGIS Server logs ArcGIS Help 10.1 or you can use or customize System Monitor http://www.arcgis.com/home/item.html?id=848f48b0f88e4de7a036377197453efe
... View more
03-19-2015
02:35 AM
|
0
|
0
|
665
|
|
POST
|
ArcGIS Online has a full REST API: ArcGIS REST API here you can find resources : Tools · Esri/ago-admin-wiki Wiki · GitHub for connection in arcobjects you can see also interface IArcGISSingleSignon ArcObjects 10 .NET SDK Help IArcGISSingleSignon a = new ArcGISSingleSignonClass();
a.GetToken(IntPtr.Zero.ToInt32(), ref token, ref referer, ref expiration, ref user);
...
a.SignOut();
... View more
03-18-2015
06:27 AM
|
0
|
0
|
848
|
|
POST
|
here you can see why you need use activator: ArcObjects 10 .NET SDK Help
... View more
03-11-2015
08:48 AM
|
0
|
0
|
1789
|
|
POST
|
I see mappe.comune.rimini.it:6080 .. : but is the service accessible using port 6080 ?
... View more
03-03-2015
04:27 AM
|
0
|
1
|
1211
|
|
POST
|
ArcGIS 10.3 (Desktop, Engine, Server) PDF Export for non-US decimal separators Patch | Samples and Utilities
... View more
02-25-2015
06:12 AM
|
0
|
1
|
3109
|
|
POST
|
Are you using web adaptor? if yes, what is written in 'site url' in webadaptor.config?
... View more
02-24-2015
11:48 PM
|
0
|
4
|
1995
|
|
POST
|
If you need a soe arcobjects you can see my soe: http://www.arcgis.com/home/item.html?id=e3bfa7c991e34aa8872c937ca9169507 or http://www.arcgis.com/home/item.html?id=2ccd7d9d70cf4284b41e45859d2870a0 but if you haven't experience of arcobjects might be easier via Geoprocessing Model Esri also has an extension for SD: see in arcgis.com http://www.arcgis.com/home/group.html?owner=RoadsAndHighwaysTeam&title=Esri%20Roads%20and%20Highways Esri Roads and Highways | Overview
... View more
02-24-2015
03:17 AM
|
0
|
0
|
613
|
|
POST
|
The following data types are unsupported in 64-bit processing: Personal geodatabase (.mdb) Excel tables (.xls, .xlsx)
... View more
02-02-2015
02:43 AM
|
0
|
1
|
2132
|
|
POST
|
the user that impersonation arcgis server 'soe' (see ArcGIS for Server Installation Guide - The ArcGIS Server account ) is arcgis server account. if you use code in console you are using the current user.
... View more
01-30-2015
03:24 AM
|
0
|
3
|
2132
|
| 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
|