|
POST
|
Joe, I also got same problem and resolved using the steps above. have you tried to restart the Portal for ArcGIS service?
... View more
01-29-2015
01:33 AM
|
0
|
1
|
4945
|
|
POST
|
Thanks heaps Angela, I confirmed this through sde_server_config table directly, default value for maximum connections on 10.3 is 999999. Amri
... View more
01-29-2015
01:05 AM
|
0
|
0
|
849
|
|
POST
|
Hi All, in 10.3 I didn't saw ArcSDE Command line tool, seems Esri has converted the command line tool as geoprocessing toolbox. I'm curious how to increase maximum connection on RDBMS geodatabase in 10.3 version (usually I use ArcSDE Command line tool). is there any geoprocessing toolbox like sdeconfig to alter maximum connections? Please Advice Thank you Amri
... View more
01-28-2015
06:55 PM
|
0
|
2
|
5254
|
|
POST
|
Hi Joe, make sure your domain alias has configured correctly on your portal instead of machine name. here is the steps : 1. login to portal admin : https://yourmachinename.domain:7443/arcgis/portaladmin 2. click system > web adaptors > you will find your webadaptor name. click the web adaptor name, you will get the url like this https://yourmachinename:7443/arcgis/portaladmin/system/webadaptor/cc1dbd26-03ac0497c-69cbd8fc6cc8 (this is random id, maybe different in your machine) 3. in the browser append /edit to the end of the URL like this : https://yourmachinename:7443/arcgis/portaladmin/system/webadaptor/cc1dbd26-03ac0497c-69cbd8fc6cc8/edit then push enter. 4. edit Web adaptor URL, change with your domain. by default the url is machinename > click web adaptor. the portal is restarted, wait for the portal to restart before proceeding. -amri-
... View more
01-27-2015
06:00 PM
|
2
|
6
|
4945
|
|
POST
|
Hi Chris, have you changed init.js and dojo.js on your API to your host ? here is the example after that try to access your api on browser like this : http://yourhost/js/library/3.12/3.12/init.js you will get js script on browser. check all configuration correctly, create simple app like this : <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Simple Map</title>
<link rel="stylesheet" type="text/css" href="http://yourhost/js/library/3.12/3.12/dijit/themes/tundra/tundra.css"/>
<link rel="stylesheet" type="text/css" href="http://yourhost/js/library/3.12/3.12/esri/css/esri.css" />
<script type="text/javascript" src="http://yourhost/js/library/3.12/3.12/init.js"></script>
<script type="text/javascript">
dojo.require("esri.map");
function init() {
var myMap = new esri.Map("mapDiv");
//note that if you do not have public Internet access then you will need to point this url to your own locally accessible cached service.
var myTiledMapServiceLayer = new esri.layers.ArcGISTiledMapServiceLayer("http://server.arcgisonline.com/ArcGIS/rest/services/NGS_Topo_US_2D/MapServer");
myMap.addLayer(myTiledMapServiceLayer);
}
dojo.addOnLoad(init);
</script>
</head>
<body class="tundra">
<div id="mapDiv" style="width:900px; height:600px; border:1px solid #000;"></div>
</body>
</html> good luck
... View more
01-26-2015
02:14 AM
|
0
|
3
|
1160
|
|
POST
|
Finally I found the workaround for this case. I used ago-assistant (https://github.com/esri/ago-assistant) to get feature set notes layer data as json format then convert the data to feature.
... View more
12-16-2014
11:48 PM
|
0
|
0
|
797
|
|
POST
|
Hi Is there a way or method to convert map notes layer in Portal for ArcGIS to feature layer. FYI, I used Portal for ArcGIS 10.2.1. I have compared with ArcGIS online, there have an option to save map notes as layer then we can publish that layer as hosted service. however I didn't find that option in Portal for ArcGIS. is it possible to do in Portal for ArcGIS? any advice would helpful. Many Thanks, Amri
... View more
12-15-2014
05:34 PM
|
0
|
1
|
3435
|
|
POST
|
Hi Geoffrey, I ran the script successfully. in enter server name, put your gis server url without http like this : gis.myserver.com. I got error when I put http also put your txt file without quotes. pfa for the sample scripts
... View more
12-08-2014
08:19 PM
|
0
|
0
|
774
|
|
POST
|
Hi Tom, as far as I know, if you create web app through WAB in AGOL is not able to download. WAB have 2 types: 1. integrated in AGOL/portal that you have used 2. stand alone (WAB for Developer) if you want to get the code, you have to use WAB for Developer instead of WAB on AGOL.
... View more
12-07-2014
06:16 PM
|
0
|
0
|
958
|
|
POST
|
Document file such as .mxd, .sxd, *.3dd cannot be used as usual. you have to import those file in ArcGIS Pro project. create or open your ArcGIS Pro Project (.aprx) then import your map document (.mxd). this is the url link for common question regarding ArcGIS Pro : What's Coming in ArcGIS | Common Questions
... View more
12-07-2014
05:00 PM
|
1
|
0
|
4443
|
|
POST
|
have you added parameter username and password in your proxy file (proxy.config)? another way is add your token in your dynamic map service 1. generate your token through http://host:6080/arcgis/rest 2. put your http referrer or ip 3. define your expiration time 4. click generate token 5. once you get the token, put it on your end point secured rest service Url="http://myserver/ArcGISToken/rest/services/dynimac/MapServer?token=generatedtoken"
... View more
12-03-2014
08:22 PM
|
0
|
1
|
1297
|
|
POST
|
Hi tom, How you setup the proxy in arcgis server? You have to setup the proxy through arcgis server account.this is the important steps due to arcgis will communicate with the proxy using this account. ArcGIS Help 10.1
... View more
12-02-2014
12:53 PM
|
0
|
3
|
2333
|
|
POST
|
could you share your GIS Server log? select your printing tools service as source and see the error messages on there. if printing failed, ArcGIS Server should be recorded in the log. we can find the root cause based on the log. I have attached my gis server log as example
... View more
12-01-2014
05:08 PM
|
0
|
7
|
2333
|
|
POST
|
try to print you secured map services (you will get the errors as you mentioned), after that see the ArcGIS Server log. the error message in ArcGIS server log is the indication for you to know the root cause as I mentioned in previous post.
... View more
11-27-2014
06:37 PM
|
0
|
9
|
2333
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 01-27-2015 06:00 PM | |
| 2 | 02-24-2016 04:18 AM | |
| 1 | 04-24-2015 03:34 AM | |
| 1 | 03-20-2015 06:00 PM | |
| 1 | 06-06-2016 06:39 PM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:23 AM
|