POST
|
Hello, I have an application done in WebAppBuilder dev. I want to reuse the current user token to authenticate my user on a external API. Can it be done?
... View more
02-08-2021
01:07 PM
|
0
|
0
|
93
|
POST
|
I contacted the support and we resolved the problem. We enabled Debug logs on the Server and found an error stating an user, ip and database that couldnt be reached. It was the Data Store database for the hosted features. Specifically, the user for Insights. We had to use AllowConnection utility with the information form the logs and all was fine after: https://enterprise.arcgis.com/en/data-store/latest/install/windows/data-store-utility-reference.htm#ESRI_SECTION1_BA475E64731246D4AD57055E4979111F We did try before to uninstall and reinstall both Insight components on Server and Portal but it did nothing.
... View more
02-08-2021
12:37 PM
|
0
|
0
|
202
|
POST
|
Hello, I've setup Insight in December and created some test workspace, but now I cannot access any of them nor create a new one. In the console I see https://myserver/arcgis/rest/services/Hosted/f406fb8b/WorkspaceServer?f=json&token=73h92GHySlhZcqts1Q1... not responding and when I check the folder Hosted on my Arcgis Server, I can see the different workspace but the pages doesnt respond. Server 10.6.1 Federated with Portal
... View more
01-26-2021
05:58 AM
|
0
|
4
|
246
|
POST
|
I have a popup configured for a layer in my web map. When I click on a feature on mobile, the Popup show "1 of 1" or "No information" even if I have ?locale=fr in my url parameters. When I click te arrow to see the feature, the true popup with the information is correctly set in French. I use WAB Dev 2.12 Thanks
... View more
01-22-2021
06:27 AM
|
0
|
0
|
99
|
POST
|
Instead of using the proxy in WAB to handle the cross domain problem, I passed in a service that handle CORS and all is fine now: https://cors-anywhere.herokuapp.com/ I'll setup a cors-anywhere on my client's server but at least I know that works with this one.
... View more
02-27-2018
08:41 AM
|
0
|
0
|
333
|
POST
|
It's a system that automates sms and calls in a city.
... View more
02-23-2018
12:40 PM
|
0
|
4
|
251
|
POST
|
Pretty straightforward I guess: var xhr = new XMLHttpRequest(); xhr.open('POST',esri.config.defaults.io.proxyUrl + '?' + this.somumWebURL,true); var soapRequest = ( '<?xml version="1.0" encoding="utf-8"?>' + '<soap:Envelope xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance "' + ' xmlns:xsd=" http://www.w3.org/2001/XMLSchema "' + ' xmlns:soap=" http://schemas.xmlsoap.org/soap/envelope/ ">' + '<soap:Body>' + ..................... '</soap:Body>' + '</soap:Envelope>' ); xhr.onreadystatechange = dojo.hitch(this,function() { if (xhr.readyState == 4 && xhr.status == 200) { this.loadSOAPResponse(xhr.responseXML); } else { this.setErrorMessage(xhr.status); } }); xhr.setRequestHeader('Content-Type', 'text/xml; charset=utf8'); xhr.send(soapRequest); The problem really is the proxy.js included with WAB. I'm currently trying to find how it process my xml. I'll return with my findings.
... View more
02-22-2018
01:42 PM
|
1
|
1
|
251
|
POST
|
You mean in WAB? Because I have another application that uses the 3.16 JS API and it works just fine.
... View more
02-22-2018
07:05 AM
|
0
|
3
|
251
|
POST
|
I'm trying to POST a SOAP request on a service not under my control. Since it's cross domain, I need to use a proxy. I am only using Postman for now. When I call the service directly, the response is good. But when I add https://myserver:3344/proxy.js? before my service url in postman. The service return me "Server was unable to process request. ---> Root element is missing." meaning that my xml I sent is not good anymore. Can I have some help with SOAP request using the default proxy coming with WebApp Builder? Is it supported? Thanks.
... View more
02-21-2018
01:34 PM
|
0
|
12
|
1475
|
Online Status |
Offline
|
Date Last Visited |
3 weeks ago
|