|
POST
|
02-09-2016
11:24 PM
|
0
|
0
|
1129
|
|
POST
|
Can you give details where the code fails. Also in Italy there is comma decimal separator but I have no problem.
... View more
02-05-2016
11:00 AM
|
0
|
0
|
1129
|
|
POST
|
see http://support.esri.com/em/knowledgebase/techarticles/detail/40890
... View more
01-28-2016
08:47 AM
|
0
|
1
|
1102
|
|
POST
|
class AGOL
{
private string _token;
private string _username;
private string _password;
public string Token
{
get
{
return _token;
}
}
public string Username
{
get
{
return _username;
}
set
{
_username = value;
}
}
public string Password
{
get
{
return _password;
}
set
{
_password = value;
}
}
public AGOL(string UserName, string PassWord)
{
_username = UserName;
_password = PassWord;
_token = GetToken(UserName, PassWord);
}
public string GetToken(string username, string password)
{
var data = new NameValueCollection();
data["username"] = Username;
data["password"] = Password;
data["referer"] = "https://www.arcgis.com";
data["f"] = "json";
TokenInfo x = JsonConvert.DeserializeObject<TokenInfo>(_getResponse(data, "https://arcgis.com/sharing/rest/generateToken"));
return x.token; ;
}
private string _getResponse(NameValueCollection data, string url)
{
string responseData;
var webClient = new WebClient();
var response = webClient.UploadValues(url, data);
responseData = System.Text.Encoding.UTF8.GetString(response);
return responseData;
}
public class TokenInfo
{
public string token { get; set; }
public long expires { get; set; }
public bool ssl { get; set; }
}
}
... View more
01-27-2016
09:29 AM
|
0
|
1
|
1601
|
|
POST
|
here http://resources.arcgis.com/en/help/arcobjects-net/conceptualhelp/0001/00010000015z000000.htm you have documentation 'Running a geoprocessing tool using background geoprocessing'
... View more
01-26-2016
11:27 PM
|
2
|
0
|
1684
|
|
POST
|
Mody you can also approximate solution collapse your points of same edge in a single point ('most of them are close to each other') and then order all points after solve.
... View more
01-14-2016
11:32 PM
|
0
|
2
|
2398
|
|
POST
|
Mody, NA based on the well-known Dijkstra's algorithm so if you need speed you need more rules/restriction so algorithm discards useless path evaluate
... View more
01-14-2016
02:50 AM
|
0
|
0
|
2398
|
|
POST
|
you have a post process Server Object (your query from client). You combine this json with json from your external service using library JSON.NET and send to client
... View more
01-13-2016
11:38 AM
|
0
|
0
|
2505
|
|
POST
|
if a field isn't exposed in a layer of service you can do a soi that filter in feature class underlying of layer and return a export filtered. If you want expose a field of feature class permanent (not visible when you have published service) you need a edit service and restart service using rest admin api
... View more
01-13-2016
01:23 AM
|
0
|
3
|
2505
|
|
POST
|
HI Alex can you give further details ? SOIs can pre and post process request Server Object so you can do filter/query a field not exposed via rest from arcgis server
... View more
01-13-2016
12:40 AM
|
0
|
5
|
2505
|
|
POST
|
IShortcutMenu is an indicator interface that is used only to indicate to the application that the menu should be treated as a context menu. If you are creating a context menu you would implement both IMenuDef and IShortcutMenu http://resources.arcgis.com/en/help/arcobjects-net/componenthelp/index.html#//0023000000w4000000
... View more
01-11-2016
11:46 PM
|
1
|
0
|
915
|
|
POST
|
Run MSBuild with /v:diag so you have further details
... View more
12-22-2015
09:30 AM
|
0
|
0
|
1423
|
|
POST
|
In alternative you can see my method GetEIDFromPoint in https://gnutilitysoerest.codeplex.com/SourceControl/latest#GeometricNetwork.cs
... View more
12-15-2015
11:02 PM
|
0
|
0
|
1039
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-20-2024 11:20 AM | |
| 1 | 05-25-2017 10:11 AM | |
| 1 | 06-20-2023 12:09 AM | |
| 1 | 10-14-2022 05:14 AM | |
| 1 | 06-14-2023 02:00 AM |
| Online Status |
Offline
|
| Date Last Visited |
05-18-2026
04:12 AM
|