|
POST
|
Hi, I am facing a similar issue where the page is not loading,. I have followed all the steps downloaded the WAB and deployed it on my IIS Proxy <?xml version="1.0" encoding="utf-8" ?> <ProxyConfig allowedReferers="*" mustMatch="true"> <serverUrls> <serverUrl url="http://services.arcgisonline.com" matchAll="false"/> <serverUrl url="https://mycompany.server.com/arcgis/rest/services" username="portaladmin" password="server3434" matchAll="false" /> </serverUrls> </ProxyConfig> My WAB config.json }, "wabVersion": "2.12", "isTemplateApp": true, "isWebTier": false, "httpProxy": { "useProxy": true, "alwaysUseProxy": false, "url": "http://localhost/DotNet/proxy.ashx", "rules": [ ] } Not sure what is wrong here, can you please help me
... View more
07-17-2019
12:48 AM
|
0
|
1
|
2744
|
|
POST
|
Tried that my proxy file looks like this, still no luck <?xml version="1.0" encoding="utf-8" ?> <ProxyConfig mustMatch="true" logFile="proxy_log.log" allowedReferers="http://localhost/resource-proxy-master/DotNet"> <serverUrls> <serverUrl url="http://103.203.139.72/erdas-apollo/coverage/District_Alabama_FCC?REQUEST=GetCapabilities&SERVICE=WMS&VERSION=1.3.0" username = "user123" password = "password123" matchAll="true"/> </serverUrls> </ProxyConfig> <!-- See https://github.com/Esri/resource-proxy for more information -->
... View more
05-24-2017
09:35 PM
|
0
|
1
|
1799
|
|
POST
|
Hi thank you for your response, I did follow the steps and created a proxy page, but now I get the following error {"error": {"code": 403,"message":"Proxy has not been set up for this URL. Make sure there is a serverUrl in the configuration file that matches: http://106.207.134.26/erdas-apollo/coverage/District_Newark_FCC?amp;SERVICE=WMS&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetCapabilities http://106.207.134.26/erdas-apollo/coverage/District_Newark_FCC?amp;SERVICE=WMS&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetCapabilities"}} what am I missing??
... View more
05-23-2017
11:28 AM
|
0
|
3
|
1799
|
|
POST
|
I am using the following code <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="viewport" content="initial-scale=1, maximum-scale=1,user-scalable=no"> <title>Map with WMS</title> <link rel="stylesheet" href="https://js.arcgis.com/3.20/dijit/themes/claro/claro.css"> <link rel="stylesheet" href="https://js.arcgis.com/3.20/esri/css/esri.css"> <style> html, body, #map { height: 100%; width: 100%; margin: 0; padding: 0; } body { background-color: #FFF; overflow: hidden; font-family: "Trebuchet MS"; } </style> <script src="https://js.arcgis.com/3.20/"></script> <script> var map; require(["esri/map", "esri/layers/WMSLayer", "esri/config", "dojo/domReady!"], function(Map, WMSLayer, esriConfig) { esriConfig.defaults.io.proxyUrl = "/proxy/"; map = new Map("map", { basemap: "streets", center: [-98, 37], zoom: 5 }); var wmsLayer = new WMSLayer("http://103.203.139.72/erdas-apollo/coverage/District_Jai?REQUEST=GetCapabilities&SERVICE=WMS&VERSION=1.3.0", { format: "png", visibleLayers: [2] }); map.addLayer(wmsLayer); }); </script> </head> <body> <div id="map"> </div> </body> </html> Where do I type in the username and password.
... View more
05-22-2017
06:09 AM
|
0
|
5
|
2781
|
|
POST
|
HI, I have designed a land use website for the Government of Karnataka(India) Now I have received 5 images(jpeg) with oblique angles and a parameter file is it possible that I can get the height of the building in my web application? I have to develop a tool which should allow me to ge the height of the building In order to get the height of a building what procedure should I follow Please guide me..
... View more
06-20-2013
04:52 AM
|
0
|
1
|
2344
|
|
POST
|
HI, My client has requested for a print map functionality to be added to print the main map and also print the queried thematic(Graphic Layer), I see here a print service is available in ArcGIS 10.1 Server I have 2 questions 1. My client has a ArcGIS 10.1 Server Basic License - is the print service available on this license 2. Can I print the map as a high quality intelligent PDF where I can get manage the visible of the layers Please guide me...
... View more
05-16-2013
05:51 AM
|
0
|
1
|
795
|
|
POST
|
Hi, I am querying and adding a FeatureLayer onto my Map
FeatureLayer fl = new FeatureLayer();
fl.URI = "http://Server1/ArcGIS/rest/services/BOUNDARIES/MapServer/0"
fl.ID = "Boundary1";
MyMap.Layers.Add(fl);
When I add the featurelayer to the map the symbology which I set in ArcMAP(hatched symbols) does not appear in my map but it shows solid colors I want the hatched symbols in my map Please guide... Note: Using ArcGIS Server 10, ArcMAP 10 and all services are published as Mapservice(.mxd)
... View more
05-07-2013
11:54 PM
|
0
|
0
|
664
|
|
POST
|
Hi, I have developed a ArcGIS Server Silverlight Road Management System application I have implemented Bings Geolocate and directions functionality also used Bing Maps as my base map Now I read that Bing http://forums.arcgis.com/threads/76136-ArcGIS-online-Bing-map-Keys free online service is gonna be phased out... My application is for a Government agency. should I buy the license for Bing or seek an alternative base map service if yes please suggest me a free or cheap base map service....
... View more
04-12-2013
02:20 AM
|
0
|
1
|
1190
|
|
POST
|
Sorry, not sure I can help. I rarely published dgn files. Nevertheless are you sure it's a WMS issue? Is it working when using the MapServer and an ArcGISMapServiceLayer? My only clue about WMS: are you sure the layer "1" is the one containing the dgns? dbroux Thank you for your reply you were right the problem was with the WMS.Layers I corrected it and the dgn's displayed fine... The reason I publish the dgns was I have over a thousand different symbols for my geometry's but when I import this dgn files into ArcSDE I loose the geometry styles .. so I decided to publish the dgn itself.. Is there any other way of getting my symbols into the geodatabase?
... View more
03-11-2013
03:28 AM
|
0
|
0
|
1609
|
|
POST
|
Before publishing your mxd, you have to set the spatial reference of your dgn files Hi Thank you for you reply I have set the spatial reference for the .dgn file The .dgn is now correctly displayed on the map in ArcMAP where I am using Bing maps as my base map But when I call this .dgn into my ArcGIS Silverlight application the .dgn is not seen <esriWMS:WmsLayer ID="AGSWMSLayer"
Url="http://dev9/arcgis/services/merged_soi1/MapServer/WMSServer"
SkipGetCapabilities="False"
Layers="1" Version="1.3" Opacity="0.7" /> What am I missing here? I have tried everything I know. Please guide...
... View more
03-04-2013
04:18 AM
|
0
|
0
|
1609
|
|
POST
|
You have to set the WMS.Layers property, which is required to get the layer displayed. If you still run into problems after setting this property, try using fiddler to look at the requests sent to the server. That might give a clue about the issue. Hi, Thank you for your reply You were right after setting the WMS.Layer property it worked fine.. But I still have an issue I have added a few .dgn files in the .mxd and published this data which I wanted to consume as an WMS service in order to retain its current symbologies But the dgn map is not visible or projected on the map. Is this a problem with Projection system ..how do I address this issue.. Please guide me to publish and display a few .dgn's
... View more
03-04-2013
01:57 AM
|
0
|
0
|
1609
|
|
POST
|
Hi I have created a MapService on ArcGIS Server 10 and enabled the WMS capability and wrote a code to add this WMS service on my Silverlight 4 map application but it does not add the service, the map is not visible, but when I add the WMS url in ArcMAP I can view the map Please comment what am I missing here? Code goes here ESRI.ArcGIS.Client.Toolkit.DataSources.WmsLayer newLayer = new ESRI.ArcGIS.Client.Toolkit.DataSources.WmsLayer();
newLayer.Url = "http://dev9/arcgis/services/merged_soi1/MapServer/WMSServer";
newLayer.ID = "newLayer1";
newLayer.SkipGetCapabilities = true;
MyMap.Layers.Add(newLayer);
... View more
02-28-2013
07:27 PM
|
0
|
6
|
2178
|
|
POST
|
Hi santoshf2, I'm having trouble finding information about how to create a service of "ArcToolbar --> Linear Referencing Tools -> Make Route Event Layer". Seeing as you managed to acomplish this, could you give me some advice on what I have to do? I'm making a silverlight application on ArcGIS Server 9.3.1 and I need to make this tool work. I am starting to thing this only can be done with ArcGIS Server 10 or above. Thank your Hi fulcrumingenieria, ArcToolbar --> Linear Referencing Tools -> Make Route Event Layer creates a route event layer whch is added to the .mxd, set the symbology as needed for the event layer, then save the Map Document and publish it in the ArcGIS Server as a Map service which can be consumed directly as a map service...
... View more
11-27-2012
01:10 AM
|
0
|
0
|
1143
|
|
POST
|
Hi, I have developed an ArcGIS Silverlight application where I have shown different thematics using linear referencing, my requirement now my client wants to the get the exact chainage(M value) on a particular point on a road when he clicks on it, is there an option where I can read the exact M value on a point in polyline Please guide me...
... View more
10-03-2012
06:12 AM
|
0
|
5
|
3805
|
|
POST
|
Abdulrahman Taher, Thanks a bunch this is exactly what I was looking for,.. you save me....
... View more
09-17-2012
09:03 PM
|
0
|
0
|
632
|
| Online Status |
Offline
|
| Date Last Visited |
09-07-2025
09:04 AM
|