|
POST
|
Hi Jose, I have tried and in 10.4.1 I have same error. Peraphs it's a bug. In fact if you see code sample Esri (Watermark) in sdk 10.4.1 I see comment '//interop problem' and try/catch .... try
{
//interop problem?
var se4 = _restSOIHelper.ServerEnvironment as IServerEnvironmentEx;
var dirInfos = se4.GetServerDirectoryInfos();
dirInfos.Reset();
object dirInfo = dirInfos.Next();
while (dirInfo != null)
{
var dinfo2 = dirInfo as IServerDirectoryInfo2;
if (null != dinfo2 && dinfo2.Type == esriServerDirectoryType.esriSDTypeOutput)
{
_outputDirectory = dinfo2.Path;
break;
}
dirInfo = dirInfos.Next();
}
}
catch (Exception ignore)
{
_outputDirectory = string.Empty;
}
_outputDirectory = _outputDirectory.Trim();
if (string.IsNullOrEmpty(_outputDirectory))
{
_serverLog.LogMessage(ServerLogger.msgType.error, _soiName + ".init()", 500, "OutputDirectory is empty or missing. Reset to default.");
_outputDirectory = "C:\\arcgisserver\\directories\\arcgisoutput";
}
... View more
09-19-2016
10:16 AM
|
0
|
2
|
2374
|
|
POST
|
You can also create a custom provider that use users in your store Here I have made a custom provider for sql server but you can change code for your scope https://github.com/nicogis/ArcGISServerCustomProvider
... View more
09-14-2016
05:14 AM
|
0
|
0
|
354
|
|
POST
|
var se4 = this.ServerEnvironment as IServerEnvironmentEx;
var dirInfos = se4.GetServerDirectoryInfos();
dirInfos.Reset();
object dirInfo = dirInfos.Next();
while (dirInfo != null)
{
var dinfo2 = dirInfo as IServerDirectoryInfo2;
if (null != dinfo2 && dinfo2.Type == esriServerDirectoryType.esriSDTypeSystem)
{
string pathSystem = dinfo2.Path;
break;
}
dirInfo = dirInfos.Next();
}
... View more
09-12-2016
01:10 AM
|
1
|
4
|
2374
|
|
POST
|
you can create the binding of your web.config programmatically. CustomBinding binding = new CustomBinding();
// Create a SymmetricSecurityBindingElement.
SymmetricSecurityBindingElement ssbe =
SecurityBindingElement.CreateSspiNegotiationBindingElement(true);
// Add the SymmetricSecurityBindingElement to the BindingElementCollection.
binding.Elements.Add(ssbe);
binding.Elements.Add(new TextMessageEncodingBindingElement());
binding.Elements.Add(new HttpTransportBindingElement());
and follow the properties of your web.config
... View more
09-09-2016
07:20 AM
|
0
|
0
|
502
|
|
DOC
|
I already have talked with Google Maps team and they confirm me that the ToS means that a standard SV functionality can be used without a map but it can't be used in conjunction with a not Google map " ... without a corresponding Google Map ..." means standalone SV (see my highlight yellow from help Maps API)
... View more
08-25-2016
11:39 AM
|
0
|
0
|
8098
|
|
DOC
|
In fact it 's how I have answered Google Map Team but if see the detail in help api google seems that you can use it without a map but if you use a map it must be google map. (10.4e) https://developers.google.com/maps/documentation/javascript/streetview
... View more
08-23-2016
11:30 AM
|
1
|
0
|
8098
|
|
DOC
|
Hi Robert, are you sure that this widget is conformed to the ToS ? Google sends me email that they have replied me as follows "10.4.e is the relevant ToS--"No use of Content with a non-Google map. You must not use the Content in a Maps API Implementation that contains a non-Google map." in other words, if you show a map it must be a Google Map."
... View more
08-23-2016
07:01 AM
|
1
|
0
|
8098
|
|
POST
|
if you need create Runtime Content with arcobjects you can use gp tool http://resources.arcgis.com/en/help/main/10.2/0017/00170000019n000000.htm using run gp tool http://help.arcgis.com/en/sdk/10.0/arcobjects_net/conceptualhelp/index.html#//0001000003rr000000
... View more
08-23-2016
01:37 AM
|
0
|
1
|
1065
|
|
POST
|
you can use Admin Tools for ArcGIS Online or ArcGIS Online Assistant Tools · Esri/ago-admin-wiki Wiki · GitHub
... View more
07-15-2016
10:49 AM
|
2
|
0
|
1121
|
|
POST
|
you can custom ArcGIS Manager or ArcMap with custom page Sample: Simple REST SOE With properties sample—ArcObjects 10.4 Help for Java | ArcGIS for Desktop
... View more
07-15-2016
02:07 AM
|
0
|
0
|
589
|
|
POST
|
add data select All Portal in search box digit bing
... View more
07-14-2016
09:58 AM
|
1
|
1
|
2408
|
|
POST
|
Aaron, which are the queries that arrive at sql server ? (create a trace with sql profile https://msdn.microsoft.com/en-us/library/ms175047.aspx ) and check execution plan if sql server use your spatial index Is my spatial index being used? | Isaac @ MSDN Remember ArcGIS application doesn't use hint for index ( FAQ: Why do ArcGIS applications not hint the use of SQL Server spatial indexes? )
... View more
06-26-2016
04:29 AM
|
0
|
0
|
1710
|
|
POST
|
In 10.4 a new project has: <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(MSBuildExtensionsPath)\ESRI\ESRI.ArcGIS.Server.SDK.targets" Condition="Exists('$(MSBuildExtensionsPath)\ESRI\ESRI.ArcGIS.Server.SDK.targets')" /> In gac have you dll Microsoft.VisualStudio.Shell.12.0 ?
... View more
06-18-2016
04:14 AM
|
0
|
0
|
811
|
|
POST
|
you can see this sample devsummit-berlin-2015-SOI/FilterAccessSOI at b6b41e77f873ffd0b1c868cb04dc754cb37f58e1 · ceddc/devsummit-berlin-2015-SOI … and use layerDefs of ExportMap Rest to filter rows using a definition expressions
... View more
06-13-2016
07:11 AM
|
0
|
0
|
1745
|
|
POST
|
if you need use arcobjects in web service (also a IPropertySet ...) you can use soe. You cannot use arcobjects via web service with a license desktop (desktop/engine) furthermore the threading model of ao results difficult in a multiple instances env of the ArcObject ...
... View more
06-10-2016
09:10 AM
|
2
|
2
|
1815
|
| 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 |
a week ago
|