POST
|
I am trying to use c# to login to a federated portal that uses ldap and receive a token to make requests. I am unable to use the generate token url because when you access the website an alert type window opens to login to (image below). So, the initial get request's response comes up as 401. Anyone have an idea what I should try? TIA.
... View more
05-29-2025
08:22 AM
|
0
|
0
|
225
|
POST
|
My guess is that the script is crashing at some point. I would catch and print the traceback error to the log file for additional info. Here is an example.
... View more
03-11-2025
06:16 AM
|
0
|
0
|
596
|
POST
|
Hello, I have an ERDAS 32bit DEM that I am trying to make into contours. This is my first time dealing with this type of imagery so bare with me. No matter what analysis I run on it (copy raster, clip, raster calculator, export etc.) the resulting image is all one value. Also, when I identify a pixel in the the value is empty on the ERDAS dem (I believe this is normal for a 32bit float)(properties attached). However the image displays fine so I know there is a "value" somewhere it is using to display. I'm assuming this is all do to lack of my knowledge of this file type but how do I run analysis like copy raster or clip on an ERDAS Imagine image 32bit float file? TIA.
... View more
01-24-2025
05:36 AM
|
0
|
1
|
678
|
POST
|
I'm having a similar issue... I am trying to register for the digital access. When I got to the submit screen I had the same result. Nothing to select and total of $0. So, I tried to go through the regular "Register for this event" link and there was no selection for the digital option so I canceled the order. Now, if I select the "Register for digital access" link it takes me to the same selections as the "Register for the event" screen with no digital access option. The screenshot is what I get when trying to register through the "Register for digital access" link. Am I missing something. TIA. @AmyNiessen
... View more
12-03-2024
07:21 AM
|
0
|
0
|
652
|
BLOG
|
I have been working with some xml data lately and have run into a problem with a list of items in the xml. It seems that the input only wants to pick up the last item in the list. Is there a workaround for this type of issue? Thanks. @RJSunderman <data type="list">
<data type="item">
<CFS_number></CFS_number>
<External_Agency_number/>
<Case_Number/>
<Name></Name>
<Codes></Codes>
<Descriptions></Descriptions>
<Description/>
<Priority></Priority>
<Street></Street>
<Unit_number/>
<Latitude></Latitude>
<Longitude></Longitude>
<CFS_Date_Time></CFS_Date_Time>
<Reported_At></Reported_At>
<Responder_Units></Responder_Units>
<Responder_Personnel></Responder_Personnel>
<Primary_Units></Primary_Units>
</data>
<data type="item">
<CFS_number></CFS_number>
<External_Agency_number/>
<Case_Number/>
<Name></Name>
<Codes></Codes>
<Descriptions></Descriptions>
<Description/>
<Priority></Priority>
<Street></Street>
<Unit_number/>
<Latitude></Latitude>
<Longitude></Longitude>
<CFS_Date_Time></CFS_Date_Time>
<Reported_At></Reported_At>
<Responder_Units></Responder_Units>
<Responder_Personnel></Responder_Personnel>
<Primary_Units></Primary_Units>
</data>
</data>
... View more
05-04-2023
09:54 AM
|
0
|
0
|
12204
|
POST
|
Have you tried using the Field Calculator and just add a field with a value to act as a trackid? This might require getting the geoevent definitions setup appropriately between the input and output as well. I hope this helps.
... View more
09-23-2020
01:37 PM
|
0
|
0
|
1303
|
POST
|
When we had issues with delayed messaging it was caused by an anti virus application.
... View more
09-08-2020
06:22 AM
|
1
|
1
|
1521
|
POST
|
Using arcgis js 4.16 legend widget. I have a two tile layers added to the map. For some reason one of the layers gets the symbol from the opposite tile layer. For example, one layer is a tile layer of sanitary sewer and the other is parcels. The sanitary sewer's legend symbol is shown as the parcel's symbol. See pic below. The basic code used is below. Anyone have an idea what would cause this? var parcelLayer = new TileLayer({
url: ""
});
var sanitary = new TileLayer({
url: ""
});
var map = new Map({
basemap: basemap,
layers:[parcelLayer, sanitary]
});
var view = new MapView({
container: "sceneDiv",
map: map,
center: []
});
var legend = new Legend({
view: view,
layerInfos: [{
layer: sanitary,
title: "Legend"
},{
layer: parcelLayer
}]
});
... View more
08-26-2020
07:47 AM
|
0
|
2
|
1375
|
POST
|
Hey guys, I'm just starting down the path of creating tools for arcgis pro. I gotta say, I really miss the python addin days. My question is, is there any other way to create a pro tool without using visual studio (not using script tool)? Lastly, a lot of people are recommending using the community(free) version of visual studio. However, I'm having a hard time justifying the legal use for our organization due to the terms and conditions. I pasted a screenshot of the quick terms and conditions. You can find the full terms and conditions here. We plan on only using VS to create in-house tools and scripts. The only way I can justify it, is if we make all our code open source. Maybe someone can better explain how the community license can legally be used for this purpose. I have a feeling many people are not using it according to the terms and conditions. I would appreciate any insight into this, legal jargon is not my specialty. Thanks.
... View more
08-18-2020
02:10 PM
|
0
|
0
|
763
|
POST
|
I tested this in our geoevent environment and it seemed to work. It resulted in a time of "Mon Aug 03 15:58:04 CDT 2020"... In the last screenshot your field type is "boolean", you should set it to date type. I hope this helps.
... View more
07-29-2020
02:02 PM
|
0
|
1
|
2056
|
POST
|
Have you tried using field calculator to fill in a received field then use the received field in your field calculator for due date instead of calculating it all at once?
... View more
07-29-2020
01:37 PM
|
0
|
3
|
2056
|
POST
|
This ended up being a bad install. Overall, it took us 5 different tries to upgrade from 10.61 to 10.8. On top of that, tech support believes our config file might have been corrupt as well. So, we are having to rebuild the the geoevent services, inputs, outputs, geofences, and definitions.
... View more
07-20-2020
06:48 AM
|
1
|
0
|
1105
|
POST
|
We just upgraded geoevent to 10.8 from 10.6.1 and have encountered this error when we the receive json on a rest end point input us used: com.esri.ges.adapter.genericJson.JsonInboundAdapter Error converting JSON node to GeoEvent. The data is being sent to the endpoint via a python script. Here is a boiled version of what it looks like... import requests
import json
url = <endpoint url>
mes = {"trackID":"testing", "comment":"testing comment"}
r = requests.post(url, json=mes, verify=False)
print(r.status_code)
print(r.content) The data is being sent to the endpoint and the definition is being generated by geoevent correctly but the input is not processing the data appropriately. The input count does not go up and the mentioned error is found in the log. Also, this method worked just fine on the 10.6.1 version. Anyone have an idea on why this would happen? GeoEvent RJ Sunderman
... View more
07-14-2020
01:42 PM
|
0
|
2
|
1183
|
POST
|
Is there a way to display the EditDate field in the field list for the Smart Editor Widget (WAB DEV)? I don't see the field listed in the configuration of the layer. Another option would be to change the format of the "Edited by..." line in the window if that is possible. Any help would be greatly appreciated. Thx.
... View more
06-12-2020
01:24 PM
|
0
|
0
|
684
|
IDEA
|
Similar to Eric's idea, I would be interested in a geoevent processor that could trigger a python script. So, if a certain condition is met a python script would be called. This would provide a lot of flexibility for those who are not familiar with java it also opens up a new ability to extend the GE functionality as a whole i.e. using python geoprocessing tools, reporting, access to custom python geoprocessing tasks etc.
... View more
04-20-2020
10:29 AM
|
0
|
0
|
3867
|
Title | Kudos | Posted |
---|---|---|
1 | 06-19-2018 08:41 AM | |
1 | 03-22-2019 01:19 PM | |
1 | 09-08-2020 06:22 AM | |
1 | 12-10-2015 09:24 AM | |
1 | 07-20-2020 06:48 AM |
Online Status |
Offline
|
Date Last Visited |
a month ago
|