|
POST
|
Have you further details in Event Viewer -> Windows Logs -> application ? for check if you have 4.5 you can run code kind this:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System;
using Microsoft.Win32;
namespace ConsoleApplication1
{
class Program
{
public static void Main()
{
using (RegistryKey ndpKey = RegistryKey.OpenBaseKey(RegistryHive.LocalMachine, RegistryView.Registry32).OpenSubKey(@"SOFTWARE\Microsoft\NET Framework Setup\NDP\"))
{
foreach (string versionKeyName in ndpKey.GetSubKeyNames())
{
if (versionKeyName.StartsWith("v"))
{
RegistryKey versionKey = ndpKey.OpenSubKey(versionKeyName);
string name = (string)versionKey.GetValue("Version", "");
string sp = versionKey.GetValue("SP", "").ToString();
string install = versionKey.GetValue("Install", "").ToString();
if (install == "") //no install info, ust be later
Console.WriteLine(versionKeyName + " " + name);
else
{
if (sp != "" && install == "1")
{
Console.WriteLine(versionKeyName + " " + name + " SP" + sp);
}
}
if (name != "")
{
continue;
}
foreach (string subKeyName in versionKey.GetSubKeyNames())
{
RegistryKey subKey = versionKey.OpenSubKey(subKeyName);
name = (string)subKey.GetValue("Version", "");
if (name != "")
sp = subKey.GetValue("SP", "").ToString();
install = subKey.GetValue("Install", "").ToString();
if (install == "") //no install info, ust be later
Console.WriteLine(versionKeyName + " " + name);
else
{
if (sp != "" && install == "1")
{
Console.WriteLine(" " + subKeyName + " " + name + " SP" + sp);
}
else if (install == "1")
{
Console.WriteLine(" " + subKeyName + " " + name);
}
}
}
}
}
}
}
}
}
... View more
03-27-2013
06:26 AM
|
0
|
0
|
5476
|
|
POST
|
is serverConnection file accessible to local user arcgis of ags?
... View more
03-26-2013
05:53 AM
|
0
|
0
|
1432
|
|
POST
|
Julia, are you sure that you haven't a source out of geodatabase registered (sql server) , for example table ecc. ? (easy seeing in TOC of ArcMap: List by source)
... View more
03-25-2013
12:22 PM
|
0
|
0
|
1653
|
|
POST
|
Excuse me, I have seen that you have posted in ags forum 10.1 so I thought that you had 10.1 Is your problem relate at this: http://support.esri.com/en/knowledgebase/techarticles/detail/33018 ? Have you tried posted in geocode forum?
... View more
03-25-2013
10:53 AM
|
0
|
0
|
1543
|
|
POST
|
try this http://support.esri.com/en/bugs/nimbus/TklNMDg2ODU1
... View more
03-25-2013
08:12 AM
|
0
|
0
|
1717
|
|
POST
|
see http://support.esri.com/en/bugs/nimbus/role/beta10_1/TklNMDg3NzY1
... View more
03-25-2013
07:08 AM
|
0
|
0
|
2353
|
|
POST
|
see http://support.esri.com/en/bugs/nimbus/role/beta10_1/TklNMDg3NzY1
... View more
03-25-2013
07:07 AM
|
0
|
0
|
1717
|
|
POST
|
if you are using 10.1 you can use rest admin api for start stop ect services http://resources.arcgis.com/en/help/server-admin-api/ http://resources.arcgis.com/en/help/main/10.1/index.html#//0154000005r1000000
... View more
03-25-2013
07:03 AM
|
0
|
0
|
1543
|
|
POST
|
Now it's public: http://www.arcgis.com/home/item.html?id=60bf17f2d59441839135adc25654a7d9
... View more
03-25-2013
04:29 AM
|
0
|
0
|
1101
|
|
POST
|
I think (I do same in my soe) that Esri uses behind coarse-grained ao method 's MapServer http://help.arcgis.com/en/sdk/10.0/arcobjects_net/componenthelp/0012/0012000009n1000000.htm (QueryRelatedRecords) so seeing in help create a unique, not null, indexed numeric field in your table (not gdb) and the field will be recognized as a pseudo ObjectID field and so ...
... View more
03-25-2013
03:30 AM
|
0
|
0
|
879
|
|
POST
|
You can install web adaptor in a web server accessible external and web adaptor communicate forwarding to the port (6080/6443 ect) of gis server. If your organization already uses a reverse proxy, you can configure it to route requests to ArcGIS Server on your secure internal network. The most basic option is to connect directly to the GIS server through port 6080 without installing the Web Adaptor. see http://resources.arcgis.com/en/help/main/10.1/0154/015400000431000000.htm see http://resources.arcgis.com/en/help/main/10.1/0154/015400000488000000.htm
... View more
03-22-2013
11:39 AM
|
0
|
0
|
1277
|
|
POST
|
Have you further details in event viewer windows and/or in ags log?
... View more
03-22-2013
11:28 AM
|
0
|
0
|
1543
|
|
POST
|
with psexec have you a message warning/error in console in Windows 2008 ? Have you UAC enabled (http://riosec.com/Windows-UAC-PsExec)?
... View more
03-22-2013
07:43 AM
|
0
|
0
|
1543
|
|
POST
|
see also https://github.com/Esri/geojson-utils/blob/master/src/jsonConverters.js
... View more
03-22-2013
06:03 AM
|
0
|
0
|
1484
|
|
POST
|
I confirm that you need a subscription. Perahps there is a temporary problem.
... View more
03-21-2013
06:56 AM
|
0
|
0
|
1901
|
| 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
|