|
POST
|
Sorry for cross posting but not getting any hits on the Server - General forum. Is it possible to use local users/groups in security roles in 10.1 like you could in 10.0? original post here - '>http://forums.arcgis.com/threads/73784-How-do-you-access-local-group-users-in-Server-Manager-Security-roles-users Thanks, TG
... View more
12-21-2012
06:56 AM
|
0
|
2
|
1050
|
|
POST
|
I can't figure this out, but am hoping it can be done. In Server 10.0 I could grab a group from the local server and us it for security on a folder of services. Is this possible in 10.1? I've tried the following config settings which don't work - Users from existing system (Windows Domain) & Roles from built-in store when prompted for the windows credentials, I've tried entering <server>\local_user .\local_user and it allows returns an ldap related error. only if I give it a domain\domain_user will it work. I found it very easy in 10.0 to set up local groups and add domain accounts to them for security. If I can only get users from Active Directory, how do I add everyone to a 'users' group, so our open access/base data services can be viewed by anyone on the domain? Any and all suggestions welcome! Thanks, Terry
... View more
12-18-2012
08:04 AM
|
0
|
4
|
1980
|
|
POST
|
After spending most of yesterday fighting with this, including over an hour of screen sharing w/ Esri Tech Support, I got past the mysterious 'Could not find any recognizable digits' error. In another post here in the Installation forum someone mentioned they were getting the same error in IE but get the WA to configure using Chrome. I started messing with IE settings & eventually got it to work - I added the server to the 'Local Intranet' zone in IE's security settings. Hope this can help someone else from hours of frustration.. TG also, found this was getting logged in the WA's folder under wwwroot (log.txt) - Log Entry : 12/14/2012 7:38:42 AM Request failed http://<server>/arcgis/webadaptor/Config.aspx :Could not find any recognizable digits. : at System.ParseNumbers.StringToInt(String s, Int32 radix, Int32 flags, Int32* currPos) at System.Convert.ToByte(String value, Int32 fromBase) at ESRI.ArcGIS.WebAdaptor.Utility.HexStrToBytes(String hex) at ESRI.ArcGIS.WebAdaptor.Config.Configure(Object sender, EventArgs e) -------------------------------
... View more
12-14-2012
09:38 AM
|
2
|
3
|
2475
|
|
POST
|
Hi Zachary, I had deleted the previous 'arcgis' folder and Virtual Dir in IIS - you get a warning saying it already exists when trying to run the WA install. I'd seem similar posts regarding using the command line to install if there are multiple web sites. Tried that and still failed (plus yesterday I only had 1 site in IIS). I was able to fix that 2878 error .... issue was due to the bindings in the website - there were 2 entries pointing to port 80. I removed the duplicate entry from the bindings, restart the website and off the races with the WA install. Still cannot get the WA to configure though. After it installs when I go to <server>/arcgis/webadaptor and enter the server:6080 (or FQDN), Site Admin user & pwd I get this error - "Additional non-parsable characters are at the end of the string" If I change the pwd to be only alpha-numeric (got the idea from a known bug involving SSL and pwd with special chars), I get a different error - "Could not find any recognizable digits" Waiting on Tech Support for next wall to bang head on. Ugh.
... View more
12-13-2012
12:01 PM
|
0
|
0
|
2475
|
|
POST
|
Thanks for the suggestion, that didn't help either. I uninstalled the Web Adaptor and tried to reinstall, but am now getting an error about duplicate values in a listbox, as shown in the attached screenshot. Tech Support, here I come..
... View more
12-12-2012
01:20 PM
|
0
|
0
|
2475
|
|
POST
|
I'm trying to install Server 10.1 SP1 and the IIS Web Adaptor on a Win2008R2 box, completely clean machine, no previous verions of any Esri Products. I got Server to install fine, and can open Manager, browse the rest/services folder, etc.. I installed the Web Adaptor SP1 and that's where the trouble begins. After installation, it will automatically try to open http://localhost/arcgis/webadaptor which returns a 404 not found error If I change localhost to either the IP or server name I get the WebAdaptor screen. I enter the server name:6080 for the URL and the Primary Site Admin name/pwd and hit configure and I get an error saying 'Could not find any recognizable digits' and that's it. Anyone seen this & have any suggestions? Thanks, Terry
... View more
12-12-2012
09:59 AM
|
0
|
11
|
8549
|
|
POST
|
Christine, I can reproduce the same behavior here. The only difference in you DrawComplete handler and mine is I have the following 2 lines after I refresh the graphicslayer -
_Draw.IsEnabled = false;
_Draw.DrawMode = DrawMode.None;
Where _Draw is my Draw object. If I comment these 2 lines out, I see the behavior you're describing. My guess it's related to the re-use of the global _activesymbol variable here -
(_activesymbol as TextSymbol).Text = txtText.Text;
any graphic referencing _activesymbol will get changed. With the 2 lines above added to disable the Draw object, I'm forcing my users to click a button again (point, line, poly, or text) which recreates _activesymbol as a new Symbol instead of just altering it's properties. I'm sure there's a much better way to explain that, but that's what I see happening. Hope that helps, Terry
... View more
11-29-2012
01:17 PM
|
0
|
0
|
493
|
|
POST
|
Christine, Can you post your revised code for the DrawComplete & button click methods?
... View more
11-27-2012
05:08 AM
|
0
|
0
|
1903
|
|
POST
|
Christine, In your switch statement, it looks like _activeSymbol is getting set to a MarkerSymbol for the 'EnterText' case. Try making a TextSymbol instead, example below. activeSymbol = new TextSymbol() { Text = "", FontSize = 12, Foreground = new SolidColorBrush(clr), FontFamily = new FontFamily("Arial"), };
... View more
11-26-2012
06:56 AM
|
0
|
0
|
1903
|
|
POST
|
Hi Christine, Before you get into the Switch statement in the Tool_Click routine, reset _bolText to false, otherwise, if the user draws some text and then tries to draw a point/line/ploy afterwards _bolText will still be true it will pass your if _bolText test. Hope that helps, Terry
... View more
11-02-2012
07:50 AM
|
0
|
0
|
1903
|
|
POST
|
I am calling the locationToAddressAsync method. But it gives error "Task doesn't support concurrent I/O operaations..............." What should I do? You will either need to create a new instance of the Locator class for each address or wait until the LocationtoAddressAsync completes before making your next request to the task. in method Y how can I understand the the index of that point in the colletion When you calll LocationtoAddressAsync used the overload that allows you to pass in an object. You can then access it via the UserState property of the AddressEventArgs in method Y. See - http://resources.arcgis.com/en/help/silverlight-api/apiref/ESRI.ArcGIS.Client~ESRI.ArcGIS.Client.Tasks.Locator~LocationToAddressAsync.html
... View more
09-10-2012
07:43 AM
|
0
|
0
|
385
|
|
POST
|
Revised code below, which incorporates Dominique's comment re: passing in null in the Portal's InitializeAsync method using a SearchParameters object in the SearchBasemapGalleryAsync call. Otherwise only 10 results are returned (currently should be 12)
_Portal = new ArcGISPortal();
_Portal.InitializeAsync(null, (p, ex) =>
{
if (ex != null)
{
txtMaps.Text = "Basemaps currently unavailable";
lbxBaseMaps.Visibility = Visibility.Collapsed;
}
else
{
SearchParameters param = new SearchParameters();
param.Limit = 20;
ArcGISPortalInfo pInfo = p.ArcGISPortalInfo;
pInfo.SearchBasemapGalleryAsync(param,(items,err) =>
{
if (err == null)
{
txtMaps.Text = "Basemap Options:";
lbxBaseMaps.ItemsSource = items.Results;
lbxBaseMaps.Visibility = Visibility.Visible;
}
else
{
txtMaps.Text = "Basemaps currently unavailable";
lbxBaseMaps.Visibility = Visibility.Collapsed;
}
});
}
});
... View more
08-21-2012
10:21 AM
|
0
|
0
|
989
|
|
POST
|
Once again, thank you very much Dominique! ArcGISPortalInfo::SearchBaseMapGalleryAsync is exactly what I was after. Code below for those interested.
_Portal = new ArcGISPortal();
_Portal.InitializeAsync("http://www.arcgis.com/sharing", (p, ex) =>
{
if (ex != null)
{
txtMaps.Text = "Basemaps currently unavailable";
lbxBaseMaps.Visibility = Visibility.Collapsed;
}
else
{
ArcGISPortalInfo pInfo = p.ArcGISPortalInfo;
pInfo.SearchBasemapGalleryAsync(null,(items,err) =>
{
if (err != null)
{
txtMaps.Text = "Basemaps currently unavailable";
lbxBaseMaps.Visibility = Visibility.Collapsed;
}
else
{
txtMaps.Text = "Select a Basemap";
lbxBaseMaps.ItemsSource = items.Results;
lbxBaseMaps.Visibility = Visibility.Visible;
}
});
}
});
... View more
08-21-2012
06:02 AM
|
0
|
0
|
989
|
|
POST
|
Hello again Dominique, I upgraded to v3 of the API and am trying to use the ArcGISPortal class to accomplish what I described above. I'm close but am missing something here. I trying to use the PortalInfo's BaseMapGalleryGroupQuery to get an Enumeration of the basemaps, but my results are empty. Can you take a quick look at the code below and let me know if this should work or am I going in the wrong direction?
_Portal = new ArcGISPortal();
_Portal.InitializeAsync("http://www.arcgis.com/sharing", (p, ex) =>
{
if (ex != null)
{
txtMaps.Text = "Basemaps currently unavailable";
lbxBaseMaps.Visibility = Visibility.Collapsed;
}
else
{
ArcGISPortalInfo pInfo = p.ArcGISPortalInfo;
SpatialSearchParameters param = new SpatialSearchParameters
{
QueryString = pInfo.BasemapGalleryGroupQuery //QueryString is "title:\"ArcGIS Online Basemaps\" AND owner:esri_en"
};
p.SearchItemsAsync(param, (result, err) =>
{
if (err == null)
{
System.Diagnostics.Debug.WriteLine(result.Results.Count()); //Results is empty
}
});
txtMaps.Text = "Select a Basemap";
lbxBaseMaps.Visibility = Visibility.Visible;
}
});
Thank you, Terry
... View more
08-20-2012
02:58 PM
|
0
|
0
|
989
|
|
POST
|
Thank you Dominique. I'm just starting to migrate to 10.1 and v3.0 of the API so this is perfect.
... View more
08-20-2012
06:37 AM
|
0
|
0
|
989
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 10-23-2017 08:59 AM | |
| 1 | 06-15-2016 03:27 PM | |
| 1 | 01-14-2016 09:55 AM | |
| 2 | 12-14-2012 09:38 AM | |
| 2 | 10-23-2017 01:22 PM |
| Online Status |
Offline
|
| Date Last Visited |
07-17-2024
08:14 PM
|