|
POST
|
Change the file directories from '\' to '\\' and see if you can get it working.
... View more
05-28-2014
10:18 AM
|
0
|
0
|
1733
|
|
POST
|
I do not know why you are seeing that message. I would recommend you posting this in the AGOL forums here: http://forums.arcgis.com/forums/30-ArcGIS-Online Russ
... View more
05-28-2014
08:03 AM
|
0
|
0
|
628
|
|
POST
|
What errors are you seeing? I have had other people able to use it without any issue. Are the file directories formatted correctly? Russ
... View more
05-27-2014
10:11 AM
|
0
|
0
|
1733
|
|
POST
|
Can you share your map and service with me and I can take a look into the issue? Thanks Russ
... View more
05-27-2014
06:50 AM
|
0
|
0
|
553
|
|
POST
|
Are you able to login with the admin account once the account setting as been disabled? Russ
... View more
05-26-2014
12:14 PM
|
0
|
0
|
903
|
|
POST
|
with the 10.2.3 release of the app I was not able to reproduce this issue. When i sign into a portal and sign out the portal URL is still displayed. Russ
... View more
05-23-2014
12:38 PM
|
0
|
0
|
1202
|
|
POST
|
We are planning an update for the UC which will address this issue. Here is the python script..watch out for any white spaces that may be generated when copying and pasting..onnce the KB article is released I will point to that support page. First copy the .geodatabase file to your computer. You can get to the .geodatabase file under the ArcGIS_Collector folder > offline data > folder with user account name associated with downloaded data > folder with the webmap id > copy the .geodatabase and you paste it onto your computer.
#!/usr/bin/python
# Import sys, getopt, arceditor, arcpy modules
import sys, getopt, arceditor, arcpy
def main(argv):
input_gdb = 'Enter .geodatabase location'
output_gdb = 'Enter in an existing fgdb location you want data to be exported into'
try:
opts, args = getopt.getopt(argv,"hi:o:",["ifile=","ofile="])
except getopt.GetoptError:
print 'test.py -i <input_gdb> -o <input_gdb>'
sys.exit(2)
for opt, arg in opts:
if opt == '-h':
print 'test.py -i <input_gdb> -o <output_gdb>'
sys.exit()
elif opt in ("-i", "--ifile"):
input_gdb = arg
elif opt in ("-o", "--ofile"):
output_gdb = arg
print 'Input gdb is: "', input_gdb
print 'Output gdb is: "', output_gdb
Temp_xml = "temp.xml"
# Delete the xml workspace document if it exists.
arcpy.Delete_management(Temp_xml)
# Export XML Workspace Document
arcpy.ExportXMLWorkspaceDocument_management(input_gdb, Temp_xml, "DATA", "BINARY", "METADATA")
# Import XML Workspace Document. This assumes that the outputfile geodatabase is EMPTY.
arcpy.ImportXMLWorkspaceDocument_management(output_gdb, Temp_xml, "DATA", "")
# Delete the xml workspace document if it exists.
arcpy.Delete_management(Temp_xml)
if __name__ == "__main__":
main(sys.argv[1:])
Russ
... View more
05-22-2014
02:56 PM
|
0
|
0
|
2086
|
|
POST
|
@pgronli I took a look at your issue and found that this is a currently logged bug on our side and it is being looked into to see what the issue is. It looks like the token is not being used correctly and that is why it is failing. Russ
... View more
05-22-2014
02:43 PM
|
0
|
2
|
2498
|
|
POST
|
I noticed you are using a proxied service in the web map and it is not shared to the group. To be able to load it I will need that added to the group as well. One thing to note is if you are using a service with the credentials embedded make sure you add generate that proxy service using the URL servername/arcgis/rest/services/servicename/featureserver and not servername/arcgis/rest/services/servicename/featureserver/0. If you use the parent level the app should be able to request the replica. If you use the /0 there isnt a way for the app to go to the parent level and access the replica. Russ
... View more
05-22-2014
12:57 PM
|
0
|
0
|
2498
|
|
POST
|
Are you using iOS or Android? I did a quick test on iOS and I am seeing all the fields and domains listed. Russ
... View more
05-22-2014
12:42 PM
|
0
|
0
|
1446
|
|
POST
|
You can create a group and share the service to that group and invite Collector4ArcGIS into that group and I can check it out without having to make the service public. Russ
... View more
05-22-2014
12:01 PM
|
0
|
0
|
1446
|
|
POST
|
Can you send me your service and I can take a look and see if the service is missing any info. Russ
... View more
05-22-2014
11:50 AM
|
0
|
0
|
1446
|
|
POST
|
I believe this is an issue with the size of the upload that you are doing on Android. We are working on a fix to remove this size limitation. We do have a python script that support is writing up a KB article for that can take the .geodatabase file on your device and move it to a file gdb and from there you can merge your data. Russ
... View more
05-22-2014
11:49 AM
|
0
|
0
|
2086
|
|
POST
|
Do you have any other layers in the web map besides the AGOL basemap and a feature service with sync enabled? Do you have any copied layers in the web map? Do you have debug logs enabled on your server and do you see what the error message is when the download fails on the server? If you can share the map and service with a group and invite Collector4ArcGIS into it I can take a look and help spot the issue. Russ
... View more
05-22-2014
08:26 AM
|
0
|
0
|
2498
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | a week ago | |
| 1 | a week ago | |
| 1 | 2 weeks ago | |
| 4 | 2 weeks ago | |
| 3 | 2 weeks ago |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|