|
POST
|
Dani, No, I have not received any feedback or found a solution to this. I do believe that in 10.2.2 the settings for a service are set, so that if you have KML turned off, when it is overwritten with a re-publish, the settings are kept. That does not help with new services though and the defaults for them. Mele
... View more
08-27-2014
08:15 AM
|
0
|
1
|
3013
|
|
POST
|
After doing some further research, I found that it is not possbile to access the dynamic image service once it has been cached via JavaScript. What can be done is to have two services, one cached and one dynamic. Using the scale of the map, in JavaScript we would have to swtich to the dynamic service at larger scales. We may end up doing the same thing with a Map Service as we don't need the capabilities of the Image Service. Mele
... View more
08-08-2014
09:07 AM
|
1
|
1
|
1147
|
|
POST
|
Erin, Thanks for the links. I think this will very useful. I did not know about the SOAP Proxy Libraries so I appreciate you showing me these. I would have responded earlier but could not find this post now that it is on GeoNet Mele
... View more
08-08-2014
08:12 AM
|
0
|
0
|
537
|
|
POST
|
If publish an Image Service and then cache it for performance, is it possible to access the dynamic image serice via a URL in the JavasScript API? It sounds as if in ArcMap you can do this but what about via a web API? Also, when using ArcGIS for Desktop applications, such as ArcMap, you can access the cached image service or access it as a dynamic image service. You can control how it's being accessed by checking or unchecking Enable Cache View Mode in the context menu on the image service layer in the table of contents. Thanks, Mele
... View more
07-27-2014
05:03 PM
|
0
|
2
|
3287
|
|
POST
|
I created a SOAP SOE in ArcGIS Server 10.0 and am trying to convert it to 10.2. As part of the SOE, I access a Feature Class from an IGeoDataServer. I used to be able to connect to the ArcGIS Server using the machine name and iterate through the ServerObjectNames, but due to local connections not being supported in 10.2 I can no longer do that. I changed my code to use an internet connection, but keep getting a "bad syntax error" when trying to retrieve the ServerObjectNames. Our ArcGIS server map services are secured using web authentication and AD roles. I tried to put in a valid user but it did not work either. This code works on an ArcGIS console application but not within my SOE. How can I connect to the IGeoDataServer from an SOE? Thanks, Mele private IGeoDataServer InitGeoDataServerFromNetworkServer(String machineName, String
serviceName)
{
// Create a property set for connection properties.
IPropertySet propertySet = new PropertySetClass();
//propertySet.SetProperty("Machine", machineName);
propertySet.SetProperty("user", @"domain\mapuser");
propertySet.SetProperty("password", "1234");
propertySet.SetProperty("CONNECTIONTYPE", "esriConnectionTypeInternet");
propertySet.SetProperty("URL", "http://server/arcgis/rest/services/");
// Connect to the server and get an enumerator for its objects.
IAGSServerConnectionFactory agsServerConnectionFactory = new
AGSServerConnectionFactoryClass();
IAGSServerConnection agsServerConnection = agsServerConnectionFactory.Open
(propertySet, 0);
IAGSEnumServerObjectName enumServerObjectName =
agsServerConnection.ServerObjectNames;
enumServerObjectName.Reset();
// Iterate through the objects to locate the GeoData service.
IAGSServerObjectName serverObjectName = null;
IGeoDataServer geoDataServer = null;
while ((serverObjectName = enumServerObjectName.Next()) != null)
{
if (serverObjectName.Name == serviceName)
{
IName name = (IName)serverObjectName;
geoDataServer = (IGeoDataServer)name.Open();
break;
}
}
return geoDataServer;
}
... View more
06-30-2014
03:54 PM
|
0
|
2
|
1015
|
|
POST
|
David, Thanks for your reply. I was only trying to change the name to add some further connection identifier and not to change the sde database name or server name. Even though the connection was created using an .sde file, I was afraid that this might be the case. Once you name something you can't change it. Mele
... View more
06-19-2014
07:31 AM
|
0
|
0
|
727
|
|
POST
|
When trying to change the name on an existing Database Connection in the Data Stores, I get an error saying "Does Not Exist [ATTACH=CONFIG]34670[/ATTACH] I am not sure what "Does Not Exist" that the message refers to. After pressing canecel, I ran a validate all databases and the database I was trying to renames was validated. Is there a way to change the name of an existing connection in the data store or is this not allowed? Thanks Mele
... View more
06-17-2014
01:54 PM
|
0
|
3
|
2457
|
|
POST
|
We are in the process of upgrading our ArcGIS Server to 10.2.2. We have an SOE for printing high quality maps. As part of the SOE we connect to the server and get the Map Services and the layer information for each. The code below fails at conn.Connect(server); Please provide guidance as to how we can connect to our server with our SOE in 10.2 and get the map services and layer information. Thanks, Mele {
GISServerConnection conn = null;
IServerObjectAdmin7 soa = null
conn = new GISServerConnection(); conn.Connect(server);
soa = (IServerObjectAdmin7)conn.ServerObjectAdmin;
IEnumServerObjectConfiguration enumconfig = soa.GetConfigurations();
IServerObjectConfiguration config = enumconfig.Next();
config.WaitTimeout = 600;
while (config != null)
{
//Check to see service is started and not the service with the LIS_Print SOE capability
IServerObjectConfigurationStatus configStatus = soa.GetConfigurationStatus(config.Name, config.TypeName);
if (config.Name != serverObjectHelper.ServerObject.ConfigurationName && configStatus.Status == esriConfigurationStatus.esriCSStarted)
{ if (config.TypeName == "MapServer") { IServerObjectManager4 som = (IServerObjectManager4)conn.ServerObjectManager;
IServerContext serverContext = som.CreateServerContext(config.Name, "MapServer"); IServerObject serverObject = serverContext.ServerObject;
IMapServer3 mapServer = (IMapServer3)serverObject;
GetMapLayerSettings(mapServer, config.Name);
serverContext.ReleaseContext();
}
}
config = enumconfig.Next();
}
... View more
05-17-2014
08:17 AM
|
0
|
1
|
2057
|
|
POST
|
To modify the domain credentials used by ArcGIS for Server to gain access to the list of users and/or roles, you need to first log into ArcGIS Server Manager and click the Security tab at the top. Once there, click the pencil icon next to "Configuration Settings" which will open the Security Configuration Wizard. Click the Next button twice and you'll be taken to the UI for inputting the domain user account in question. Generally speaking, it is not best practice to use a traditional "user" account on the domain that is assigned to a specific person. I would suggest using something like a domain service account, which is one that is generic in name and does not fall under certain periodic password change policies. Thanks for the steps. It was simple and saved me a support call. I will get a service account set up for this purpose.
... View more
05-15-2014
01:03 PM
|
0
|
0
|
359
|
|
POST
|
Thanks for suggesting that I check the logs. One thing that happened today was that I had to change my password. My account was used to set up the security and retrieve AD accounts. I see the attached message and I am guessing it is because of the change in password. I don't know how to reset my account information in ArcGIS Server Manager so I may to contact ESRI about doing so. I do not want to have to go back to configure all of the Security again. Mele[ATTACH=CONFIG]33844[/ATTACH]
... View more
05-15-2014
12:34 PM
|
0
|
0
|
1994
|
|
POST
|
I am logged in with my AD account and can see my name in the upper right.
... View more
05-15-2014
11:48 AM
|
0
|
0
|
1994
|
|
POST
|
Thanks for the replies. We typically do windows patching on Thursdays so I thought maybe it was because of a reboot, but I don't see in the event viewer that it was rebooted. I know that our ArcGIS Server 10.1 install requires us to restart the "ArcGIS Server" windows service after a reboot. I was thinking or restarting the windows service when I can just to see if that helps. The permissions on the root folder are the same as before. Also all the services are running and are visible in ArcCatalog and ArcGIS Server Manager. Mele
... View more
05-15-2014
11:06 AM
|
0
|
0
|
1994
|
|
POST
|
I have installed 10.2.2 and the web adaptor. I am using web-tier authentication with our agency's Active Directory. The Root Directory is accessbile to all of our Staff based on the 'ALL City Stafff" AD group, but the services directory does not show anything when viewed via IE or Chrome. I checked the 'services directory enabled' property and it is checked. I can see the services in the Manager and can view them by using the full URL, but I just can't see them in a browser under the services directory. I was able to view them yesterday and do not believe I have changed any settings. Any idea as to why the services are not visible even though the Services Directory is Enabled? Thanks, Mele [ATTACH=CONFIG]33840[/ATTACH]
... View more
05-15-2014
09:38 AM
|
0
|
10
|
2820
|
|
POST
|
The documentation for upgrading ArcGIS Server from 10.0 states: The easiest way to migrate from version 10.0 of ArcGIS Server is to install 10.2.2 on a new machine or set of machines. This allows you to go back and reference your existing applications and service properties while you are creating your new ArcGIS Server site. It sounds like we can run our ArcGIS Server 10.0 and 10.2.2 at the same time. I noticed that we do have an available 10.2 license at customers.esri.com but was wondering how long we can run both the existing 10 and a new 10.2.2 as we migrate and then test our install. Has anyone migrated their ArcGIS Server from 10.0 to 10.2 on a new machine? And if so, where you able to use the two licenses (10.0 & 10.2) concurrently, and for how long? Thanks, Mele
... View more
04-15-2014
03:28 PM
|
0
|
2
|
2488
|
|
POST
|
If DBCC is returning errors, you probably want to be talking with Tech Support. - V Thanks Vince, I will open a tech support incident regarding this issue.
... View more
04-14-2014
08:57 AM
|
0
|
0
|
569
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 10-20-2025 05:21 AM | |
| 1 | 03-13-2015 04:39 PM | |
| 1 | 09-18-2025 08:33 AM | |
| 1 | 05-12-2025 03:17 PM | |
| 1 | 08-15-2025 03:36 PM |
| Online Status |
Offline
|
| Date Last Visited |
Wednesday
|