|
POST
|
this might be a good starting point. http://technet.microsoft.com/en-us/library/cc770968(v=WS.10).aspx
... View more
11-15-2013
05:33 AM
|
0
|
0
|
611
|
|
POST
|
You should check with your IT department and confirm the real name field in AD is CN.
... View more
11-15-2013
05:26 AM
|
0
|
0
|
707
|
|
POST
|
Following-up on the original question, in a federated setup, what is the best practice as far as the portal installation location. Should it be installed on a separate machine (VM environment) or on the same machine with the web adaptor? or...? Thank you We ended up with a 3 VM machine setup, 1 for the Web Adapter(this is also going to have a couple Flex apps on it too), one for Portal, and one for ArcGIS Server.
... View more
11-08-2013
07:15 PM
|
0
|
0
|
759
|
|
POST
|
Hi Jacob, If you can, please contact Esri support or your distributor (if you're outside the U.S.) to help you troubleshoot this. -Kim we're working through it now with Esri Tech support, thanks though!!
... View more
10-18-2013
03:34 PM
|
0
|
0
|
1081
|
|
POST
|
I have a Portal setup with the subdomain /portal. I have an ArcGIS sever setup on another Web Adapter on the same server with the subdomain /AGS. when I federate the servers from within my internal network (IE server.internaldomain.com) I can get both machines to federate without issue. When I try to do the same thing from the outside URL (IE gis.MYCOMPANY.com) the 2 machines will not federate. We are using a NAT forwarding to the Web Adapter Server on 443 only for security reasons. when I run Fiddler, I am seeing a 403 error. I don't see any requests being made in fiddler over HTTP so I'm not sure why it's not working. Has anyone had a similar experience?
... View more
10-08-2013
12:35 PM
|
0
|
5
|
4582
|
|
POST
|
yeah that's what i was afraid of. We're going with the same deployment as you are. I've been looking into a split DNS where your internal traffic is redirected to the server and not sent "out" to the internet.
... View more
08-30-2013
04:30 PM
|
0
|
0
|
458
|
|
POST
|
I wanted to setup 2 web adapters, one for internal access one and one for external access. Is this currently possible?
... View more
08-29-2013
06:51 AM
|
0
|
2
|
3600
|
|
POST
|
I haven't done a text one, but I made one that outputs a JSON and you can use that. you'll need to download the ODBC for python, pyodbc but the others are part of python. import pyodbc
import json
import shutil
import collections
import time
import os
os.environ['TDSVER'] = '8.0'
connstr = 'DRIVER={SQL Server};SERVER=SERVERNAME;DATABASE=DATABASENAME;'
conn = pyodbc.connect(connstr)
cursor = conn.cursor()
cursor.execute(""" SELECT field1, field2, field3
FROM TABLENAME """)
rows = cursor.fetchall()
# Convert query to row arrays
rowarray_list = []
for row in rows:
t = (row.field1, row.field2, row.field3)
rowarray_list.append(t)
j = json.dumps(rowarray_list)
rowarrays_file = 'C:\Production\calculation\marcWells_rowarrays.js'
f = open(rowarrays_file,'w')
print >> f, j
# Convert query to objects of key-value pairs
objects_list = []
for row in rows:
d = collections.OrderedDict()
d['field1'] = row.field1
d['field2'] = row.field2
d['field3'] = row.field3
objects_list.append(d)
j = json.dumps(objects_list)
objects_file = 'C:\Production\calculation\marcWells_objects.js'
f = open(objects_file,'w')
print >> f, j
date_string = time.strftime("%Y%m%d%H%M%S")
shutil.copyfile('C:\Production\input\marcWells_objects.js', r'C:\Production\input\marcWells_objects_' + date_string + '.js')
conn.close() the last little bit above copies the last file generated and tags it with the time, then I run this script shortly after to provide the new JSON file. mport shutil
shutil.copyfile('C:\Production\calculation\marcWells_objects.js', r'C:\Production\input\marcWells_objects.js')
conn.close()
... View more
08-09-2013
07:23 AM
|
0
|
0
|
2011
|
|
POST
|
my 10.1.1 toolbox shows up just fine. Like any toolbox, you can browse to it and add it to ArcMap. Both tools work fine for me in 10.2 as well. And as Gordon stated, the FGDB bug is not in-fact a FGDB bug but a Microsoft bug, as it can effect different file types other than those used by Esri.
... View more
08-07-2013
08:49 AM
|
0
|
0
|
2929
|
|
POST
|
Does the portal instance have to be installed on the same machine as ArcGIS Server Advanced? I'd like to locate the 2 installations on separate machines in our VM environment.
... View more
07-31-2013
10:16 AM
|
0
|
6
|
4203
|
|
POST
|
I have a few questions as we prepare to deploy Portal when 10.2 comes out. [INDENT] What is the best practice for deployment, in regards to server resources? Would it be better to deploy Portal on a separate server from ArcGIS for Server? If it should be deployed on a separate server, what are the recommended hardware requirements, are they the same as ArcGIS for Server? Is there any documentation available online to help with deployment? [/INDENT]
... View more
07-17-2013
06:29 AM
|
0
|
3
|
1803
|
|
POST
|
there's a great little piece of python code that'll let you call an ArcGIS Model without having to export it. import arcpy
arcpy.ImportToolbox(r"Path to toolbox connection", "TBX")
arcpy.NAME OF MODEL_TBX()
couple things to note... the path to the connection should be similar to : C:\Users\USERNAME\AppData\Roaming\ESRI\Desktop10.1\ArcCatalog\YOURDATABASE\YOURTOOLBOX or wherever your .sde files are located. you can setup a .sde connection as an Administrator or as the SDE user, whichever model you use for security purposes. Further... The name of the model is not the name you give it in ArcCatalog, it's the internal name to the software. This can be found in the Properties window for the model. It'll be the in the first dialog box. You can also change it to whatever you want. arcpy.NAME OF MODEL_TBX() Lastly, you save this as a .py file that you can then point to in Scheduled Tasks. You'll need to run this script as an administrator on whatever machine you are running the file from. Personally, I think it's easier to make changes to a model as opposed to exporting a model every time you want to change it. In addition, you eliminate the need to cleanup the exported script, I have yet to have an exported python script from ModelBuilder work without some cleanup.
... View more
06-04-2013
07:23 AM
|
0
|
0
|
2248
|
|
POST
|
esri has this in the local government site: http://resources.arcgis.com/en/help/localgovernment/10.1/ it looks like it might do what you want to do with a bit of adaptation.
... View more
01-16-2013
05:57 AM
|
0
|
0
|
544
|
|
POST
|
you get lines through your legend symbols because of this http://support.esri.com/en/knowledgebase/techarticles/detail/40538
... View more
12-20-2012
02:27 PM
|
0
|
0
|
1744
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 05-12-2014 07:07 AM | |
| 1 | 10-14-2015 12:22 PM | |
| 1 | 07-22-2016 06:06 AM | |
| 1 | 12-15-2016 06:32 AM | |
| 1 | 01-19-2016 08:44 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:23 AM
|