|
POST
|
Is there a way to allow clients to access an Experience Builder application (hosted on IIS) with secure GIS components without requiring them to log into my ArcGIS enterprise Portal? I want to avoid granting portal credentials—even for one-time authentication—as it provides excessive access. Are there alternative authentication methods that will not prompt the Oauth popup to the users?
... View more
03-26-2025
05:59 AM
|
0
|
4
|
781
|
|
POST
|
the printing tools are not shown in the utilities folder in the portal content. kindly advise how to find or re-add it to the portal content. noting that it is existing in the services directory.
... View more
02-06-2025
06:39 AM
|
0
|
2
|
781
|
|
POST
|
Kindly help us better understand the naming of query layers in a map server. What is the meaning of the numbers displayed in the query layer name as shown in the attached screenshot, and is there any way to update this name? Thank You, Elie.
... View more
01-27-2025
03:17 AM
|
0
|
2
|
471
|
|
POST
|
Kindly help me understand these values in feature class properties. and if there is a way to change them.
... View more
01-06-2025
04:56 AM
|
0
|
2
|
868
|
|
POST
|
When using the search widget with the ESRI world geocoder service, the suggestions in the geocoder are different from the results of the find address in the map viewer classic. Suggestion Payload: https://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer/suggest?f=json&text=%D9%85%D8%B1%D9%83%D8%B2%20%D8%A7%D9%84%D9%85%D9%84%D9%83&maxSuggestions=6 Suggestions Results: Find Payload: https://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer/findAddressCandidates?SingleLine=%D9%85%D8%B1%D9%83%D8%B2%20%D8%A7%D9%84%D9%85%D9%84%D9%83&f=json&outSR=%7B%22wkid%22%3A102100%2C%22latestWkid%22%3A3857%7D&outFields=Match_addr%2CAddr_type%2CStAddr%2CCity&maxLocations=5 Find Addresses results is returning different results as such: and sometimes it returns one wrong result.
... View more
12-02-2024
11:33 PM
|
0
|
1
|
724
|
|
POST
|
Thank you everyone for your support. The issue was solved after switching from jetpack compose to normal layout.
... View more
11-07-2024
05:56 AM
|
0
|
0
|
2027
|
|
POST
|
@RamaniGanason hello, thank you for your support. We use Kotlin Jetpack Compose as a development language, Android version 15 with the following workflow: We have a web app javascript that shows an ESRI map with a locate ESRIJs widget, the locate widget is working fine on the web browsers, but it's not working on the Android web view yet it is working on the IOS web view, in addition on android all the needed permissions are enabled.
... View more
11-04-2024
01:48 AM
|
0
|
1
|
1685
|
|
POST
|
@RamaniGanason Location is already enabled as we mentioned in our post. we checked it again and the problem persists.
... View more
10-30-2024
01:18 AM
|
0
|
3
|
1802
|
|
POST
|
@JesseCloutier Since we moved the post to this section we haven't received any feedback. kindly any support is highly appreciated to solve the issue. Thank You,
... View more
10-28-2024
02:29 AM
|
0
|
0
|
1889
|
|
POST
|
@JesseCloutier Thank you. We are using Javascript API locate widget.
... View more
10-23-2024
08:32 AM
|
0
|
2
|
2038
|
|
POST
|
We have a web app that shows an ESRI map with a locate me button, the button is working on the web browser, but it's not working on the Android web view, also the location permission is enabled, see code below: the error we get on the CONSOLE: INFO:CONSOLE(285)] "Error: User denied Geolocation the location permission enabled: requestPermissions(
activity,
arrayOf(android.Manifest.permission.ACCESS_FINE_LOCATION,ACCESS_COARSE_LOCATION),
1)
@SuppressLint("SetJavaScriptEnabled")
@Composable
fun LoadWebView(url: String) {
MyTheme {
Surface(
modifier = Modifier.fillMaxSize(),
color = MaterialTheme.colorScheme.background
) {
Column {
val state = rememberWebViewState(
url
)
val loadingState = state.loadingState
if (loadingState is LoadingState.Loading) {
LinearProgressIndicator(
progress = loadingState.progress,
modifier = Modifier.fillMaxWidth()
)
}
WebView(
state, onCreated = {
it.settings.javaScriptEnabled = true
it.settings.allowContentAccess = true
it.settings.allowFileAccess = true
it.settings.loadWithOverviewMode = true
it.settings.useWideViewPort = true
it.settings.domStorageEnabled = true
it.settings.javaScriptCanOpenWindowsAutomatically=true
it.settings.databaseEnabled = true
it.settings.setSupportMultipleWindows(true)
it.settings.setGeolocationEnabled(true)
it.webChromeClient = object : WebChromeClient() {
override fun onGeolocationPermissionsShowPrompt(
origin: String,
callback: GeolocationPermissions.Callback
) {
callback.invoke(origin, true, false)
}
}
}, modifier = Modifier.fillMaxSize()
)
}
}
}
}
... View more
10-23-2024
12:26 AM
|
0
|
10
|
2500
|
|
POST
|
sorry for being late in replying. I solved this issue by using unique value symbology with auto-generation (list all values) and then changing the symbol for each value separately. that's worked for me.
... View more
08-14-2024
06:18 AM
|
0
|
0
|
2611
|
|
POST
|
The issue persists in AGP 3..3.1 it is a show stopper to work with complex symbology for polyline layers. we are not able to move forward with such behavior. it is noted, the issue faced when using a feature class stored in file geodatabase and enterprise geodatabase. we tried the steps mentioned in the following ESRI technical support page without success.https://support.esri.com/en-us/knowledge-base/error-requested-operation-could-not-be-completed-00002... Also, someone mentioned that ESRI categorized this issue as a bug, but we aren't able to find the bug number. "@ABishop kindly can you head up to the number of the bug mentioned in the URL you inserted in your message? Here is a link to the BUG report site: https://support.esri.com/en/Search-Results#search?q=arcgis-pro&content-type=Bugs" thank you, ER,
... View more
07-12-2024
12:04 AM
|
2
|
11
|
3105
|
|
POST
|
Polyline Symbology error: "Requested operation could not be completed" The issue persists in AGP 3..3.1 it is a show stopper to work with complex symbology for polyline layers. we are not able to move forward with projects. we tried the steps mentioned in the following ESRI technical support page without success.https://support.esri.com/en-us/knowledge-base/error-requested-operation-could-not-be-completed-000029255 @ABishop kindly can you head up to the number of the bug mentioned in the URL you inserted in your message? Here is a link to the BUG report site: https://support.esri.com/en/Search-Results#search?q=arcgis-pro&content-type=Bugs thank you, ER,
... View more
07-11-2024
04:53 AM
|
0
|
0
|
1290
|
|
POST
|
The issue has been solved after applying the following steps: Deleting all the old ArcGIS license files (in case of the existence of any old licenses) Installation for Oracle Instant client and ODBC driver compatible with the latest installed ArcGIS version Creation of oracle Database from the oracle server (using the oracle net manager tool) Using the above connection in the TNS admin path in the environment variable Creating a connection to the Oracle instance from ArcGIS Pro using the sde user and password (HERE the connection asks for the authorization file (.ECP) a copy of the keycode file after renaming it to ECP Restart the Oracle Windows service on the Oracle server Finally, create a connection to the desired Oracle database. Connection Succeeded Thank you All for your cooperation and support.
... View more
02-05-2024
02:45 AM
|
2
|
1
|
4147
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-07-2025 01:19 AM | |
| 1 | 06-19-2025 04:42 AM | |
| 1 | 06-04-2025 04:26 AM | |
| 2 | 07-12-2024 12:04 AM | |
| 1 | 01-18-2024 03:27 AM |
| Online Status |
Offline
|
| Date Last Visited |
Wednesday
|