|
POST
|
Hi Massimo Dragan, I've just tested to poll features from the service (Layer: QPF 24 Hour Day 1) and it works fine. All I did was adding the Server (https://idpgis.ncep.noaa.gov/arcgis) to the Datastore: I am able to select the layer and the polling looks fine for me, without looking deeper into the incoming data. Just try again Best, Stefan
... View more
08-31-2020
11:40 PM
|
0
|
1
|
871
|
|
POST
|
Hi Matt Fancher, if it is easy for you to separate the business logic in the old processor, you could also take one of the sample processor delivered with 10.7.1 and just add your business logic from the old processor. Best, Stefan
... View more
06-15-2020
06:10 AM
|
0
|
0
|
1172
|
|
POST
|
Hi Matt Fancher, there are a lot of releases in between this two versions. A lot of classes have been renamed or removed, some open source libraries have been exchanged. Also GeoEvent is now using the Open JDK instead of the Oracle JDK. I know that between some versions it was quite easy to upgrade and between some versions there was a little bit more work to do. How complex is the processor? I would suggest to just reference the 10.7.1 GeoEvent SDK and check the compiling issues. Try to fix them, and if you are running into bigger problems you could ask here with a concrete problem. Best, Stefan
... View more
06-14-2020
11:27 PM
|
2
|
2
|
1172
|
|
POST
|
Hopefully it will be fixed soon: BUG-000129338: Map services are not available in the Layer options when trying to configure Attribute Action in the Smart Editor widget
... View more
05-28-2020
01:21 AM
|
0
|
0
|
2199
|
|
POST
|
Hi Esri guy, can you provide some more information to this issue? Some logfiles from the moment you add the custom component would be very helpful. For the moment just some information that might be helpful. When deleting the content of the data folder, the GeoEvent must be stopped. When removing the JAR Files / custom components from the deploy folder the GeoEvent should not be stopped. Did you deploy the custom components by uploading them in the GeoEvent Manager? I prefer to copy them into the deploy folder. If I want to upgrade a already existing JAR, always delete the existing one first and then copy the new JAR into the deploy folder. To provide useful logs you could: remove the custom components from deploy stop GeoEvent clear the data folder start GeoEvent check if GeoEvent started properly deploy the components check the log file (you could also clean the logfile before deploying) Best, Stefan
... View more
05-26-2020
11:19 PM
|
1
|
1
|
1242
|
|
POST
|
Hey, after upgrading an ArcGIS Enterprise Environment from 10.7.1 to 10.8 we are having some trouble with the Smart Editor Widget. The Widget is configured to do some attribute actions if the feature is intersecting the given layer. In 10.7.1 it was possible to select a MapService a reference layer in the drop down menu: After upgrading to 10.8 this is not possible anymore. Using the same WebMap only Feature Services are shown: This looks like a bug in the Smart Editor Widget. Hopefully MapService are still supported here, did not find anything helpful for this problem in the documentation: Smart Editor widget—Web AppBuilder for ArcGIS | Documentation We also don't want to deploy a old version of the Smart Editor Widget as custom Widget, because it looks like there has also been some good changes in the new version. For the Screenshots above we tried to use a old version a custom widget just to reproduce it with 10.8 and the same WebMap. I hope for some Feedback Best, Stefan
... View more
05-26-2020
07:23 AM
|
1
|
4
|
2309
|
|
POST
|
Hey, we are currently working with the ArcGIS API for Python and need to connect to a standalone server using IWA. Is IWA supported for standalone servers and what is the trick that we missed? arcgis.gis.server module — arcgis 1.8.0 documentation Using IWA for portal (GIS) works fine, and I guess also works for federated servers. Any hint is appreciated. Best, Stefan
... View more
05-15-2020
07:12 AM
|
0
|
0
|
874
|
|
POST
|
Hi Teejay Sankar, so FacilityName is your TACK_ID and u defined it as Unique Feature Identifier Field in the Update a Feature output connector. In this case the output connector will update the row if there is already a row with the given FacilityName, otherwise a new row will be inserted. But I have no idea what do you want to tell us with "FacilityName = DriverName". Is this a condition that both Field should be equal to insert or update at all? Some more information would be helpful. Best, Stefan
... View more
05-08-2020
05:29 AM
|
0
|
0
|
869
|
|
POST
|
Hi najeeb hall, the error message directly below the transport error might be more important. This could be a problem with RabbitMQ. Check out this Post: Geoevent Server Error : Failed to create connection cxn-34200 c On which Version are you running? Did you install ArcGIS Server Patches or GeoEvent Patches? Best, Stefan
... View more
05-04-2020
12:21 AM
|
0
|
1
|
758
|
|
POST
|
Hey Esri guy, the WebAdaptor does not support to access the GeoEvent Manager, only the ArcGIS Server Manager that is also installed. But you can use URL Rewrite in the same IIS to forward the Requests to the GeoEvent Manager. You need to install: Microsoft Application Request Routing IIS URL Rewrite Module2 Next Step is to create the Inbound Rule on you Default Site (URL Rewrite). If you want the GeoEvent Manager available via https://yourdomain.com/geoevent/manager you could use the following Regular Expression: ^geoevent/(.*) and perform the rewrite Action to: https://yourservername:6143/{R:0} Be aware, if you close the Port 6143 and you want to use Stream Service you have to configure some more stuff. In this case you need to install the WebSocket protocol on your IIS, add some additional rules to the URL Rewrite and add the WebSocketContextURL to your system properties. Best, Stefan
... View more
05-04-2020
12:14 AM
|
3
|
2
|
3251
|
|
POST
|
Hi Georges Dupont, this file is part of your GeoEvent Server Installation: C:\Program Files\ArcGIS\Server\GeoEvent\system\com\esri\ges\framework\transport\http-transport Best, Stefan
... View more
04-20-2020
11:21 PM
|
0
|
1
|
811
|
|
POST
|
Hi Muhammad Waqar ul Islam, my favorite option would be to develop a custom transporter to create your own input connector that is able to connect to an oracle database. In this case you will receive the data very performant. For none developer I would try to use a query layer (pointing to the oracle view) and publish it as map service. GeoEvent is able to send a query to this map service containing the query layer. I am not sure how performant this solution is, but it should work. Best, Stefan
... View more
04-20-2020
02:53 AM
|
0
|
0
|
596
|
|
POST
|
Hi James Crandall, yes GeoEvent can Poll a REST Endpoint in a interval of you choice to receive the data and update a feature class. As Input Connector you can use "Poll an External Website for JSON". This Input Connector will perform a HTTP Request to the provided URL and expect JSON as result. There are a few parameters you should be aware of. "JSON Object Name" can be used to define the root node of your JSON. In this case it could be "results", but i am still not 100% clear with your JSON. It is not valid. Does result only contain on object and all the features you want to add are located at "results[0].result"? "Construct Geometry From Fields" can be used to automatically generate a Geometry from pointX and pointY. If the inner "result" is your root element you can just write the names of the fields as X and Y because they are on the root level. GeoEvent will also create a GeoEvent definition with a hierarchical structure that matches to your data. You should check if all datatypes are correct and maybe edit them if they are not correct. This is a automatic process according to the first feature that will be parsed. If you want to write everything to one feature class you have to flatten the incoming data. Not sure if you already know how the output should look like, but the samples list might be a challenge. To flatten the data you create one more GeoEventDefinition that contains all field on the root level and does not contain any list. Using the Processor "Field Mapper" in the GeoEvent Service you can map the fields to the new GeoEvent Definition. The last step would be to create an output "Update a Feature" to write all the data to your feature class. The output connector (wizard) can create publish a new feature class that matches to the GeoEvent Definition. Hope this helps. It should also be possible to write into two different outputs. You could write the results to a feature class and the samples to a Table adding some foreign key if available. But this is an advanced topic. First of all you should try if the easy way works like expected. Best, Stefan
... View more
04-08-2020
11:47 PM
|
0
|
1
|
1904
|
|
POST
|
Hi James Crandall, i am not sure if i understand you question correct. First of all some questions from my side, is the JSON example generated by the Geoprocessing Service or is it manual generated? Looks like there are some bracket issues. But when i understand it correct, every result has the attributes pointX and pointY. Do you want to access this attributes to have a Geometry? For just xy this is easy using Build Geometry from Fields. Maybe I can help you if you provide some more information. Best, Stefan
... View more
04-08-2020
02:02 AM
|
1
|
3
|
1904
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-15-2020 05:26 AM | |
| 1 | 10-22-2020 11:33 PM | |
| 1 | 05-15-2022 11:41 PM | |
| 1 | 11-12-2020 04:59 AM | |
| 1 | 01-08-2021 01:27 AM |
| Online Status |
Offline
|
| Date Last Visited |
10-17-2023
08:02 AM
|