|
POST
|
Thanks Vish. Which version of ArcGIS Server you are using? Will I be able to access that service to repro that in house? I have a feeling that it got fixed recently...
... View more
09-16-2015
09:05 AM
|
0
|
0
|
1628
|
|
POST
|
Vish, Storing credentials with the ExportWebMap Tool should work with non-Esri secured WMTS service too. Could you pls try this in Desktop and have Fiddler (or some other tool) to check what is going on? If that does not help much, I'd suggest you to contact Esri Support and open an incident for further investigation.
... View more
09-15-2015
09:12 AM
|
1
|
2
|
1628
|
|
POST
|
Starting at 10.3.1, both map and feature service supports defining which timezone the date values are stored. This is per service level settings. once you do that, map and feature service will use information to convert date-time values to UTC and you will get correct results in a query output. for more information, please check the help on "dateFieldsTimezoneID" and "dateFieldsRespectsDaylightSavingsTime" in ArcGIS REST API . only caveat for 10.3.1 is that you need to add them manually using Admin API/Site after the service is published... we are planning to improve that experience in future. hope this helps.
... View more
08-27-2015
02:16 PM
|
1
|
4
|
5553
|
|
POST
|
the link you put in your reply takes brings me back to this thread... can you please check the link?
... View more
08-27-2015
11:17 AM
|
0
|
1
|
5046
|
|
POST
|
FYI: case sensitivity in query depends on the underlying database and its settings. Clients like ArcMap or ArcGIS Server simply passes the sql where-clause to the underline database.... are you publishing by copying data on to the server and in that process the data gets copied to a different type of database? that may explain why it works in ArcMap but not on ArcGIS Server.
... View more
08-27-2015
09:58 AM
|
2
|
3
|
5046
|
|
POST
|
Is the datasource a FileGDB when you ran into this issue i.e. pagination fails unless you add ObjectID field? if so, it happens due to a known bug with FileGDB. In general pagination in ArcGIS Server needs Order By field(s), if you don't specify anything in Order By, it uses ObjectId fields as a default field to sort records (pls see the 2nd bullet in "What's new in 10.3" section in ArcGIS REST API help topic). When you specify OutFields (without ObjectID field in there) but nothing in Order By, the sql that goes to the database looks something like 'SELECT F1, F2, F3 FROM TABLE1 ORDER BY ObjectID .... ". FileGDB does not like it when fields in Order By is not part of the SELECT list.
... View more
08-27-2015
09:54 AM
|
1
|
0
|
7782
|
|
POST
|
FileGDB supports pagination starting 10.3.1... to see the complete list of supported databases,, please check "What's New in 10.3.1" and "What's New in 10.3" sections in the ArcGIS REST API help link. Hope this helps.
... View more
08-27-2015
09:34 AM
|
0
|
0
|
1038
|
|
POST
|
I'm not sure I understood this correctly... are you using this in ArcMap or with any web apps? did you happen to try like the following? did it not work? "(" & [FROMLEFT] & "-" & [TOLEFT] & ")"
... View more
02-06-2015
03:44 PM
|
1
|
1
|
890
|
|
POST
|
yes, it works with the printing service hosted by arcgisonline. try with this request: http://utility.arcgisonline.com/arcgis/rest/services/Utilities/PrintingTools/GPServer/Export%20Web%20Map%20Task/execute?Web_Map_as_JSON={+%22mapOptions%22%3A+{+%22extent%22%3A+{+%22xmin%22%3A+-11906049.67132352%2C+%22ymin%22%3A+4401879.312892295%2C+%22xmax%22%3A+-11885488.110714834%2C+%22ymax%22%3A+4415790.852040179%2C+%22spatialReference%22%3A+{+%22wkid%22%3A+102100+}+}%2C+%22spatialReference%22%3A+{+%22wkid%22%3A+102100+}%2C+%22scale%22%3A+72223.8192860011+}%2C+%22operationalLayers%22%3A+%5B+{+%22id%22%3A+%22census%22%2C+%22title%22%3A+%22Census_3222%22%2C+%22opacity%22%3A+1%2C+%22minScale%22%3A+0%2C+%22maxScale%22%3A+0%2C+%22url%22%3A+%22http%3A%2F%2Fsampleserver6.arcgisonline.com%2Farcgis%2Frest%2Fservices%2FCensus%2FMapServer%22+}+%5D%2C+%22layoutOptions%22%3A+{+%22legendOptions%22%3A+{+%22operationalLayers%22%3A+%5B+{+%22id%22%3A+%22census%22+}+%5D+}+}+}&Format=png8&Layout_Template=a4+landscape&env%3AoutSR=&env%3AprocessSR=&returnZ=false&returnM=false&f=html here is the output:
... View more
02-06-2015
11:23 AM
|
0
|
0
|
311
|
|
POST
|
There is another strategy you can consider (since you have 10.1+ server). This solves the problem when you want to draw from a cached map service at smaller scale and draw dynamically at larger scale. This involves making some changes on both client and server side. Server Enable ‘dynamicLayers’ on the cached map service. Client app: Add two service-layers an ArcGISTiledMapServiceLayer an ArcGISDynamicMapserviceLayer both of them pointing to the same cached map service set mutually exclusive scale dependencies to those layers That should do the trick… What will happen is that as you zoom in to larger scale and the ArcGISDynamicMapServiceLayer becomes visible, you web app will send ‘export’ calls (instead of pulling tiles) to the map service. Since the map service is dynamicLayers enabled, it will draw the image from scratch by reading features from the data, drawing etc. (as if it were a dynamic map service) instead of merging and cropping pre-cooked tiles. Hope this helps.
... View more
02-04-2015
09:30 AM
|
1
|
0
|
2640
|
|
POST
|
i see the following error message coming back from your printing service. " Unable to connect to map server at http://services.arcgisonline.com/ArcGIS/rest/services/World_Topo_Map/MapServer " is some kind of firewall or internal network changes happened since Friday last week that makes your printing service not to access map service from arcgisonline? one simple way to check is to log on to your server machine as 'ArcGIS Server Account' user and try to access the above link using your browser.
... View more
02-03-2015
12:41 PM
|
2
|
1
|
2122
|
|
POST
|
Thanks Filip. Yes, as suspected, legend swatches are getting pixelated because map service returns those legends at 96 dpi. There is no workaround that I can think of as of now. pls note this issue is completely different that the known bug that you mentioned at the very beginning of this post. I'd appreciate if could contact Esri Tech Support and submit an enhancement request for this. Thanks.
... View more
01-29-2015
12:47 PM
|
1
|
1
|
1432
|
|
POST
|
I tried the JSON posted by Kelly with my printing service and my templates. I got the output in couple of secs. Brandon, do you have any layers in your template mxd? Did you try recreating the template from scratch? can you share your template with me? i can take a look. Thanks.
... View more
01-29-2015
12:41 PM
|
4
|
1
|
6931
|
|
POST
|
Filip, The printing service asks for legends swatches from the map service and they are always returned as picture symbols and in 96 dpi. May be that is why you are seeing them pixelated in the high dpi output. If possible, can you please share your JSON and I will look into that.
... View more
01-22-2015
09:19 AM
|
1
|
1
|
1432
|
|
POST
|
Just wondering whether you checked out "JSON to Features" GP tool? If you are using ArcObjects, then I believe you can use some of JSON classes and interfaces (like JSONConverterGeometry (ArcObjects Java API)) to do the job.
... View more
01-22-2015
09:12 AM
|
0
|
0
|
3038
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Monday | |
| 1 | a month ago | |
| 1 | 03-06-2026 04:33 PM | |
| 1 | 03-05-2026 03:22 PM | |
| 1 | 03-05-2026 03:25 PM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|