|
POST
|
js (or web client in general) does request client side: a manager log in your app and he can see request with filter (defaultDefinitionExpression ) for his data, so he can do request (rest) for another nationwide data if he understand the logic of criterio filter so you should obfuscate this filter.
... View more
10-25-2012
06:48 AM
|
0
|
0
|
1281
|
|
POST
|
see about web adaptor http://resources.arcgis.com/en/help/main/10.1/0154/01540000028p000000.htm "...The Web Adaptor detects the GIS servers that participate in the site and forwards requests to each in a round-robin fashion. The GIS servers also perform some degree of request distribution among themselves. Some server operations, such as batch geocoding, are very CPU intensive. Using clustered servers for this type of operation may help free up other machines in your site so that your remaining services can remain online unencumbered..." see Deployment scenarios http://resources.arcgis.com/en/help/main/10.1/0154/015400000488000000.htm
... View more
10-25-2012
01:39 AM
|
0
|
0
|
907
|
|
POST
|
if you use feature service you can use defaultDefinitionExpression for filter data http://help.arcgis.com/en/webapi/javascript/arcgis/help/jsapi/featurelayer.htm . in 10.1 you can also use LayerDataSource for definition source (data native rdbms) http://help.arcgis.com/en/webapi/javascript/arcgis/help/jsapi/layerdatasource.htm However for protect you filter you need apply your filter at level of proxy using for example in function of login (server side) a lookup user - filter 'unknown'
... View more
10-24-2012
11:59 PM
|
0
|
0
|
1281
|
|
POST
|
this is available for desktop. See how work with INetworkDataset http://help.arcgis.com/en/sdk/10.0/arcobjects_net/conceptualhelp/0001/000100000mrr000000.htm. Are your sure that functionalies extension NA server available are not sufficient for your purposes ?
... View more
10-24-2012
11:00 PM
|
0
|
0
|
3228
|
|
POST
|
if I see log with a sample request (via browser) http://webgis.arizona.edu/ArcGIS/rest/services/webGIS/Shock_Models/GPServer/Income_Log/submitJob?Input_Feature_Layer=%7B%22geometryType%22%3A%22esriGeometryPoint%22%2C%22features%22%3A%5B%7B%22geometry%22%3A%7B%22x%22%3A-13627369.700270362%2C%22y%22%3A4533417.475788502%2C%22spatialReference%22%3A%7B%22wkid%22%3A102100%7D%7D%7D%5D%2C%22sr%22%3A%7B%22wkid%22%3A102100%7D%7D&Expression=50&env%3AoutSR=&env%3AprocessSR=&f=html I see that output isn't in arcgisjobs but in your temp so it isn't accessible. Have you set variable stratchworkspace ? Name of Parameter output is final_shp (I see in code final.shp) and set it esriGPParameterTypeRequired.
... View more
10-24-2012
10:38 PM
|
0
|
0
|
2302
|
|
POST
|
also IApplication is avaliable for desktop http://help.arcgis.com/en/sdk/10.0/arcobjects_net/componenthelp/index.html#//00230000002w000000 if you need get open a mxd you can use IMapDocument http://help.arcgis.com/en/sdk/10.0/arcobjects_net/componenthelp/index.html#/IMapDocument_Interface/0012000008m5000000/
... View more
10-24-2012
10:01 PM
|
0
|
0
|
1851
|
|
POST
|
how you can see in help it is available with ArcGIS Desktop http://help.arcgis.com/en/sdk/10.0/arcobjects_net/componenthelp/index.html#/INetworkAnalysisExt_Interface/002100000069000000/ what's your problem?
... View more
10-24-2012
09:56 PM
|
0
|
0
|
969
|
|
POST
|
Hi George, have you warning, error details in log of ags? Kevin: what's problem if you included data? if you see in file .sd it's a .7z file where you can see your data included
... View more
10-23-2012
06:39 AM
|
0
|
0
|
646
|
|
POST
|
you can for example get url admin rest
Guid guid = Marshal.GenerateGuidForType(typeof(IServerEnvironment));
UID uid = new UIDClass();
uid.Value = guid.ToString("B");
IEnvironmentManager environmentManager = new EnvironmentManager() as IEnvironmentManager;
IServerEnvironment2 serverEnvironment = environmentManager.GetEnvironment(uid) as IServerEnvironment2;
IPropertySet b = serverEnvironment.Properties;
object[] name = new object[1];
object[] values = new object[1];
b.GetAllProperties(out name[0], out values[0]);
object[] nameList = (object[])name[0];
object[] valueList = (object[])values[0];
... View more
10-23-2012
03:29 AM
|
0
|
0
|
1353
|
|
POST
|
see http://resources.arcgis.com/en/help/main/10.1/0154/01540000039r000000.htm
... View more
10-23-2012
02:11 AM
|
0
|
0
|
866
|
|
POST
|
this info you can get from IDiscoveryServerConfigStore http://resources.arcgis.com/en/help/arcobjects-cpp/componenthelp/0010/001000000150000000.htm for your properties why don't you use simple properties ?
[ServerObjectExtension("MapServer",
AllCapabilities = "",
DefaultCapabilities = "",
Description = "Test",
DisplayName = "TestSOE",
Properties = "FilePathStoreConfig=...;PropertyB=Cities",
SupportsREST = true,
SupportsSOAP = false)]
... View more
10-22-2012
10:20 AM
|
0
|
0
|
1353
|
|
POST
|
If you want the port between the reverse proxy and your secure internal network to remain unknown, you can install the Web Adaptor on another web server within your secure internal network. This Web Adaptor can be configured to accept traffic through a port of your choice. This configuation is suitable for your existing reverse proxy: The port used from ags server: http://resources.arcgis.com/en/help/main/10.1/0154/015400000537000000.htm
... View more
10-21-2012
11:50 PM
|
0
|
0
|
1522
|
|
POST
|
in IMapServer3
internal static IFeatureClass GetFeatureClass(this IMapServer3 mapServer, int layerID)
{
IMapServerDataAccess dataAccess = (IMapServerDataAccess)mapServer;
return dataAccess.GetDataSource(mapServer.DefaultMapName, layerID) as IFeatureClass;
}
you have QueryFeatureData2 for query and return with your datum transform and output json ( http://help.arcgis.com/en/sdk/10.0/arcobjects_net/componenthelp/0012/001200000p3n000000.htm ) http://help.arcgis.com/en/sdk/10.0/arcobjects_net/componenthelp/0012/0012000009ms000000.htm
... View more
10-20-2012
06:56 AM
|
0
|
0
|
966
|
|
POST
|
you can do a gp ( see http://help.arcgis.com/en/arcgisserver/10.0/help/arcgis_server_dotnet_help/0093/009300000028000000.htm ) if you need function of geostatistical you also need extension for server ( http://www.esri.com/software/arcgis/arcgisserver/extensions ) then you can see sample js for call your gp ( http://help.arcgis.com/en/webapi/javascript/arcgis/help/jssamples/gp_clipasync.html )
... View more
10-18-2012
12:07 AM
|
0
|
0
|
1006
|
| 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
|