|
POST
|
If you are using the data extract GP task, then you might want to use the "Data Extract Widget" that was set up specifically for this case: http://resources.arcgis.com/en/help/flex-viewer/concepts/index.html#/Data_Extract_widget/01m300000039000000/ However, if the problem is with the GP task itself, that will not fix anything. Some things you might want to try: Are you testing the browser on the same machine as has the GP task? If not, "localhost" in the config file will not work. Even if you do, it's a good idea to change the "localhost" to the actual server name sooner than later. If you look at the network traffic using browser developer tools (depending on which browser you use), are there any "red" items?
... View more
03-02-2014
08:19 AM
|
0
|
0
|
1809
|
|
POST
|
About Javasctipt, I have a basic question, as I understand, all the code is executed on the client side Yes, but this is no different than a flash application.
... View more
02-25-2014
01:30 PM
|
0
|
0
|
1977
|
|
POST
|
Thats the orgid, its just named "id" instead of "orgid" I missed that. Thanks 🙂
... View more
02-25-2014
10:27 AM
|
0
|
0
|
3758
|
|
POST
|
Not sure if it's helpful, but have you looked at the skins for the RelationshipInspector? RelationshipInspectorAttributeInspectorSkin.mxml RelationshipInspectorSkin.mxml https://developers.arcgis.com/flex/api-reference/com/esri/ags/components/RelationshipInspector.html#SkinPartSummary
... View more
02-25-2014
10:25 AM
|
0
|
0
|
1582
|
|
POST
|
If you're not working with the Viewer, take a look in the skins\AttributeInspectorSkin.mxml <fx:Component id="dateField">
<!--
Display dates in local time, using a localized short date format. eg: for en_US: MM/DD/YYYY
See PopUpFieldFormat date formats or provide a custom one.
-->
<fieldClasses:CalendarField dateFormat="shortDate" useUTC="false"/>
</fx:Component>
The documentation for PopUpFieldFormat is at https://developers.arcgis.com/flex/api-reference/com/esri/ags/portal/supportClasses/PopUpFieldFormat.html#useUTC There is also a vaguely related sample at https://developers.arcgis.com/flex/sample-code/attribute-inspector-edit.htm
... View more
02-25-2014
10:02 AM
|
0
|
0
|
2025
|
|
POST
|
Is the World Route something we must subscribe to or purchase? Yes. "This service is available for users with an ArcGIS Online organizational subscription" - http://www.arcgis.com/home/item.html?id=1feb41652c5c4bd2ba5c60df2b4ea2c4 You're company/organization might already have an ArcGIS Online organizational subscription. See for example http://www.esri.com/esri-news/arcnews/winter1314articles/arcgis-for-desktop-now-includes-arcgis-online-subscription
... View more
02-25-2014
09:58 AM
|
0
|
0
|
1741
|
|
POST
|
That code is quite old. In fact, the blog post mentions that it's for 2.4. Since then we added support in the API, Viewer and AppBuilder to allow you to specify useUTC and setting the date format. So you should not need to do what that code was meant for. What version are you using? Have you tried those options? http://resources.arcgis.com/en/help/flex-viewer/concepts/index.html#/Attribute_Table_widget_tags/01m30000004t000000/
... View more
02-25-2014
09:09 AM
|
0
|
0
|
2025
|
|
POST
|
...the find route only allows 10 records... Which route service are you using? Are you using the old service on tasks.arcgisonline.com? If so, take a look at http://www.arcgis.com/home/item.html?id=4078fece745140d7af17bf74b5f300fd which talks about the deprecation of that specific service, and the recommendation of the new World Route Service which supports up to 150 stops. See http://resources.arcgis.com/en/help/arcgis-rest-api/#/Route_service/02r300000036000000/ and http://www.arcgis.com/home/item.html?id=1feb41652c5c4bd2ba5c60df2b4ea2c4 for more info.
... View more
02-25-2014
07:41 AM
|
0
|
0
|
1741
|
|
POST
|
Is there a way to notify the viewer that the [web] map has changed and to tell the viewer to update itself? [...] using the ESRI Basic viewer? No, I don't think so.
... View more
02-24-2014
08:52 AM
|
0
|
0
|
406
|
|
POST
|
I'm not sure that is correct. For example, I don't see a orgId when going directly to http://odot.maps.arcgis.com/sharing/rest/portals/self?culture=en&f=pjson. I think the orgId is either part of the "user" or "appInfo" objects. Both of which are only returned when a token is included in the request. There is some documentation on this at http://resources.arcgis.com/en/help/arcgis-rest-api/index.html#/Portal_Self/02r3000001m7000000/
... View more
02-24-2014
08:40 AM
|
0
|
0
|
3758
|
|
POST
|
...Javascript applications using secured services from ArcGIS Online. ... token based authentication ... is possible to extend the expiration length of the tokens. ...Is there another method of obtaining a long lengthed token for AGOL secured services? "The maximum value of the expiration time is controlled by the server." http://resources.arcgis.com/en/help/arcgis-rest-api/index.html#/Generate_Token/02r3000000m5000000/ A better solution is probably to use a proxy. We recently made a set of updated proxies available on https://github.com/Esri/resource-proxy that work well with ArcGIS Online secured services.
... View more
02-24-2014
08:02 AM
|
0
|
0
|
968
|
|
POST
|
...I was told to use sampleserver6.arcgisonline.com. As the name indicates, this is just for samples (and testing). You should NOT rely on this for production applications. We have an ArcGIS Online Organizational License [...] which server should we be requesting from when completing geometry services? If you have an AGO Organization, use the geometryservice helper URL for your organization, it's probably "utility.arcgisonline.com/arcgis/rest/services/Geometry/GeometryServer". You can find this by going to [YourOwnOrg].maps.arcgis.com/sharing/rest/portals/self?f=pjson, for example http://flexteam.maps.arcgis.com/sharing/rest/portals/self?f=pjson, look under "helperServices" and you will see the URL for your geometry utilityserver, as in: "geometry": {"url": "https://utility.arcgisonline.com/arcgis/rest/services/Geometry/GeometryServer"},
... View more
02-24-2014
07:53 AM
|
0
|
0
|
1426
|
|
POST
|
Today we posted a blog article about ???Esri???s Roadmap for Web Developers??? that you might find interesting. http://blogs.esri.com/esri/arcgis/2014/02/21/esris-roadmap-for-web-developers/
... View more
02-21-2014
08:13 AM
|
0
|
5
|
5220
|
|
POST
|
It sounds like you might be missing a property in the crossdomain.xml file. Make sure secure="false" to allow http apps to access https content. <allow-access-from domain="*" secure="false"/> See for example http://services.arcgisonline.com/crossdomain.xml
... View more
02-07-2014
03:43 PM
|
0
|
0
|
725
|
|
POST
|
...how to "forbid" users to view configuration files? ... Is it possible? No, not using IIS configuration. For user to be able to use an application (which is based on a config), then that config will have to be accessible by that application. Technically, you could probably make it work by "hiding" the config file behind a proxy file or web application that would check the referrer of the application. But even then, they could run the application in the browser and look at the web traffic using any of the built-in debugger tools of modern browser and still see the content of the config file.
... View more
02-07-2014
03:23 PM
|
0
|
0
|
608
|
| Title | Kudos | Posted |
|---|---|---|
| 3 | 03-11-2026 11:16 AM | |
| 2 | 03-17-2025 08:24 AM | |
| 3 | 03-17-2025 07:27 AM | |
| 4 | 02-26-2025 11:37 AM | |
| 1 | 03-23-2023 04:36 PM |
| Online Status |
Offline
|
| Date Last Visited |
04-14-2026
04:21 PM
|