|
POST
|
Hm, the REST endpoint does show that the renderer matches what we see in the map viewer when just using the feature layer: I wonder if it's something specific to the renderer that can't be drawn outside of an export map request. Can you post the URL to the layer that works correctly?
... View more
10-17-2016
02:15 PM
|
1
|
3
|
2167
|
|
POST
|
Portal by default can be reached through http or https. Login pages are always https, but My Content, the map viewer, groups, etc all can be reached through http, (as long as the option to only use SSL is not checked).
... View more
10-17-2016
11:55 AM
|
0
|
0
|
2854
|
|
POST
|
Mixed mode problems aren't necessarily a Portal issue, but a browser issue. Browsers are designed to warn users of mixed mode content. I'd suggest avoiding that problem altogether by being consistent with the protocol you use. If you have secure services that require logging in, just be sure you create and access the webmaps over https. If they're not secure, you can create and access them through either protocol.
... View more
10-14-2016
09:44 AM
|
0
|
0
|
2854
|
|
POST
|
It doesn't seem like you're using that function to submit any requests. I'd try to replace any hardcoded protocols, (seems like it's http throughout), with the protocol derived from the splitSiteURL function: Ex. url = "{}://{}:{}/arcgis/admin/generateToken?f=json".format(protocol,serverName, serverPort)
... View more
10-11-2016
03:01 PM
|
0
|
1
|
4414
|
|
POST
|
Sounds like you want something like editor tracking, but for a GP service. I don't think that there's anything within the framework to support that. My only thought is to add a parameter so the user can select their username. Since you'll have a defined list of users within your ArcGIS Server security, you could create a dropdown list of the user names, but you're relying on the user to select the correct one. You can probably do this with an SOI.
... View more
10-11-2016
02:24 PM
|
1
|
7
|
5647
|
|
POST
|
It looks like the script gets information about the input Server on line 54: protocol, serverName, serverPort, context = splitSiteURL(agsServerSite)
But then it's hardcoding the http protocol when retrieving the token on line 215: url = "http://{}:{}/arcgis/admin/generateToken?f=json".format(serverName, serverPort)
. If the server site entered is using https and 6443, then that is going to be a problem. The script should really take the protocol as well instead of hardcoding http.
... View more
10-11-2016
01:29 PM
|
1
|
3
|
4414
|
|
POST
|
Good point, Zach. Are you familiar with Python? If so, you can use the Copy_management tool and set the input as a File type. This will set the initial input to the tool as a GPDataFile type, and after enabling uploads on the GP service, will tell the browser that the user can upload a file to that parameter. The file can then be copied to the scratch folder and used as input to the CADToGeodatabase tool. The result requires a resulting map service, as it returns a feature dataset, so you should be good as long as your application can retrieve the resulting map service. You could also loop through the scratch geodatabase and then the feature dataset to find the feature classes if you want to return them individually. I've uploaded a sample for you to take a look at. See if you can grab it from here.
... View more
10-11-2016
09:31 AM
|
2
|
7
|
3853
|
|
POST
|
I don't think many people will be setting up a Web GIS, (portal federated with server, etc), without using some front end to Server that hides 6443 and 6080. Whether this is a web adaptor, reverse proxy or load balancer, there's typically a "cleaner" front end through the standard ports 80 and 443 which leads to a better experience in working with services from the federated Server. It gives you the option of hiding back-end servers that you may not want your users to know about. Certificates aren't really relevant, since you can simply use a CA or domain signed certificate on 6443 if you didn't use the web adaptor. In terms of performance, you shouldn't see any difference in going directly to the ArcGIS Server than going through the web adaptor. If you weren't federating, there may be a stronger argument for using the web adaptor, as you get more options for security, but as you are federating, Portal will be handling the security aspects. Regardless of that, though, I'd recommend using the web adaptor. Set up your signed certificate on 443 in IIS and use that URL as the services URL.
... View more
10-07-2016
10:12 AM
|
1
|
1
|
1234
|
|
POST
|
I'd start with including home or sharing at the end of the URL to make sure it's not working right: https://<portal_webadaptor_machine>/<webadaptorname>/home/ https://<portal_webadaptor_machine>/<webadaptorname>/sharing/ The web adaptor may not redirect correctly if you just go to https://<portal_webadaptor_machine>/<webadaptorname>/. Next, you can try reconfiguring the web adaptor through your browser: Configuring ArcGIS Web Adaptor—Installation Guides (10.3 and 10.3.1) | ArcGIS for Server The link includes ArcGIS for Server in the title but it points to the page for registering the Portal web adaptor.
... View more
10-07-2016
09:56 AM
|
1
|
0
|
3376
|
|
POST
|
What about writing your own script to have the user upload a zip file of the DWG, (input parameter is of File type), the script unzips the zip file, and then processes it?
... View more
10-06-2016
09:50 AM
|
1
|
9
|
3853
|
|
POST
|
You can either use the Admin API or use Server Manager: Admin API: Server Manager: Server Manager simply calls into the Admin API
... View more
10-05-2016
05:50 PM
|
1
|
0
|
4394
|
|
POST
|
It'll definitely restart the Server automatically, so services will go down and come up. How quick that completes will be dependent on how many services you have and the resources on the machine. I'd imagine it copies the config-store and then restarts the Server once the config-store has been copied.
... View more
10-05-2016
05:04 PM
|
0
|
5
|
4394
|
|
POST
|
Thanks for the update, Dave, glad you got things sorted out. While I know you've spent a lot of time on this already, you may want to contact Support and see if you can get a bug logged if this is reproducible on their end as well. It'll be good to get this addressed if it is an issue.
... View more
10-05-2016
01:17 PM
|
0
|
0
|
1965
|
|
POST
|
Are you able to sign into the Admin API? If you look at the status of the machine in machines/<machine_name>/status does the realtime and configured state both say started? Have you tried to restart the ArcGIS Server Windows service?
... View more
10-04-2016
08:10 AM
|
0
|
0
|
1965
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-28-2026 06:05 AM | |
| 1 | 08-26-2016 10:10 AM | |
| 2 | 02-22-2024 07:22 AM | |
| 1 | 06-07-2024 07:11 AM | |
| 4 | 12-12-2024 08:52 AM |
| Online Status |
Offline
|
| Date Last Visited |
06-08-2026
07:43 AM
|