POST
|
We have a map with external (non esri) WMS service that show high resolution raster. We created an A0 layout and try to export it to pdf. After about 20 seconds we get small (1Mb) pdf with blank map. If we export to JPEG even on 500DPI it takes time but give us over 50M JPEG file with the raster. If we try to lower the DPI or export A1 layout the pdf is created fine. When the export pdf works the Pro takes less the 1.5Gb of memory and very little CPU. The machine have no resource problem. Our guess is that when you export to JPEG you have a few requests for the service and it works while pdf request one big request that the wms service reject. Anybody have and idea or run into this?
... View more
Monday
|
0
|
0
|
106
|
POST
|
What is changing is that the Pro license will not be "local" (float or single) any more. You can have the Pro license in esri cloud or on local Enterprise only.
... View more
2 weeks ago
|
0
|
0
|
270
|
POST
|
After playing a lot (and consult AI) this is my solution XML <ComboBox x:Name="types" DisplayMemberPath="Name" ItemsSource="{Binding TypesItems}" SelectedItem="{Binding SelectedType, Mode=TwoWay}"/> Helper class: public class MyItemClass
{
public string Name { get; set; }
} Fill the list private ObservableCollection<MyItemClass> _TypesItems;
// fill the list in ctor
TypesItems = new ObservableCollection<MyItemClass>
{
new MyItemClass { Name = "Item 1" },
new MyItemClass { Name = "Item 2" },
new MyItemClass { Name = "Item 3" },
};
public ObservableCollection<MyItemClass> TypesItems
{
get => _TypesItems;
set => SetProperty(ref _TypesItems, value);
}
and finally get the selected private MyItemClass _selectedType;
public MyItemClass SelectedType
{
get => _selectedType;
set => SetProperty(ref _selectedType, value);
}
... View more
3 weeks ago
|
1
|
0
|
309
|
POST
|
Already done this. It does not looks like MVVM - is that the only way?
... View more
3 weeks ago
|
0
|
1
|
328
|
POST
|
I am trying to put a ComboBox in my dockpane with pre defined string values (Something like Polygon/Polyline/Point). They never change. All the examples I found have ObservableCollection with some classes or other complex behavior that I do not need. My ComboBox is coming out empty. Anybody have very simple example on how to do it? Thanks
... View more
3 weeks ago
|
0
|
4
|
380
|
POST
|
Is it possible that you have some services in other directory? The total is for all services without the system/utilities and the shared instance
... View more
4 weeks ago
|
0
|
0
|
85
|
POST
|
Hi Trevor Thanks for your answer. We see two possible solution here 1) A flag that will set the redraw of the labels back to the old version. The help can notify that this is causing performance cost. 2) Option to redraw labels only (reposition labels). We can get the extent change event and run this (If the extent change is very little we might not run it at all). Thanks
... View more
a month ago
|
0
|
2
|
312
|
POST
|
It looks like there is a major different between labels in 100.x and 200.x In 100.x when you pan the labels would be replaced by the new extent. In 200.x it looks like if the label is still within the extent then it will not move or reposition. only if the old label is out side the extent (but the feature is in the extent) then the label will be replaced. While the second method is quicker it show label in non ideal location. It looks very bed for polygon when the first label is drown in the corner (when only the corner of the polygon is in the extent) but the label stay in the corner even when the polygon in in the center of extent. Is there any easy way to set for the old label placement or at least ask the labels to redraw again in new positions Thanks
... View more
09-02-2025
06:25 AM
|
0
|
4
|
451
|
POST
|
Hi I am not sure I understand. Is this in the EB setting? There is nothing wrong with the gp service, it works from all the other applications.
... View more
08-25-2025
09:38 PM
|
0
|
0
|
109
|
POST
|
Hi Derek There are some dat-i and dat.u files there. If you open them in notepad you can see some information on the services action (not sure what it say but the service name is there.. I checked a few systems, there are thousands of them for each system I checked. It does not looks like there is any process that delete them, I saw some files from 3 years ago. The total size is changing from less then 1 Gb to 8-9 Gb. Deleting some old files have big affect on how the server manager statistics response and it looks like on monitor too. I am not sure if it is the number of files or the size. Even if there is no monitor it does not make sense that this directory just keeping bigger and bigger for serve. Thanks
... View more
08-16-2025
09:50 PM
|
0
|
1
|
250
|
POST
|
There are some news. Upgrade to 2025 did not solved the problem. Then we found this: https://community.esri.com/t5/arcgis-monitor-questions/metrics-for-arcgis-server-not-displaying/td-p/1578044 Checking the statistics dir found 2600 files with total size of 3.6Gb. After I understood that the monitor way to get the number of requests and response time is similar to the way in server manager where you open the Logs->statistics I made some tested there too. Any operation on server manager statistics took about 2 minutes (open a report, turn on one service etc.) So then I dropped all the files before 1/1/2025. It left about 900 files with 3Gb volume. Now the server manager report open in about 20 seconds and the monitor return to give the info. The unusual thing about our machine is that it mainly run GP services. We only have 4-5 map services but about 70 gp services. About 20 of them is build in (System and Utilities libraries). Out of the other 50, I just stopped (but not deleted) about 20 so I left with 30 running gp services. Can somebody explain what these files are for? It looks like they have info about each run of each gp service. What do I loose if I drop anything but the last 3 months and why are they do not get deleted automatically?
... View more
08-07-2025
05:32 AM
|
0
|
1
|
307
|
POST
|
Hi @Ke_Xu It is very simple. Create a Python script that get one parameter The script should not do anything else, the problem is before the script is running. You can open a cursor on the FeatureSet and print the coordinates (just for check). In a atbx I created a new script tool, the first parameter is a feature set that get point only (filter in the parameter screen) and pointing to my script. Run and publish. Try to use in experience builder As I said it works in REST, Pro, WebMap, old WAB and EB developer
... View more
08-04-2025
10:18 PM
|
0
|
0
|
205
|
POST
|
I have my own gp service that gets a point as parameter. After I published it I can run it from Pro, I can add it and run t from a WebMap and I can build a Web AppBuilder (old) that running it with no problem. When I try to build experience builder and run it (Enterprise 11.5) I get the error you can see in the attachment. Tring to run it with EB developer works fine!! Is it a bug??
... View more
08-03-2025
10:18 PM
|
0
|
4
|
369
|
POST
|
Hi all The license is permanent. The table of data have 21m records and more records (host information but not services information) are keep coming. I will try to upgrade to 2025.0 next week
... View more
07-28-2025
09:22 PM
|
0
|
0
|
337
|
POST
|
I am using atbx file, that is the default toolbox. This toolbox have no python code in it (The validation code does not published anyway). I found it the easiest way.
... View more
07-23-2025
10:04 PM
|
0
|
0
|
348
|
Title | Kudos | Posted |
---|---|---|
1 | 3 weeks ago | |
2 | 07-21-2025 10:13 PM | |
2 | 06-15-2025 12:55 AM | |
1 | 01-22-2018 02:51 AM | |
1 | 05-10-2025 10:06 PM |
Online Status |
Online
|
Date Last Visited |
yesterday
|