|
POST
|
Hi Nils- If you are using the attachment relate you have to keep in mind that the archiving doesn't traverse relationships on non-versioned data. I think you'll have to disable archiving, enable versioning and then re-enable archiving. -David
... View more
08-14-2014
03:12 PM
|
0
|
2
|
1339
|
|
POST
|
No, server needs the data-store. We have found that things are more stable if the connections are in a secure, shared environemnt. So, even at 10.0 we always did the same thing. What I think you're talking about is the option regarding data store connection same as publisher's connection (ie your desktop sde connection). I personally don't like to rely on my C:\Users\dcoley\AppData\Roaming\ESRI\Desktop10.2 sde connections for publishing, particularly if another publisher needs to access the mxd. So I get around that by always using the data-store connection from my desktop.
... View more
08-14-2014
02:52 PM
|
0
|
4
|
1720
|
|
POST
|
Yes I agree. I've had to do that a few times and re-configuring the web adaptor has always worked for us- David
... View more
08-14-2014
02:42 PM
|
0
|
0
|
1274
|
|
POST
|
Go ahead and place your sde connection files and fdgb's in the server-registered data-store default location, either on your server or shared directory. We use a subfolder in our data-store named DataConnections. Then we define other various folders under data-store containing mxd's to be published. Each of those mxd's is always sourced to a DataConnection connection via unc path. In this way, your published mxd's will always source your data-store connection and not various publisher's desktop connections
... View more
08-14-2014
02:15 PM
|
0
|
6
|
1720
|
|
POST
|
We've always gone in order: 10.1, 10.2, 10.2.1, 10.2.2. Cache bundles worked at every release unitl .2 I'm working with esri now on a ProcMon for further discovery . . .
... View more
08-13-2014
08:56 AM
|
0
|
0
|
1479
|
|
POST
|
Hi Michael, no. The bundle move error (which from what I see is really is a *.bundlex file not being moved from an arcgistemp folder on a gp machine in a cluster environment to a shared cahe directory) bundleissue is brand new at 10.2.2 (to us anyway). I've never encountered an bundlex move error prior to this release since the bundles have been in existence.....
... View more
08-13-2014
08:45 AM
|
0
|
2
|
1479
|
|
POST
|
Thanks Matt, interesing result regarding the Exploded v Compact. I too am working with Jon out of Redlands to get this solved. We ran some I/O tests yesterday using IOzone and thus far have determined that throughput does not seem to be the culprit. We will be running a ProcMon test later today and I will post the results
... View more
08-12-2014
12:08 PM
|
0
|
4
|
2069
|
|
POST
|
Here's what I do: Setup a PointToExtent Function that allows you pass a pointer tolerance in as a parameter base on map extent width in map coordintates thus:
Function pointToExtent (mapMain, point, toleranceInPixel) {
var pixelWidth = mapMain.extent.getWidth() / mapMain.width;
var toleranceInMapCoords = toleranceInPixel * pixelWidth;
return new Extent(point.x - toleranceInMapCoords,
point.y - toleranceInMapCoords,
point.x + toleranceInMapCoords,
point.y + toleranceInMapCoords,
mapMain.spatialReference);
}
then, in on-style wiring of your feature layers' query, pass the function to the geometry property of your query, along with a tolerance setting in pixels. Keep in mind that pixel tolereances change depending on resolution and scale, so you'll have to make some adjustments. Also, Jeff Pace employes a slightly different method that is not as resolution depenedent as what I'm showing here, so I would search his posts as well-
on(lyrName, 'click', function (event) { //mapMain
var query = new Query();
query.geometry = pointToExtent(mapMain, event.mapPoint, 10);
var deferred = lyrF.selectFeatures(query, //featurelayer
FeatureLayer.SELECTION_NEW);
mapMain.infoWindow.setFeatures([deferred]);
mapMain.infoWindow.show(event.mapPoint);
});
Here, '10' is my pixel tolerance in map coords, (meters) and seems to work pretty well for line features in WebMercator
... View more
08-11-2014
03:56 PM
|
1
|
0
|
2670
|
|
POST
|
Very interesting Royce, thanks for the post. I too shall run this by my IT network and storage people to determine if we have something similar happening as well.
... View more
08-07-2014
10:18 AM
|
0
|
10
|
2060
|
|
POST
|
Hi Ian- Correct. I am still using the same method above at 10.2.2 for getting around empty caches when using HARN. Once the data frame has been given a correct transformation, whether from HARN to Standard State Plane or WGS84, then re-set back to HARN, the full caches will be created. A minor work-around really. Thanks David
... View more
07-31-2014
09:18 AM
|
0
|
1
|
1559
|
|
POST
|
Hi all- I actually have an update that disables the popup when one of the measurment tools is selected as opposed to the entire accordion pane in the html:
function disablePopup() {
if (measurement.activeTool == "area" || measurement.activeTool == "distance" || measurement.activeTool == "location"){
mapMain.setInfoWindowOnClick(false);
}
else{
mapMain.setInfoWindowOnClick(true);
}
}
lang.setObject("disablePopup", disablePopup);
the onClick call must still be set on the div pane that contains the measurement dom node. Perhaps a bit more elegant than my earlier solution of disabling popups when the entire pane has the focus, although there are certainly cases where that would be useful as well... Enjoy David
... View more
07-31-2014
09:07 AM
|
1
|
0
|
2682
|
|
POST
|
Hi All- We engineered another solution. As we are using an accordian container we simply provided an argument for the accordion div's onClick Event: <div id="accordion" data-dojo-type="dijit/layout/AccordionContainer" onclick="listenForSelectedChild();"> And then passed in the function from the js file: function listenForSelectedChild(){ if(dijit.byId('accordion').selectedChildWidget.id == "findPane"){ mapMain.setInfoWindowOnClick(false); } else { mapMain.setInfoWindowOnClick(true); } } lang.setObject("listenForSelectedChild", listenForSelectedChild); where setting the object makes the function globally avaibable to the html. In this way, whenever the selected acordion pane has the focus, the popup is disabled. Should work with any controls as well. Perhaps not as elegant as the solution in the thread Robert referred me to, but I was having trouble the dojo/aspect api. Apologies on the non-formatting, as above for Luci the 'advanced editor' doesn't seem to be available... Thanks David
... View more
07-30-2014
02:24 PM
|
1
|
2
|
2682
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 03-27-2026 01:27 PM | |
| 2 | 03-25-2026 06:29 AM | |
| 2 | 03-04-2026 11:14 AM | |
| 1 | 02-26-2026 09:46 AM | |
| 1 | 10-30-2025 11:25 AM |
| Online Status |
Offline
|
| Date Last Visited |
a week ago
|