|
POST
|
Schopp, that is expected behavior. Query operation returns the value in the original data type. Whereas Find and Identify operations return formatted string e.g. depending on the format assigned to the field, the return string may look like $123,345.90 or 9.054% etc. Hope this helps.
... View more
05-08-2014
07:54 AM
|
0
|
0
|
864
|
|
POST
|
starting at 10.2 where-clauses that do not conform to the StandardizedQueries specifications get error out. if you really need to use database specifics functions etc. in the where-clause, you need to turn StandardizedQueries off. please read carefully about pros and cons before disabling StandardizedQueries: http://resources.arcgis.com/en/help/main/10.2/index.html#//015400000641000000
... View more
03-04-2014
06:59 AM
|
0
|
0
|
868
|
|
POST
|
Starting at 10.1, ArcGIS Server provides solutions for printing from web applications -- out of the box PrintingTools service is the easy and quick one to start with. http://resources.arcgis.com/en/help/main/10.2/#/Printing_in_web_applications/0154000004w5000000/ have you consider using that instead of your own arcpy export to pdf solution? if so, I was wondering is there any reason you can't use that. thanks.
... View more
03-03-2014
02:02 PM
|
0
|
0
|
1817
|
|
POST
|
But, it says to log into ArcGIS Server Manager and change the default printer page size settings. You need to log on to your server machine using "ArcGIS Server Account" user. Sorry, if there is such confusion. Is it done by setting the default page size for the Server Machine (done outside of ArcGIS Server Manager)? or on each client machine? yep, on the server machine, not on each client machine. But, the problem is my Server Machine where ArcGIS for Server is hosted is not connected to any printer and has no printer drivers/ports installed on it. you don't need to have the server machine connected to any printer. All you need is to install a printer/plotter driver on your server machine, make that the "default printer" and change the "default paper size" of that printer something large enough to fit the largest layout available in your printing service (don't forget about the paper orientation).
... View more
02-28-2014
07:17 AM
|
0
|
0
|
1941
|
|
POST
|
Tim, please see this forum post: http://forums.arcgis.com/threads/64057-Export-WebMap-PDF-Legend?p=227447#post227447
... View more
02-27-2014
09:07 AM
|
0
|
0
|
1941
|
|
POST
|
Aleydis: unfortunately you don't have any other option but installing printer driver on your server to work around this problem with pdf.
... View more
02-05-2014
10:05 AM
|
0
|
0
|
4815
|
|
POST
|
Getting statistics of a query layer is not supported as of today.
... View more
01-24-2014
08:00 AM
|
0
|
1
|
1992
|
|
POST
|
Sometimes, for particular query, the returned values are more than 1,000 where the end-user needs to export them as CSV file (from the web mapping application). I'd recommend to have a gp service which will execute the query, export to a CSV file on the server side and return it by url (or by value, if that is what you want). I'd not recommend to convert a query result to CSV on the client side especially when a query returns a ton of records.
... View more
01-08-2014
07:40 AM
|
0
|
0
|
5170
|
|
POST
|
Tony, Did you try ArcGIS Server Printing Service (new at 10.1)? Did it not work for you? The printing service knows how to work with the dynamic layers with a map service. http://resources.arcgis.com/en/help/main/10.2/#/Printing_in_web_applications/0154000004w5000000/ Please let me know if you have any question. Thanks. Tanu
... View more
01-08-2014
07:31 AM
|
0
|
0
|
554
|
|
POST
|
All, You'd not need to restart a service after publishing just to refresh the choice list. The list should get populated during the publishing time. I was unable to reproduce this behavior in-house. I'd recommend you to contact Esri Tech Support and have an analyst take a look at your individual situations. Sorry about the inconvenience. Tanu
... View more
11-22-2013
08:27 AM
|
0
|
0
|
1010
|
|
POST
|
Josh, Currently LabelinglInfo is not supported for layers in featureCollection (aka graphic layers). to draw labels on top of features, you need to have a separate layer (of point type) inside the featureCollection with geometries defining the location where labels will be drawn and text symbols. Here i have attached a json (modified version of yours) that shows how to draw labels. I have also attached the output from a printing service using the json. Thanks. Tanu
... View more
11-20-2013
10:23 AM
|
0
|
0
|
1739
|
|
POST
|
[update] Here is the KB article targeting the Printing Service http://support.esri.com/en/knowledgebase/techarticles/detail/40538
... View more
11-13-2013
06:45 AM
|
0
|
0
|
4815
|
|
POST
|
Aaron, Unfortunately the problem is a server side issue and I can't think of anything that you could do to work around this problem from the client side for a map service layer. Only if it were (a) a featurelayer and (b)all symbols are simple-symbols (not picture marker/fill symbols), it might have worked for you. I will strongly recommend you to talk to the admin of the server running the Printing Service and have the work around implemented. If the server admin absolutely can't do that: can you use png? this particular issue should not exist with png or jpeg. Tanu
... View more
11-13-2013
06:43 AM
|
0
|
0
|
4815
|
|
POST
|
I don't know whether Oracle supports case insensitive searches... having said that... this seems to be wrong choice as we might have to build different WHERE clauses depending on the RDBMS backend (or is UPPER('field name') LIKE UPPER('%term%') truly universal - at least SQL Server and Oracle?) it seems to me that your this particular problem can be solved with the StandardizedQueries - which is enabled by default. This is a new features starting at 10.2. With StandardizedQueries enabled, you DO NOT need to build different WHERE clauses depending on the backend RDBMS, instead your query MUST conform to StandardizedQueries specifications, and ArcGIS Server will do the conversion for you. http://resources.arcgis.com/en/help/main/10.2/index.html#/Supported_SQL_functions_in_ArcGIS_Server/015400000686000000/ e.g. in this case, simply pass in your where-clause as UPPER('field name') LIKE UPPER('%term%') without worrying about the underlying database.
... View more
11-11-2013
08:24 AM
|
2
|
0
|
1149
|
|
POST
|
YL, in case you can figure out all applicable dispatch zones upfront, you can setup your layer's unique-value-renderer with additional values, even when your layer does not have those values. So, you setup your layer's unique value renderer with all possible dispatch zone id/name and publish. As new features with new values get added to the spatial table, a simple refresh from your web app or arcgis.com map will show new features with new symbols. in case you really need to do dynamic rendering on the server side, here are few links that you may find helpful: About Dynamic Layers: http://resources.arcgis.com/en/help/main/10.2/index.html#/About_dynamic_layers/00sq000000n1000000/ JS API sample on changing layers symbology on dynamically: https://developers.arcgis.com/en/javascript/jssamples/renderer_dynamic_layer_change_attribute.html there is also a task that allows you to get unique values renderer with updated values from server side. https://developers.arcgis.com/en/javascript/jsapi/generaterenderertask-amd.html all ArcGIS Web APIs have similar capabilities.
... View more
10-29-2013
07:48 AM
|
0
|
0
|
955
|
| 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 |
Online
|
| Date Last Visited |
2 hours ago
|