|
POST
|
Hi I want to use an app generate by ExperienceBuilder in an iframe where user is auth. I try to add a "token" URL Parameter to get an automatic login to a non public app (with non public webmap). With a webappbuilder app I write <appurl>?token=<token>. This syntax doesn't work with experience builder. Is there a mean to do that ? thanks Guillaume
... View more
04-28-2021
08:08 AM
|
8
|
20
|
9597
|
|
POST
|
I didn't, i change my ask my admin to bypass the proxy with my machine and install package i need
... View more
04-28-2021
07:49 AM
|
0
|
0
|
10606
|
|
POST
|
Hi, We have a main application that uses the portal's oauth2 authentication. In this app there is an iframe which contains a webapp with a private card. When I go to this part of the application, I am asked to identify myself a second time. : Is ther a mean to share authentication from main app to iframe ? perhaps we can send a token in params or directly in url of webapp in iframe? Share authNamespace from main app to iframe? How can i do ? Thanks. Guillaume
... View more
03-19-2021
06:57 AM
|
0
|
0
|
719
|
|
POST
|
I ask my support and they reply that I can't add pakage or update it for python with a proxy with credentials. The solution is to by pass the proxy when I need to install package. I hope on next update that we can use proxy with credentials to update and install conda package. Thanks
... View more
02-25-2021
12:18 PM
|
0
|
2
|
10738
|
|
POST
|
Hello, Answer is in the subject : to update python I need to know how to set proxy on ArcGIS Pro. I don't find in help. Thanks, Guillaume
... View more
02-22-2021
04:36 AM
|
0
|
5
|
10824
|
|
POST
|
Hi, I want to use this library : https://ignf.github.io/geoportal-access-lib/latest/dist/GpServices.js (documentation : https://geoservices.ign.fr/documentation/utilisation_web/bib-acces.html ) I would like load it when the widget start but I don't know how can i do this. It's ok when I put it in resources of init.js but when there are a new version of webappbuilder, if I forget to change it again widget won't work. So is there a mean to refer this js and acces to Gp in the widget ? Thanks. Guillaume
... View more
02-04-2021
05:36 AM
|
0
|
0
|
661
|
|
IDEA
|
This would be helpful to my organization as well...
... View more
02-01-2021
08:16 AM
|
0
|
0
|
6007
|
|
POST
|
Hi, I want to make a story map (i try with map journal). In this story map my second page is a map of all features which i will explore and explain on other page. I want, if it's possible, to configuer a direct access by clicking on the feature then "more info" on popup and navigate directly to the good part of my story. I can do thi by adding to my webmap url §ion=3 but it open in a new tab. How could we do this ? Thanks Guillaume
... View more
01-20-2021
06:32 AM
|
0
|
0
|
646
|
|
POST
|
Thank you. It works in ArcGIS Pro. In ArcCatalog (ArcMap), I don't find how to publish web tool, I can only publish geoprocess services which doesn't work (i expect that it can't resolve <directory>/connexion.sde/layer)
... View more
01-06-2021
07:34 AM
|
0
|
2
|
1982
|
|
POST
|
Hi, I have 2 feature class in my database. I have a desktop geoprocess which : - Delete all feature in the 2nd feature class - Copy all feature from the 1rst to the 2nd feature class (with some calculation field and filter) I need to share this tools on my arcgis server or portal. I have this tools on arcmap but i can copy it on arcgis pro. How do this ? Thanks Guillaume ARNAUD
... View more
01-06-2021
05:31 AM
|
1
|
4
|
1997
|
|
POST
|
Ok, i don't read this informations on help. We are in 10.6.1 so it's normal. Need to update. Thanks
... View more
11-04-2020
10:39 PM
|
0
|
0
|
3359
|
|
POST
|
Hi, I need to revoke only one token of a specific app. I try to use https://yourportal.domain.com/web_adaptor/sharing/rest/oauth2/revokeToken (Revoke Token—ArcGIS REST API | ArcGIS for Developers ) but it doesn't match. I call url in post in JAVA : String data = ""; int i = 0; for ( Entry<String, String> entry : this.url_param.entrySet() ) { if ( i != 0 ) { data += "&"; } data += URLEncoder.encode( entry.getKey(), "UTF-8" ) + "=" + URLEncoder.encode( entry.getValue(), "UTF-8" ); i += 1; } // création de la connection URL url = new URL( this.adress ); HttpURLConnection conn = (HttpURLConnection) url.openConnection(); conn.setDoOutput( true ); conn.setInstanceFollowRedirects( false ); conn.setRequestMethod( "POST" ); conn.setUseCaches( false ); // envoi de la requête writer = new OutputStreamWriter( conn.getOutputStream(), "UTF-8" ); writer.write( data ); writer.flush(); // lecture de la réponse reader = new BufferedReader( new InputStreamReader( conn.getInputStream(), "UTF-8" ) ); String ligne; this.page = ""; while ( ( ligne = reader.readLine() ) != null ) { this.page += ligne; } The URL seems to be correct : https://lacarto.ledepartement82.fr/portail/sharing/rest/oauth2/revokeToken Parameters to : {f=json, auth_token=<token>, client_id=<appId>} but : {error={code=400, messageCode=GWM_0002, details=[], message=Invalid URL}} Could you help me ? Thanks Guillaume
... View more
11-04-2020
01:00 AM
|
0
|
1
|
3359
|
|
POST
|
Hi, I have a web site (java-js) which use portal authentication. In this web site I need to insert a web app build with WAB. The web map used is useable by the group which can use the web site. I insert it in an iframe in the web site. My problem is : I logged in one time to access to the web site but i need to relog in the iframe. How can i send the authentification to the web app ? Thanks Guillaume ARNAUD
... View more
08-13-2020
02:57 AM
|
0
|
0
|
1056
|
|
POST
|
Hello, I would like to invalidate the session and/or remove token of my user by using portal rest. I see that i can navigate till this address https://<community-url>/users/<userName>/invalidateSessions but i can't see the adress call when i put the button to invalidate session. I also try with https://<oauth2-url>/revokeToken but i have http 400 error : Invalid URL. Could you held me to disconnect my users ? Thanks Guillaume ARNAUD
... View more
06-08-2020
01:27 AM
|
0
|
4
|
3553
|
|
POST
|
After many tries changing rights on files, folders... Moving files on other server, save and restore portal full... I think I found how to do...The owner of Portal need to be in the sudoers and when I use sudo ./upgradeportal.sh -s it seems works.
... View more
08-02-2019
06:54 AM
|
0
|
1
|
1533
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-05-2021 07:54 AM | |
| 1 | 03-23-2023 01:33 AM | |
| 1 | 04-27-2022 05:24 AM | |
| 1 | 04-25-2022 11:35 PM | |
| 8 | 04-28-2021 08:08 AM |
| Online Status |
Offline
|
| Date Last Visited |
04-06-2023
07:33 AM
|