|
POST
|
Henry, Do you know what version of my identify widget you tried? the latest one was 1.3
... View more
09-24-2010
07:52 PM
|
0
|
0
|
1517
|
|
POST
|
Matilda, I don't have any experiences with sub domains but I just tried to put that address into my firefox browser and got this message You are about to log in to the site "mysite.com" with the username "matapp", but the website does not require authentication. This may be an attempt to trick you. Is "mysite.com" the site you want to visit? Like I said I don't have any experience with sub domains but this doesn't look promising. As far as the Streetview widget. I really don't know what the deal is I have lots of people using that widget without issue.
... View more
09-24-2010
07:48 PM
|
0
|
0
|
825
|
|
POST
|
Phillip, Ok they changed something on me. You have to change the image height and this as well <s:Group id="infoCanvas"
width="210"
minHeight="30">
... View more
09-24-2010
07:36 PM
|
0
|
0
|
860
|
|
POST
|
All, Updated version available based on Erwan's and Ernst's suggestions.
... View more
09-24-2010
05:02 PM
|
0
|
0
|
2530
|
|
POST
|
Will, If you only want one layer of one particular map service and that is it than you need to look at the identifyFeatures function in the IdentifyWidget.mxml and basically delete all the for loop an just hard code the identifyParams and identify task something like this
private function identifyFeatures():void
{
var identifyParams : IdentifyParameters = new IdentifyParameters();
identifyParams.returnGeometry = false;
identifyParams.tolerance = identifyTolerance;
identifyParams.geometry = identifyPoint;
identifyParams.width = map.width;
identifyParams.height = map.height;
identifyParams.mapExtent = map.extent;
identifyParams.spatialReference = map.spatialReference;
//You have to know the id number of your layer here
identifyParams.layerIds = [23];
var identifyTask:IdentifyTask = new IdentifyTask("http://yourserver/arcgis/yourservice/mapserver);
identifyTask.addEventListener(IdentifyEvent.EXECUTE_COMPLETE, onResult);
identifyTask.addEventListener(FaultEvent.FAULT, onFault);
identifyTask.execute(identifyParams);
showMessage(loadingLabel, true);
showStateResults();
}
... View more
09-24-2010
12:46 PM
|
0
|
0
|
2530
|
|
POST
|
Will, Do you mean one MapService or on layer in a MapService?
... View more
09-24-2010
12:32 PM
|
0
|
0
|
2485
|
|
POST
|
Emily, If your ArcGIS Server and web server are on two different machines than yyou need a crossdomain.xml on your ArcGIS Servers web root. More info here: http://help.arcgis.com/en/webapi/flex/help/content/deploy_application.htm
... View more
09-24-2010
11:13 AM
|
0
|
0
|
1628
|
|
POST
|
David, If you have the processor and memory resources available on the server than yes. To explain it in laymens terms if one instance has gone to sleep, crashed, or is busy than one of the other instances will be used intstead to produce the map image. So the more instances you have the better off you are at have all requests to your server actually get served. There's a white paper some where years ago that I used to determine how many instances you can have verses the processor cores and memory on the server. Don't know off hand where to find that though.
... View more
09-24-2010
11:10 AM
|
0
|
0
|
490
|
|
POST
|
Phillip, Inside the InfoPopupWidget adjust the height of the image component as depicted below:
<mx:Image id="infoImage"
height="150"
buttonMode="true"
click="showLink()"
includeInLayout="false"
maxWidth="{infoCanvas.width - 10}"
useHandCursor="true"
visible="false"/>
... View more
09-24-2010
11:02 AM
|
0
|
0
|
860
|
|
POST
|
Erwan, Strange that I don't see the duplicate result issue and I have lots of grouped layers in my services... I wonder If I should look at adding your solution for that issue? It would be nice if I could duplicate the issue some are seeing with this.
... View more
09-24-2010
10:54 AM
|
0
|
0
|
2485
|
|
POST
|
David, The only time I have ever seen it is when I am debugging from my development machine and In debug mode sometimes the map will not show up so I stop and start debugging again and it is fine. The reason (I expect) that I don't have the issue in my development environment is my main vector map service has a min of 4 and max of 8 instances set instead of the default 1 and 2. I am running Server 10 and only had one big issue with my reverse proxy installation but that was because I was using an old version of Apache Server.
... View more
09-24-2010
10:50 AM
|
0
|
0
|
2317
|
|
POST
|
David, If you are using ArcGIS Server 10 there is a keep service alive option in Server Manager.
... View more
09-24-2010
10:26 AM
|
0
|
0
|
2317
|
|
POST
|
Chaya, That is strange because I took the code I posted and modified my config.xml for FlexViewer 2.1 (I am using Flash Builder and the source code of the Viewer but should not matter) and I saw your county boundaries and some pink outline of something. Is your webserver on the same machine as the ArcGIS Server is? I noticed that you do not have a crossdomain.xml file on your ArcGIS Server and that is likely the issue. http://map.incog.org/crossdomain.xml Look here for direction: http://help.arcgis.com/en/webapi/flex/help/content/deploy_application.htm
... View more
09-24-2010
08:57 AM
|
0
|
0
|
1391
|
|
POST
|
Chaya, Maybe you need to explain a little more on what you are actually doing. Sounds like you may be using the pre-compiled FlexViewer 2.1 if so and you already have it on the webserver and functioning than you only have to edit the config.xml and save your changes. If you are woking with the FlexViewer 2.1 source code than that is a little different.
... View more
09-24-2010
08:11 AM
|
0
|
0
|
1391
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 04-14-2020 11:36 AM | |
| 17 | 05-17-2021 01:51 PM | |
| 1 | 07-06-2020 05:32 AM | |
| 1 | 07-10-2018 05:49 AM | |
| 9 | 01-28-2022 10:58 AM |
| Online Status |
Offline
|
| Date Last Visited |
06-08-2026
06:27 AM
|