|
POST
|
Thanks @RamaRaomalisetti a few questions: do you have both Pro and Server installed on the same machine? did I understand correctly that you published your print service from Pro 2.9 to Server 10.9.1? can you pls right-click on Export Web Map gp tool in Pro (as seen in the screenshot below), and select Edit command? It will open the script behind the tool in an editor. Pls find the line that executes "ConvertWebMapToArcGISProject" function. And see how many parameters are passed to this function? TanuHoque_1-1705024724008.png
... View more
01-11-2024
05:59 PM
|
0
|
0
|
5878
|
|
IDEA
|
@Bud did you happen to try Create Database View and see if that work? I did a quick test with some made up datasets and it worked for me (fingers crossed). as you know this tool allows you to use sql statements to create a view inside a file gdb. TanuHoque_1-1705024245162.png
... View more
01-11-2024
05:51 PM
|
0
|
0
|
2713
|
|
POST
|
@AspenN here is an example: SELECT fc.*, tbl.* FROM myFC fc INNER JOIN my_non_reg_table tbl ON fc.joinFld = tbl.joinFld
... View more
01-11-2024
03:03 PM
|
0
|
3
|
3596
|
|
POST
|
@AspenN here are two that I can think of. I'm afraid you might not like either of them :(. register your table to your geodatabase, or create a query layer where you join your fc to the table using SQL statement. pls note, this requires both the feature class and table inside the same database. Cross workspace won't work Here is the bug# BUG-000156380 that we have on our side to resolve this issue.
... View more
01-11-2024
12:05 PM
|
1
|
10
|
3712
|
|
POST
|
Thanks @MamoonRasheed @Noah-Sager @MamoonRasheed, the reason https://<LiveIPAddress>:6443 doesn't work is because most likely you don't have valid certificate. As you know, a valid certificate is needed for any https:// protocol, otherwise client app (like web browser or Pro) will ask you as a user to accept that invalid certificate. In case of print service, the job simply fails. I'd recommend you install ArcGIS Web Adaptor, configure that to you server and have a valid certificate install. After that the url of your services will look something like https://<machine_name>.<domain_name>.com/arcgis/rest/services .... and use this new urls in your web app; that should resolve this issue for you as that is the right thing to do... and you don't need to worry about using local-host or local-ip-address. hope this helps Tanu
... View more
01-10-2024
04:50 PM
|
0
|
1
|
3069
|
|
POST
|
@RamaRaomalisetti can you pls elaborate on 'custom print service' part? Did you write you own arcpy based print service? Or you simply run Export Web Map gp tool in ArcGIS Pro 2.9 and publish the result out as a print service?
... View more
01-10-2024
04:28 PM
|
0
|
0
|
5901
|
|
POST
|
@MamoonRasheed I'm interested in knowing why you need to use local ip address?
... View more
01-08-2024
03:02 PM
|
0
|
5
|
3143
|
|
POST
|
@aydemiremrah here is what you can do: make a query call to your boundary layer to get the geometry of the specific grid/boundary that you want use to find all parcels. use the geometry returned from the above request, in another query call that you will make to your parcel layer. This time you will use that geometry as the search geometry. And this will return all parcels that are within or interested by the grid/boundary depending on what spatialRel operator that you use Example: finding a county named Jackson from Missouri. https://sampleserver6.arcgisonline.com/arcgis/rest/services/USA/MapServer/3/query?where=NAME+%3D+%27Jackson%27+and+STATE_NAME+%3D+%27Missouri%27&returnGeometry=true&f=json using the geometry of Jackson county to find all cities (point features) that are within Jackson county https://sampleserver6.arcgisonline.com/arcgis/rest/services/USA/MapServer/0/query?geometry=%7B%22rings%22%3A%5B%5B%5B-94.612469602999965%2C38.837108773000068%5D%2C%5B-94.60928129499996%2C39.044667524000033%5D%2C%5B-94.608136705999982%2C39.112800837000066%5D%2C%5B-94.576633916999981%2C39.12089934100004%5D%2C%5B-94.516390522999984%2C39.151489303000062%5D%2C%5B-94.48561304499998%2C39.144558036000035%5D%2C%5B-94.452859267999941%2C39.125896975000046%5D%2C%5B-94.411826843999961%2C39.160206191000043%5D%2C%5B-94.41540493499997%2C39.195464579000031%5D%2C%5B-94.399123647999943%2C39.19202027800003%5D%2C%5B-94.369963236999979%2C39.165027896000026%5D%2C%5B-94.299129895999954%2C39.23495104400007%5D%2C%5B-94.252497783999956%2C39.231292890000077%5D%2C%5B-94.218165390999957%2C39.206281021000052%5D%2C%5B-94.19375873599995%2C39.214921533000052%5D%2C%5B-94.174196962999986%2C39.206579678000026%5D%2C%5B-94.187052383999969%2C39.184766652000064%5D%2C%5B-94.149210375999985%2C39.178473257000064%5D%2C%5B-94.11246713099996%2C39.142631251000068%5D%2C%5B-94.120424471999968%2C38.913174143000049%5D%2C%5B-94.125848230999964%2C38.830838555000071%5D%2C%5B-94.612469602999965%2C38.837108773000068%5D%5D%5D%7D%7D%5D%7D&geometryType=esriGeometryPolygon&inSR=&spatialRel=esriSpatialRelContains&outFields=*&returnGeometry=true&&f=html returned results of the final query looks like this: TanuHoque_0-1703284816002.png hope this helps.
... View more
12-22-2023
02:40 PM
|
0
|
0
|
927
|
|
IDEA
|
@GeoffHTaylor Just want to check if you got a chance to check this out. Please let us know if this doesn't work for you. Please read "Custom request parameters" section in this help doc: https://pro.arcgis.com/en/pro-app/2.9/help/mapping/layer-properties/add-layers-to-a-map.htm#ESRI_SECTION1_FABB01A75AFE4A1FB0BEC3D7CE74E3C5 TanuHoque_0-1703207016829.png
... View more
12-21-2023
05:04 PM
|
0
|
0
|
2679
|
|
IDEA
|
@HollyTorpey_LSA I'm glad that you found it very useful. I will share your comment with the rest of the team. Comments like this always encourages team to do better 🙂 Thank you so much for letting us know. Tanu, on behalf of the team
... View more
12-20-2023
05:13 PM
|
0
|
0
|
1863
|
|
IDEA
|
Thank you all for your comment to clarify the issue. I just wanted to add a quick note since I see some discussions about how ids get assigned to a layer in Pro. By default ArcGIS Pro does not assign any numeric ID (for the purpose of getting used in a service) to a layer. You must have 'Allow assignment of unique numeric IDs for sharing web layers' options checked on the map's Properties page. When this option is checked on, Pro assigns IDs in some sequential order (starting from 0) to existing layers. As you add new layers, it will assign new ids to those layers as well. These are more or less sequential. These IDs are stored with layers themselves. You can see (and modify if needed) the assigned ID in the layer's Properties page's General tab. Therefore change those layers order in the Contents pane won't impact these IDs. And when you publish this as a service, these IDs get honored and you can access REST resources for those layers using that ID. If the above check box on a map's Properties page is unchecked, and you publish/share it as a service, then auto-generated sequential IDs get assigned to all layers and tables of a map during the startup of the service. I hope this helps.
... View more
12-19-2023
03:11 PM
|
0
|
0
|
10390
|
|
IDEA
|
@stevegourley did you try this option? https://pro.arcgis.com/en/pro-app/latest/help/sharing/overview/assign-layer-ids.htm is it not working for you? thanks
... View more
12-18-2023
03:44 PM
|
0
|
0
|
10601
|
|
POST
|
@vijaybadugu I'd highly recommend you to reach out to Esri Supports and an analyst should be able to help you out. This issue appears to be some a bit more complicated and without knowing all the details, it is hard to provide any solution. thanks
... View more
12-18-2023
02:14 PM
|
0
|
2
|
2372
|
|
POST
|
@CameronLacelle can you pls check and see if the issue that you are running into is similar if not same as the following bug: https://support.esri.com/en-us/bug/unable-to-query-the-map-service-from-the-rest-endpoint-bug-000156380
... View more
12-18-2023
11:33 AM
|
0
|
0
|
1196
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-14-2026 04:42 PM | |
| 2 | 05-11-2026 04:59 PM | |
| 1 | 04-16-2026 01:37 PM | |
| 1 | 03-06-2026 04:33 PM | |
| 1 | 03-05-2026 03:22 PM |
| Online Status |
Offline
|
| Date Last Visited |
Wednesday
|