POST
|
I'm trying to obtain an updated copy of the ArcGIS CASE Tools to update a Geodatabase schema. The latest download available seems to be for ArcGIS 10.3.1 and refuses to install alongside ArcGIS 10.5.1. Is there an update available to use with Visio 2013 and ArcGIS 10.5+, or have these tools gone the same way as the geodatabase diagrammer? Andrew
... View more
02-19-2018
03:17 AM
|
1
|
1
|
1924
|
DOC
|
Thanks Jake Skinner for the script. I had trouble authenticating with our portal and server as these are only setup with Active Directory users and integrated windows authentication. In the end I adapted your tool to use the windows API which can use built-in authentication to connect as the logged on user, the ArcPy Toolbox may be handy for anyone else in the same boat.
... View more
09-07-2016
06:47 AM
|
0
|
0
|
3646
|
POST
|
Like many here I was really excited to see OGC support improved in ArcGIS Online with the addition of Web Feature Service support, including identify on WFS. In trying the functionality out with some services though I'm struggling, as from trying out the viewer it doesn't implement a spatial operator in the query to the service. Only limiting the getFeature query to the layer, coordinate system and number of features: <GetFeature
xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
xmlns:gml='http://www.opengis.net/gml'
xmlns:ogc='http://www.opengis.net/ogc'
xmlns:wfs='http://www.opengis.net/wfs'
xmlns='http://www.opengis.net/wfs/2.0'
xmlns:fife='http://arcgisweb.fife.gov.uk/geoserver'
version='2.0.0' service='WFS' count='100'>
<Query typeNames='fife:LISTED_BUILDINGS' srsName='EPSG:27700'>
</Query>
</GetFeature> So ArcGIS Online will only ask the service for all features up to the maximum feature count defined in the WFS OGC Options. This is regardless of the extent of the map, so where a service contains more features than the limit it may well return features outside the current map extent. Most services will implement their own limit on the number of features in a response similar to ArcGIS Server Feature Services. You can see the behaviour in this example map which includes a WFS from one of our neighbouring authorties, the WFS contains 6,147 buildings but will only ever return 100 as requested by the AGOL viewer. It would be impractical and slow to always set the map to request every feature in the service. I know not all WFS servers support Spatial Filters on a WFS getFeature request, but can this be implemented in AGOL for servers that do support it? Andrew
... View more
06-22-2016
03:43 AM
|
1
|
1
|
3948
|
POST
|
Thanks very much Ahmed, that works great! I've tested in 10.4, will confirm once I've run it in 10.2.2. I wouldn't have thought of initialising the text symbol property, is there something in the documentation that would hint at that or is that standard practice I'm not aware of? I'd have expected the parser class to initialise it's own properties. I can now parse the string but textparserClass doesn't seem to give any indication once it's parsed the last tag? The Next method doesn't return an enumeration I can loop through. Andrew
... View more
06-21-2016
07:14 AM
|
0
|
1
|
801
|
POST
|
I'm trying to use the SimpleTextParser class to parse text from the map layout that contains text formatting tags. e.g. a string of <ITA>Data Sources</ITA> SimpleTextParser formattingTextParser = new SimpleTextParser();
Boolean bHasTags = false;
formattingTextParser.Text = pTextElement.Text;
formattingTextParser.HasTags(ref bHasTags);
if (bHasTags)
{
// At this point the textsymbol property is null on the text parser. Parse text formatting.
formattingTextParser.Next();
string formattedText = formattingTextParser.TextSymbol.Text;
} I can successfully identify that the text contains tags, but when I try to parse these using the next method a System.AccessViolationException is thrown. Where am I going wrong? The only other reference I can see in the forums is another unhandled exception with this class. Thanks Andrew
... View more
06-19-2016
12:29 PM
|
0
|
3
|
3269
|
POST
|
ArcGIS for Windows Mobile is now fairly hidden away in My ESRI for download. You can find it underneath ArcGIS Desktop and then 'Additional Products' where it's listed as "ArcGIS 10.2.1 for Windows Mobile (compatible with ArcGIS 10.3)". The SDK is there also if you need it.
... View more
06-13-2016
03:40 AM
|
0
|
0
|
365
|
POST
|
Hi Aaron I have the same issue, but do get a little further than you. Before using in ArcGIS Online the ArcGIS Server must be CORS enabled, including if necessary adding your ArcGIS Online Organization url (e.g. https://myorganisation.maps.arcgis.com) to the allowed host names in the ArcGIS Server Admin Directory. Once that has been setup I can add the service directly to a web map with editing enabled, however I still cannot add the feature service as an Item which stores it's credentials. Whenever I try to add our web-tier authenticated service through the 'Add Item..' dialogue, AGOL tries to authenticate with a token rather than asking for, or to save the credentials. I don't understand why AGOL isn't seeing this as a web-tier authenticated service? Also you can try adding your ArcGIS Server to the trusted hosts, this in theory allows AGOL to save and send credentials for web tier authentication, but in practice it doesn't seem to work. Andrew
... View more
01-07-2016
04:30 AM
|
0
|
5
|
2546
|
POST
|
Hi Carlos I'm afraid not - we've quite a few outstanding issues with Portal and integrated windows authentication so I'm trying to fix them before pursuing this one with tech support. Please let us know if you can resolve the problem though. Andrew
... View more
12-04-2015
08:10 AM
|
0
|
0
|
1066
|
POST
|
Hi We have a custom print service hosted on ArcGIS Server 10.3.1 that is being used to print an external (and non-ESRI) WMTS. This has worked fine up until today when a new tilematrixset was added for some of the layers we use, which provides tiles in a different tiling scheme and projection. Following this addition the print service no longer printed maps correctly, as it was ignoring the tileMatrixSet given in the exportwebmap object, and instead selecting the new tilematrixset from the service. The Web_Map_As_JSON submitted to the server is below (I've removed the service URL); Web_Map_as_JSON:{"mapOptions":{"showAttribution":true,"extent":{"xmin":339612.87000012194,"ymin":731752.6299997785,"xmax":339811.27000012196,"ymax":731909.4299997785,"spatialReference":{"wkid":27700}},
"spatialReference":{"wkid":27700},"scale":755.9055118113259},"operationalLayers":[{"id":"os_background_bng_colour","title":"background_bng_colour","opacity":1,"minScale":3779527.5590566304,"maxScale":755.9055118113259,"url":"http://WMTS_URL/wmts/",
"type":"wmts","layer":"background_bng_colour","style":"default","format":"image/png","tileMatrixSet":"scotland_bng"}]}}} The print service accepts this however it retrieves tiles from the other tileMatrixSet for the layer - disregarding the property in the JSON web map. I've confirmed this capturing traffic from ArcGIS Server. Altering the capabilities document to re-order the tilematrixsetlinks for the layer and put the desired matrixset first resolves the problem - it seems the print service uses the first tilematrixset specified for the layer when requesting tiles rather than that specified in the web map. I've attached an example below: <Layer>
<ows:Title>OS Background Stack</ows:Title>
<ows:Abstract></ows:Abstract>
<ows:WGS84BoundingBox>
<ows:LowerCorner>-10.4455381418 54.444252928</ows:LowerCorner>
<ows:UpperCorner>-0.248994254178 61.2560481198</ows:UpperCorner>
</ows:WGS84BoundingBox>
<ows:Identifier>os_background_bng_colour</ows:Identifier>
<Style>
<ows:Identifier>default</ows:Identifier>
</Style>
<Format>image/png</Format>
<TileMatrixSetLink> <!-- moving the desired tile set to be first causes it to be used by the print service -->
<TileMatrixSet>scotland_bng</TileMatrixSet>
</TileMatrixSetLink>
<TileMatrixSetLink>
<TileMatrixSet>scotland_gwm</TileMatrixSet>
</TileMatrixSetLink>
<ResourceURL format="image/png" resourceType="tile" template="http://WMTS_URL/wmts/os_background_bng_colour/{style}/{TileMatrixSet}/{TileMatrix}/{TileCol}/{TileRow}.png"/>
</Layer> Of course this fix will only work if you just need one tile set, and the services are stable enough for you to hand craft a local capabilities document. Hopefully ESRI can update the print services to correctly use the matrix specified. Andrew
... View more
12-04-2015
08:06 AM
|
0
|
0
|
2989
|
POST
|
Thanks Alexander.. I think there is maybe something wrong with my install though I have tried uninstalling and re-installing a couple of times. I get these errors when I try to build with your example: QtWebEngineProcess not found at location C:/Users/andrew/Applications/ArcGIS/AppStudio/bin/bin/QtWebEngineProcess.exe. Trying fallback path... Installed Qt plugins directory not found at location C:/Users/andrew/Applications/ArcGIS/AppStudio/bin/plugins\qtwebengine. Trying application directory... Installed Qt WebEngine locales directory not found at location C:/Users/andrew/Applications/ArcGIS/AppStudio/bin/translations\qtwebengine_locales. Trying application directory... Qt WebEngine locales directory not found at location C:/Users/andrew/Applications/ArcGIS/AppStudio/bin\qtwebengine_locales. Trying fallback directory... Translations MAY NOT not be correct. I'm using the 32-bit windows install. As a workaround I'm just opening the link externally which is working fine for now. Thanks again, Andrew
... View more
10-30-2015
05:07 AM
|
0
|
1
|
1897
|
POST
|
I tried again with qt webview 1.0 which does run however I don't see a page in the app. //------------------------------------------------------------------------------ import QtQuick 2.3 import QtQuick.Controls 1.2 import QtQuick.Layouts 1.1 import QtWebView 1.0 import ArcGIS.AppFramework 1.0 import ArcGIS.AppFramework.Controls 1.0 import ArcGIS.AppFramework.Runtime 1.0 App { id: app width: 800 height: 640 ScrollView { width: 1280 height: 720 WebView { id: webview url: "http://qt-project.org" } } } Has any body successfully setup a web view with app studio?
... View more
10-12-2015
09:21 AM
|
0
|
4
|
1897
|
POST
|
Hi I have installed AppStudio for ArcGIS on Windows from the beta 4 download (v 10.2.5.1079), and am trying to add a WebView to an app but am receiving the error message at build that; module "QtWebKit" is not installed import QtWebKit 3.0 I had been following the samples from Qt for the QML WebKit Web View. I also tried with the Qt Web View 1.0 available from 5.5 but this doesn't seem available either. The what's new indicates that the Web View is available but I'm not sure which we should be using. Can anyone provide some advise and an example that will work with AppStudio for ArcGIS please? I tried both the windows x64 and x86 versions. Thanks Andrew
... View more
10-12-2015
09:08 AM
|
0
|
5
|
7560
|
POST
|
Hi Dinesh I tried really hard to create a custom TiledMapServiceLayer, definining it in full as with the ArcGIS Javascript API, however the map would never load. This was to use a WMTS, and I had specified a custom onRequestTile method that would retrieve the tiles correctly. The map would never fire it's onStatusChanged event, and the layers onRequestTile method would never be called. I came to the conclusion that this wasn't supported and switched to an ArcGIS Tiled Map layer instead.. Andrew
... View more
10-12-2015
08:49 AM
|
0
|
3
|
1330
|
POST
|
Thanks Derek - that could explain a few other issues we are having around Portal. I'll submit a case to ESRI UK Technical Support Andrew
... View more
10-09-2015
02:45 AM
|
0
|
2
|
1066
|
POST
|
Hi, I'm having trouble with our portal instance accessing services from an ArcGIS Server on the same host. When adding a feature or map service from our local (non-federated) ArcGIS Server onto the map all is fine initially. I can see the features, the layers populate and I can configure everything as I like it and save the map. However when I then re-open the map it never loads the layers from the feature service into the table of contents, and so the edit toolbar is never activated. I can see the features on the map, but they don't appear in the layers listing and so we can't interact with them. The following error is shown in the browser console: TypeError: Cannot read property 'trim' of undefined(…) "TypeError: Cannot read property 'trim' of undefined at Object.trim (https://mapsonline.dundeecity.gov.uk/portal/home/10.3.1/js/jsapi/dojo/dojo.js:185:113) at h._checkProtocol (https://mapsonline.dundeecity.gov.uk/portal/home/10.3.1/js/arcgisonline/base.js:222:428) at h._doSignIn.g (https://mapsonline.dundeecity.gov.uk/portal/home/10.3.1/js/arcgisonline/base.js:230:97) at h._doSignIn.s.addCallbacks.c.sinfo_._restInfoDfd (https://mapsonline.dundeecity.gov.uk/portal/home/10.3.1/js/arcgisonline/base.js:233:457) at c (https://mapsonline.dundeecity.gov.uk/portal/home/10.3.1/js/jsapi/dojo/dojo.js:83:221) at d (https://mapsonline.dundeecity.gov.uk/portal/home/10.3.1/js/jsapi/dojo/dojo.js:83:10) at b.Deferred.a.resolve.callback (https://mapsonline.dundeecity.gov.uk/portal/home/10.3.1/js/jsapi/dojo/dojo.js:84:350) at c (https://mapsonline.dundeecity.gov.uk/portal/home/10.3.1/js/jsapi/dojo/dojo.js:83:436) at d (https://mapsonline.dundeecity.gov.uk/portal/home/10.3.1/js/jsapi/dojo/dojo.js:83:10) at b.Deferred.a.resolve.callback (https://mapsonline.dundeecity.gov.uk/portal/home/10.3.1/js/jsapi/dojo/dojo.js:84:350)" This happens regardless of whether the feature services are secured or publicly available. If I add the service using an alternative hostname or the IP address of the ArcGIS Server things work OK, like it's 'tricking' portal into thinking the service are hosted on a different server. Is there a limitation on Portal consuming (and especially editing) ArcGIS Rest services hosted on the same server? All are setup using the Web Adapter. We also use Integrated Windows Authentication but I don't think this is the issue as the problem is the same for anonymous services. Andrew
... View more
10-07-2015
09:56 AM
|
0
|
6
|
4745
|
Title | Kudos | Posted |
---|---|---|
1 | 06-02-2015 04:30 AM | |
1 | 02-19-2018 03:17 AM | |
1 | 06-22-2016 03:43 AM |
Online Status |
Offline
|
Date Last Visited |
11-11-2020
02:23 AM
|