|
POST
|
Hi All, I am unable to sync the newly collected features back to SDE although i am able to edit and update attributes for existing features. Even after using synchronization task the new features, the edits remain in manage edits without throwing any errors, Background: Using MPC to configure the application ArcGIS Server 10.2.2 ArcGIS for Windows Mobile 10.2 I have enabled archiving and Global Id's on the Dataset in use I have also enabled allow collection of new features option in MPC. Unable to figure out what is being missed.
... View more
04-26-2015
09:05 AM
|
1
|
3
|
4664
|
|
POST
|
Thanks larry for the reply. I am aware of the file upload option with ajax. I was just trying to work with the portal rest api to do the same. (which should be very much possible) Any hints on how to upload kml file using the addItem rest api: ArcGIS REST API I have tried something like this: How to add item to the ArcGIS Portal with the portal API? - Geographic Information Systems Stack Exchange but have found no luck in getting the file on portal. (although the item gets added with size 0 ) Thanks, Pramod
... View more
01-06-2015
10:25 PM
|
0
|
0
|
3357
|
|
POST
|
For this to work I would need to host the KML/KMZ file on a webserver and then use. In my case I have the files in my local machine, so I would like to upload them to the portal content and then use them. The issue is I am unable to upload them to the portal content via code (which otherwise works if I use the portal Add Items option)
... View more
01-05-2015
05:20 AM
|
1
|
2
|
3357
|
|
POST
|
As I mentioned in my other post KML works fine when I try with the usual upload option. The idea here is to upload the KML to portal and generate the URL so that the same can be shared across. As KML can be added to the map only through a web server, we are using the item URL's to add them to the map. Any hint on the code to upload them to portal?
... View more
01-05-2015
04:09 AM
|
0
|
4
|
3357
|
|
POST
|
larry zhang Yes it is just to upload and share. I have verified the KML file via the Add Item button. It works fine there. I have also verified via the link I am trying to use: https://domain.com/portal/sharing/rest/content/users/username/addItem everything works except thro' the code!
... View more
01-05-2015
03:53 AM
|
0
|
0
|
3357
|
|
POST
|
Hi All, I am trying to upload a KML file to portal using the AddItem rest service. I have tried to replicate things from the upload shape file example Add shapefile | ArcGIS API for JavaScript my code looks like, var formId=dom.byId("KMLFile");
var item={
'type':'KML',
'title':'MyKMLFile',
'f':'json',
'callback.html':'textarea'
{;
var requestHandle=esri.request({
url:"https://domain.com/portal/sharing/rest/content/users/username/addItem",
handleAs:"json",
content:"item",
form:formId,
load:this.success,
error:this.failure
}); I get a success message and itemID but the file is not getting uploaded. Please let me know if I am missing something. Thanks. Pramod
... View more
01-05-2015
01:07 AM
|
1
|
8
|
8703
|
|
POST
|
Hi All, I have a raster image which would be updated every 24 hours. I would like to create an image service of it and update the image service with the new raster after the raster has been modified. Is there a way to automate hosting of image service? I have used model builder to host a service definition file earlier. Is there a GP tool to host an image service as well? Thanks,
... View more
03-21-2014
02:14 AM
|
1
|
1
|
1168
|
|
POST
|
@Vince/@Shannon : Thanks for the reply. There is no actual performance issue due to idle connections but it did affect the map services as we had the connection parameter of arcgis set to default value(64). Increasing the connection parameter resolved the issue. We also found that the minimum and maximum instances in arcgis server were set to same value which resulted in creation of redundant instances even when not required.
... View more
09-12-2013
10:13 PM
|
0
|
0
|
1135
|
|
POST
|
There may be 3-4 SQL Server connections established for one connection from ArcGIS. This is for performance reasons as it allows operations to occur in parallel. The error message you are seeing about the maxiumum number of connections being reached is from ArcGIS, and not SQL Server (it's connection maxiumum is 32,000+ connections). You can increase the number of geodatabase connections by using the sdeconfig command to update the CONNECTIONS parameter. It defaults to 64. A number larger than this is probably due to ArcGIS server creating additional instances. -Shannon Yes shannon, we were able to resolve the maximum connection issue by altering the connection parameter. Ya there are about 3 to 4 SQL server connection for every map service. Is there a way we can control them. A few map services are rarely accessed so we don't want their connection to affect the overall performance.
... View more
09-06-2013
01:36 AM
|
0
|
0
|
1135
|
|
POST
|
Hi Pramod, When you start your services, an SDE connection will be made for each number of minimum instances you have set for that service. For example, if the minimum is set to 2, 2 SDE connections will be made. More instances are created when simultaneous requests are made to the same service, and the amount of requests exceeds the available instances. For example, if 3 requests were made to the same service, and only 2 instances were available, another instance will be created. If there a no instances available, i.e. the max number of instances has been reached, the client will have to wait until an instance is returned to the pool before their request is returned. What is the minimum number of instances set to for each of your 18 services? If no other users are connecting through any other clients, i.e. ArcMap/ArcCatalog, and you start your 18 services that each have a minimum number of instances set to 2, you should have 36 SDE connections. Also, when all the users are disconnected from the SDE geodatabase, and all services are stopped, query the sde.sde_process_information table. Check to make sure there are no orphaned connections listed here. Hi Jake , Thanks for the reply. The 40 instances i mentioned are the maximum number of instances that will be created for the 18 map services( each map service has a varied number of max instances ). This should result in 40 connections made to SQL server. But i see multiple connections getting created for the same instance. ( I varified the process ID of instance and the application establishing connection on database ) . I did check for orphaned connections. They are none. The 140 connections seen on SQL are when the map services are restarted and there are no applications consuming them.
... View more
09-04-2013
10:28 PM
|
0
|
0
|
1135
|
|
POST
|
Hi All, We have about 40 ArcGIS Server instance (ArcSOC.exe) set using SDE direct connection. ArcSDE version: 9.3.1 RDBMS: SQL Server 2005 As and when the map services(18 services-->total 40 instances) restart i see about 140 connections getting established in SQL server. Can anybody help me understand how the ArcSOC instances and SQL server connections are related. This increased number of connection is resulting in 'Maximum number of connections to instance exceeded' message to popup. What would be the best way to handle this? We did think of changing the connection value in giomgr.defs file. But i am unable to relate the creation of 140 connections for 40 instances. Is ther something i am missing out?
... View more
09-04-2013
01:38 AM
|
0
|
7
|
1323
|
|
POST
|
Hi all, I am working with this sample https://developers.arcgis.com/en/javascript/jssamples/widget_print.html But unable to get the print widget working when i add graphics(I am trying to present the search results as a graphic layer) or the operational layers to the map. it works only if arcgisonline services are being used. Code sample: http://jsfiddle.net/AtrBj/ Whats the tweak i am missing here?
... View more
06-24-2013
06:47 AM
|
0
|
11
|
1658
|
|
POST
|
Did you verify that the REST endpoint is accessible? Example: http://www.someorganization.com/arcgis/rest/services If you have a way of testing this from outside your network, it is better because you will see what users outside your network will see. A USB cellular modem works well or an iphone or android phone's browser. Or ask a friend who is outside your network to check the REST endpoint. Paul Lohr Hi Paul, The rest endpoint isn't hosted globally. Its available only in intranet. The problem i have is , i am able to create a map using the rest endpoint in arcgis.com but when i open the same in explorer it doesn't work.
... View more
03-18-2013
11:39 PM
|
0
|
0
|
559
|
|
POST
|
I have used my local intranet services on http://www.arcgis.com/home/ successfully and created my own maps out of them! and when i try to open them using explorer online it shows a red exclamation point, and on hover I see text that says �??The source for the layer is inaccessible�?�. Searching in forum for a similar issue i found this thread http://forums.arcgis.com/threads/30923-Unable-to-see-services-or-content-in-ArcGIS-Explorer-Online-but-can-in-ArcGIS.com But the clientaccesspolicy.xml file that the thread suggests is present in the system where the services are hosted. So what am i missing here?? <EDIT> The service is hosted using ArcGIS server for Java. (uses inbuilt tomcat server) The service url looks like this http://myserver:8399/arcgis/rest/services I added the clientaccesspolicy.xml and crossdomain.xml at this location C:\Program Files\ArcGIS\Server10.0\java\manager\service\managerserver\webapps\ROOT After doing this i don't see http://myserver:8399/clientaccesspolicy.xml link working Have i placed the files at the right place for things to work? </EDIT>
... View more
03-18-2013
04:44 AM
|
0
|
2
|
1995
|
|
POST
|
Not sure if this the right place. We have two GIS apps one built using JavaScript API and the other using Sharepoint. Is there a way to integrate them? We essentially are looking to access sharepoint app thro' JSP pages(we have used Javascript API's to build GIS here). Is there something we can do from GIS perspective or its purely an integration workout?
... View more
12-05-2012
11:29 PM
|
0
|
1
|
776
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 11-24-2016 02:36 AM | |
| 1 | 08-01-2017 03:25 AM | |
| 1 | 09-16-2015 09:23 AM | |
| 1 | 03-22-2016 11:13 AM | |
| 1 | 11-24-2016 02:39 AM |
| Online Status |
Offline
|
| Date Last Visited |
05-18-2023
06:35 PM
|