|
POST
|
Correct. You must look at services through the web adaptor so that IIS authenticates you with Kerberos or whatever you are using for WIndows Auth on IIS for ArcGIS Server to expose the secure directories and services. This must also mean that you have AD tied to ArcGIS Server as well. If you were using ArcGIS Store and not AD, you would be able to hit HTTP or HTTPS (6443) services.
... View more
01-06-2016
01:28 PM
|
1
|
0
|
1188
|
|
POST
|
Does this still occur if the black is a color other than 0,0,0 ?
... View more
01-06-2016
01:14 PM
|
0
|
1
|
1742
|
|
POST
|
use http://server.arcgisonline.com/arcgis/services/ for your example. You should see what is listed here:
... View more
01-06-2016
12:54 PM
|
0
|
0
|
1304
|
|
POST
|
Hey Rebecca, Just to clarify, ArcMap does not use REST services, as mentioned in my reply to Vojtech.
... View more
01-06-2016
12:51 PM
|
0
|
3
|
2304
|
|
POST
|
That example you provided is incorrect. (http://sampleserver1.arcgisonline.com/ArcGIS/rest/services) ArcMap uses SOAP services, not REST Services. So your pointer should be a /Service (without the REST) and can be browser verified with ?wdsl. at the end. Here is an example of REST endpoint from ArcGIS Server (using ArcGIS Online): Folder: Canvas To consume this in ArcMap, you call SOAP Like so: I add the ?wsdl so you can 'see' something in the browser as browsers cannot comprehend SOAP like you see in REST. (above example) http://server.arcgisonline.com/arcgis/services/Canvas?wsdl
... View more
01-06-2016
12:45 PM
|
0
|
3
|
1304
|
|
POST
|
Hi, I beleive you misunderstand how ArcGIS Server works or I have misunderstood what you are trying to accomplish. ArcGIS Server It itself does not control time-aware. For any Time aware functionality on the user end, Server must show all records (obviously) so the user can see any selected time period.. ArcGIS Server itself does not control the filtering/queries on the data. The idea is that whatever consumes the service controls the time aware layer, and its time aware data is received by the MapService. (e.g. A Widget in Web Map) will then control what the user sees and access the data via a DateQuery. If you are saying that ArcMap users are consuming the Service (via SOAP service), to only show the latest Month would require customizing ArcMap. If you just want to push the latest month, this is not a 'time aware' thing but a Definition Query. meaning, ArcGIS Server service accessed will only show the last month. I have a feeling however, because you are not clear in your post, that you want to only have a rolling 'latest month' visible via ArcGIS Server? if so, this requires some ETL or custom on the data end, then a View of the month consumed by ArcGIS Server.
... View more
01-06-2016
12:27 PM
|
0
|
2
|
1572
|
|
POST
|
If you want anything that is NOT a numeric number in the text field to show up as NULL in the double field, This works: Id do a check to make sure ISNumeric, if not then output Null. Dim String, Check String = [STRINGFIELD] Check = IsNumeric(String) If Check = True then Output = CDbl(String) else Output = null End if [FIELD] = Output <null> will be what you see in the double field.
... View more
01-06-2016
11:32 AM
|
1
|
9
|
20665
|
|
POST
|
Alternatively, you can use the "Show Codeblock" in the field calculator and then use Output = CDbl( [lFIELDNAME]) [Field] = Output CDbl converts the string to double. You can then add more items such as Replace as well to remove items such as periods or decimals if need be e.g. Output = CDbl( Replace([FIELDNAME],"."," "))
... View more
01-06-2016
11:08 AM
|
2
|
0
|
2826
|
|
POST
|
Correct and fully aware on additional issue of a BUG being Bug -000087825 BUG-000087825 - When a Portal for ArcGIS web map has a layer secur..
... View more
01-05-2016
11:52 AM
|
0
|
0
|
2511
|
|
POST
|
Hi Randy, Yes, I've done that in the past several times but what you are talking about is achieved using ArcGIS Server, NOT a Federated Portal environment, which is what I was discussing and is/was the business MUST. My quote " Thought I would inquire specifics about named users in Portal while Portal is Federated with ArcGIS Server." Once Portal is Federated, Portal now controls authentication, not ArcGIS Server. As for the ArcGIS Server AD being used... If the user is prompted then it also means it is not Web-teir authentication and server is/has the chance to send the prompt for any user that does not have Kerberos auth to the service through the web application. Web-Teir auth which is something id also do and have IIS handle that side of things... then ArcGIS Server either sends the visible service or 403s that service if that user doesnt have access.. that user never knows, just simply doesnt see the layer. Done this for Oil and Gas Companies that only want to allow certain ROLES (groups) to see specific Proposed pipelines and executives to only see addtional info. A Custom SOI is also another fine grain means of security as well... but I digress.
... View more
01-05-2016
11:51 AM
|
0
|
0
|
466
|
|
POST
|
Hi, Correction. The steps used here are not the steps I took. There is NO modifying anything, there is no creating or adding custom widgets.. Reproduce the bug using the following steps after signing into WABde 1. Create New 2. select Default and press NEXT 3.Title = AppTEST Description = BUG Test 4. DO NOTHING 5. Click on "Web AppBuilder for ArcGIS to go back 6. In the WAB List 'Download' AppTest (save to a convenient file drive) 7. On the AppTest.zip file >> right click Extract All... 8. Explore into the unzipped AppTest Directory 9. Highlight all items and right click Send To.. Compressed (Zip) Folder 10. Whatever the name of the zip turns out to be...remember its location 11. in WABde >> Import >> Import from my computer 12. Select the fresh zipped app. 13. Receive "Invalid App" Prompt.
... View more
12-31-2015
07:31 AM
|
0
|
0
|
2229
|
|
POST
|
Hi, Below is just a random run down of possibles to help narrow the issue: Are we confident the apps are deleted? the apps are not here ?: c:xxx\arcgis-web-appbuilder-1.2\server\apps Or in here: server\apps\zips Custom apps is one possibility. the other is: I also know that this is a bug for 1.2 perhaps still exists for 1.3? Simply downloading an existing app.. unzipping, then rezipping and try Import ... will not work. In the past I had tried simply creating a new app... do Nothing to it .. save it.. download it... unzip it..do nothing to it.. rezip it (its root directory) and it will fail to import throwing an 'Invalid App' prompt. - from custom widgets being installed in steapp ? not confirmed.
... View more
12-31-2015
07:23 AM
|
0
|
0
|
1677
|
|
POST
|
Thank you for clarifying. As I suspected...The User that is loading the web application, that consumes the sensitive layers would require a name with Portal.. automatic setup is possible of course. Hmm, causes a problem when one has 300 staff are needed to see sensitive layers. 300 named Portal seats is expensive. Are there any alternatives that I am missing? Happy Holidays to you as well... see you at the Dev Summit!
... View more
12-23-2015
03:25 PM
|
0
|
6
|
2511
|
|
POST
|
Would not federate Server with Portal. There are only a few reasons to federate and none were addressed / discussed by Brian.
... View more
12-23-2015
12:04 PM
|
2
|
0
|
777
|
|
POST
|
Hi, Create a new app, it will show up. You can then go into the app\##\configs\AttributeTable\config_Attribute Table.json... you should see a new ID for that layer. GO back to the original app file find that layer name and update it with the new ID. I dont see why this would break the service though, unless you have schemaLocked = True on the arcgis Service. Or the schema changed... But then I should be asking important questions, such as ... is this Web app developer or Web app in ArcGIS Online.?
... View more
12-22-2015
01:03 PM
|
1
|
1
|
3595
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 09-27-2024 09:04 AM | |
| 1 | 01-06-2016 11:32 AM | |
| 1 | 12-13-2021 10:03 PM | |
| 1 | 07-19-2017 07:31 AM | |
| 1 | 01-18-2016 07:23 AM |
| Online Status |
Offline
|
| Date Last Visited |
04-07-2026
03:02 PM
|