|
POST
|
machine 1 is Windows Server 2012 R2, however machine 2 is windows server 2016.... is this not compatible?
... View more
06-07-2018
05:57 AM
|
0
|
3
|
1038
|
|
POST
|
Hey James, another issue occurred with the same survey. I have a user who submitted 50+ forms and I see on their device they were successfully sent but I do not see the results in the data tab on survey123.arcgis.com I repeated the steps you provided above hoping this would resolve the issue but it did not.
... View more
06-07-2018
04:26 AM
|
0
|
1
|
411
|
|
POST
|
Hey Jonathan, the blog does not mention anything about the SSL/TLS certs in IIS Webserver in regards to the migration. will the same cert still work or will modifications be needed to adjust for the new machine name?
... View more
06-06-2018
05:22 AM
|
0
|
1
|
1038
|
|
BLOG
|
yes join the early adopters community and read through some of the posts there is a link for a how0to send attachments via emails
... View more
06-04-2018
05:34 AM
|
2
|
0
|
15424
|
|
POST
|
can this script be used utilizing enterprise logins rather than AGOL logins?
... View more
06-01-2018
05:10 AM
|
0
|
1
|
5810
|
|
POST
|
great thanks for the feedback Cassidy. I'm sure I will have some follow-up questions down the road
... View more
05-24-2018
07:54 AM
|
0
|
0
|
5375
|
|
BLOG
|
will public forms be enabled for this new feature in the July 3.0 release? Greatly desired for public forms
... View more
05-18-2018
04:32 AM
|
1
|
0
|
15424
|
|
POST
|
I am interested in utilizing ESRI's Solutions manhole assessment schema for manhole assessments. has anyone else used this approach before that complies with the NASSCO standards? Ideally we will import our manhole points, apply the required NASSCO fields,codes (where is a good source for these?) and deploy this to collector for field crews to make assessments. anyone can share their thoughts on this process or what they have done in the past?
... View more
05-17-2018
10:38 AM
|
1
|
5
|
5893
|
|
POST
|
I was able to do this utilizing the Python API, the code is below for anyone else who may need this in the future import arcgis from arcgis.gis import * import os import glob import time gis = GIS(None, "username", "password") contentManager = arcgis.gis.ContentManager(gis) contentManager.create_folder('Folder Name',None) pdf_list = glob.glob(r'C:\path\to\folder\*.pdf') additem = arcgis.gis.ContentManager(gis) for pdf in pdf_list: file_name = os.path.basename(pdf) pdf_properties = {'type':'PDF','title':file_name.split(".")[0],'tags':'pdf, arcgis,', 'access':'Public'} additem.add(pdf_properties,pdf,folder='Historic PDFs') time.sleep(1) item_search = gis.content.search(query='', item_type='PDF') item_search for item in item_search: item.share(everyone=True) time.sleep(1) I had to use the time.sleep(1) otherwise updating the share properties would skip some of the files, I am guessing the calls were being sent to fast for the server to pick up.
... View more
05-17-2018
06:23 AM
|
0
|
4
|
3408
|
|
POST
|
all the pdf names will integers (parcel control numbers) but thanks for the info it will be helpful with other projects
... View more
05-17-2018
05:02 AM
|
0
|
0
|
2035
|
|
POST
|
yes I got the answer on stackoverflow but this still appends the ".pdf" suffix I was able to use pdf_name.split(".")[0] to get the desired results thanks!
... View more
05-16-2018
03:51 PM
|
0
|
2
|
2035
|
|
POST
|
probably a newbie question but here goes: I am adding a large number of PDF's to a newly created folder... I am using glob.glob to grab all file paths into a list I also need to use the data_properties dictionary to add the filename as the items title and not the entire path name. code is below... everything works but its uploading the title as the full path name, i need to split the file path to only grab the files name for title. (before you ask, if I don't use time.sleep the API will skip some items for the sharing between function calls.) method to grab filenames within the for loop and assign to variable to use in the pdf_properties 'title' import arcgis from arcgis.gis import * import os import glob import time gis = GIS(None, "username", "password") contentManager = arcgis.gis.ContentManager(gis) contentManager.create_folder('new folder name,None) pdf_list = glob.glob(r'C:\Users\username\Desktop\pdf\*.pdf') additem = arcgis.gis.ContentManager(gis) for pdf in pdf_list: pdf_properties = {'type':'PDF','title':pdf,'tags':'pdf, arcgis,lakeworth', 'access':'Public'} additem.add(pdf_properties,pdf,folder='Historic PDFs') time.sleep(1) item_search = gis.content.search(query='', item_type='PDF') item_search for item in item_search: item.share(everyone=True) time.sleep(1)
... View more
05-16-2018
01:53 PM
|
0
|
4
|
2110
|
|
POST
|
I figured out that if the images are in a repeat type then it does not display. however if the images are not inside the repeat they will display.
... View more
05-16-2018
04:21 AM
|
0
|
2
|
3036
|
|
POST
|
I need a method to upload roughly 2,000 PDF's into a specific folder in my content (and share to public) All PDF's will be inside the same directory on a network drive. I assume python can handle this but not sure, I see I can upload a geodata (shapefile, layer, map etc.) but not positive about images/PDF's.
... View more
05-14-2018
10:39 AM
|
0
|
7
|
3674
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 02-13-2018 10:15 AM | |
| 1 | 12-21-2017 06:41 AM | |
| 1 | 02-12-2018 01:36 PM | |
| 1 | 08-29-2017 06:30 AM | |
| 1 | 02-13-2018 10:13 AM |