|
POST
|
I just replied to something similar. Depending on your network envrionment and site architecture, map services with many layers, other complexities or that are under load can still hang at overwrite when specifing 0 minimum pooling instances. But at 10.3, a .glock is not left behind on the service at overwrite failure so you should be able to go right back in, maybe perform a service restart and then you should get a clean overwrite. At least that's been my experience thus far. David
... View more
02-23-2015
01:47 PM
|
0
|
0
|
4264
|
|
POST
|
I would just do a reinstall of server and web adaptor. That way you can reassign the directories and register the server with web adaptor
... View more
02-23-2015
01:36 PM
|
0
|
0
|
1855
|
|
POST
|
Hi Filip, why can't you restart the ArcGIS Server process? David
... View more
02-23-2015
07:13 AM
|
0
|
0
|
1855
|
|
POST
|
Yep, I got it Juan, thanks. Appears to be working well across python, mpc, sdk
... View more
02-19-2015
03:27 PM
|
0
|
0
|
2885
|
|
POST
|
10.2.x has communication issues in both single and multi machine sites that at times resulted in a persistant .glock file remaining when modifying services under load. I usually experienced this on my production site when overwriting services when I set my min pooling instance to 0. When the lock occurs, you will have to stop the ArcServer.exe process on each machine and then delete the lock file if it doesn't auto-kill when you stop the site. Killing the lock has no adverse affects. Server at 10.3 has optimized communication between server machines - I no longer experience this lock.
... View more
02-19-2015
10:24 AM
|
3
|
2
|
2670
|
|
POST
|
That's interesting. We'll be updating our dev instance next week to .3, I'll post back any thing I find....
... View more
02-19-2015
10:15 AM
|
0
|
0
|
2786
|
|
POST
|
Ken, are you saying 10.2.2 command line op 'sdetable -o create_view' will work against a 10.3 instance? Will other 10.2.2 command line ops work such as 'sdetable -o delete'? Thanks David
... View more
02-14-2015
10:07 AM
|
0
|
3
|
2786
|
|
POST
|
Thanks, I think I'm with you. I'm somewhat doing that in another app where a user selects an attribute from a FilteringSelect, the results are passed to my dgrid while graphics are placed on the map. Those graphics could become a featureLayer and that layer could then populate the FeatureTable, I think. To answer your question though, I wanted to explore the dijit's column adding functionality...
... View more
02-14-2015
09:51 AM
|
0
|
0
|
2637
|
|
POST
|
Hi Kelly, thanks. I'm bascially already doing the same thing wih a parcel - property 1:m (not showing require modules and aliases): relGrid = new (declare([Grid, ColumnSet, DijitRegistry, ColumnResizer]))({
//minRowsPerPage: 500,
bufferRows : Infinity,
//selectionMode: "single",
loadingMessage: 'Loading data...',
noDataMessage : "No Records Available",
useTouchScroll: false,
columnSets : [
[
[
{field: 'ID', label: 'Account', resizable: false},
{field: 'LINK', label: 'Information', formatter : function(link) {return "<a target='_blank' href=" + link + ">Full Info</a>";}, resizable: false}
]
],[
[
{field: 'NAME1', label: 'Owner Name', resizable: false},
{field: 'JUST', label: 'Justified Value', formatter: toCurrency, resizable: false},
{field: 'ASSD', label: 'Assessed Value', formatter: toCurrency, resizable: false},
{field: 'YRBL', label: 'Year Built', resizable: false}
//{field: 'LSQFT', label: 'Recorded Area', resizable: false}
]
]
]
}, "divGrid");
//relGrid.startup();
function getLocation(evt) {
mapMain.graphics.clear();
mPoint = evt.mapPoint; //evt.
console.log(evt);
var queryParcels = new Query;
queryParcels.geometry = mPoint; //mPo
var parQuery = lyrParcels.selectFeatures(queryParcels,FeatureLayer.SELECTION_NEW); //deferred evacQuery
console.log(mPoint);
mapMain.infoWindow.setFeatures([parQuery]); //mapMain.infoWindow.setContent(evt.result.name);
mapMain.infoWindow.show(mPoint); ///evt.result.feature.geometry);
if (mPoint !== undefined) {
mapMain.centerAndZoom(mPoint, 13); //7 for sph mPoint 13
}
lyrParcels.on("selection-complete", findRelatedRecords);
function findRelatedRecords(event) {
features = event.features;
relatedParQuery = new RelationshipQuery();
relatedParQuery.outFields = ["OBJECTID","ID", "NAME1", "JUST", "ASSD", "YRBL", "LSQFT"];
relatedParQuery.relationshipId = 1;
relatedParQuery.objectIds = [features[0].attributes.OBJECTID];
lyrParcels.queryRelatedFeatures(relatedParQuery, function(relatedRecords) {
if (!relatedRecords.hasOwnProperty(features[0].attributes.OBJECTID) ) {
console.log("No related records for ObjectID: ", features[0].attributes.OBJECTID);
return;
}
fset = relatedRecords[features[0].attributes.OBJECTID];
for (var i=0 ; i < fset.features.length; i++) {
fset.features.attributes.LINK = "http://www.sc-pa.com/testsearch/parcel/" + fset.features.attributes.ID;
}
console.log(fset);
items = array.map(fset.features, function(feature) { //
return feature.attributes;
});
for (var i=0 ; i < items.length; i++) {
items.JUST = parseInt(items.JUST); //parses numeric integer (parseInt) and float (parseFloat) into an real number
}
for (var i=0 ; i < items.length; i++) {
items.ASSD = parseInt(items.ASSD);
}
for (var i=0 ; i < items.length; i++) {
items.LSQFT = parseInt(items.LSQFT);
}
//Create data object to be used in store
relData = {
identifier: "OBJECTID", //This field needs to have unique values
label: "OBJECTID", //Name field for display. Not pertinent to a grid but may be used elsewhere.
items: items
};
/* for (var i=0 ; i < items.length; i++) { //this items loop will get the IDs, but will only pass the last value to our hyperlink field
pid = items.ID;
console.log(pid);
}*/
//Create data store and bind to grid.
relStore = new Memory({
data: relData
});
//console.log(relStore);
relGrid.set("store", relStore);
//relGrid.set("query", {OBJECTID: "*"}); //filters what?
});
//if (!gridPane._showing) {
// gridPane.toggle();
//}
}
Not quite as elegant as yours but it works well and handles the links and sorting requierments needed for numeric columns in my dGrid. I was asking about moving to featureTable because I am looking for maybe a little better dom node solution because I want the dGrid to play well on tablets without maybe having to go to dojox. Are you saying I should be able to pass this store into a featureTable instead of my dGrid?
... View more
02-13-2015
01:33 PM
|
0
|
5
|
2637
|
|
POST
|
Hi- Has anyone used the FeatureTable dijit with a RelationshipQuery - i.e. to return related records? Maybe the RelationshipQuery has to come from a TableDataSource? Thanks- David
... View more
02-12-2015
04:13 PM
|
0
|
8
|
6920
|
|
POST
|
Well sad to say that in our clustered production envrionment the 'Update Storage Format' appears to be corrupting the existing 10.2.2 bundles when upgrading to 10.3 format. This did not occur on my stand-alone dev machine. In prodcution, the tool runs correctly, but then to tiles are visible. Upon running a recreate all tiles, the bundle move errors occur even with no load on the service. As such, I am deleting and the recreating new caches. Once I have some new caches in place, I'll re-try a recreate_all and post back what I find....
... View more
02-12-2015
03:18 PM
|
0
|
8
|
3909
|
|
POST
|
Hey Royce - I just got my production environment updated to 10.3 and am itching to get started with collector now that it will support versioned edits. Since I think we have similar architecture I'll get back to you and the community on this post with any findings... Thanks David
... View more
02-10-2015
12:17 PM
|
0
|
3
|
1863
|
|
POST
|
As noted earlier - I have successfully downloaded a mobile project from ArcServer 10.3 mobile content server and synchronized downloads and uploads from a 10.2 mobile project deployed on Windows 7-64. I am unable to test a Windows Mobile deployment. By keeping a desktop at one of the 10.2 releases, you can continue to publish a map and mobile service to ArcServer 10.3, create the necessary mobile cache, download projects from the mobile content server, and synchronize data changes back to the server. As soon as ArcGIS for Windows Mobile 10.2.1 comes out, I can update my remaining desktops. David
... View more
02-05-2015
03:28 PM
|
0
|
7
|
2885
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 4 weeks ago | |
| 1 | a month ago | |
| 6 | 06-25-2026 07:23 AM | |
| 1 | 06-17-2026 06:04 AM | |
| 1 | 06-08-2026 08:37 AM |
| Online Status |
Offline
|
| Date Last Visited |
Friday
|