<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Putting a login screen onto sample flex viewer? in ArcGIS API for Flex Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468327#M10754</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Depending on your audience you might want to just use IIS and Windows Authentication and protect the entire directory.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You will have to map all the files to go through C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll but that can easily be done using 'wild card application maps' in IIS.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;That's how I do it for a lot of &lt;/SPAN&gt;&lt;STRONG&gt;internal &lt;/STRONG&gt;&lt;SPAN&gt;applications.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Drew&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 May 2010 11:35:20 GMT</pubDate>
    <dc:creator>Drew</dc:creator>
    <dc:date>2010-05-05T11:35:20Z</dc:date>
    <item>
      <title>Putting a login screen onto sample flex viewer?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468323#M10750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Has anyone successfully put a login system "in front" of the sample flex viewer? Can this be done using states in flex? If anyone can help me out I'd be most grateful!!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 May 2010 08:47:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468323#M10750</guid>
      <dc:creator>grahamcooke</dc:creator>
      <dc:date>2010-05-04T08:47:28Z</dc:date>
    </item>
    <item>
      <title>Re: Putting a login screen onto sample flex viewer?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468324#M10751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;gcooke76,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; Sure look here at this thread.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.arcgis.com/threads/3505-Login-Page-The-connect-to-LDAP"&gt;http://forums.arcgis.com/threads/3505-Login-Page-The-connect-to-LDAP&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 May 2010 09:57:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468324#M10751</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2010-05-04T09:57:41Z</dc:date>
    </item>
    <item>
      <title>Re: Putting a login screen onto sample flex viewer?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468325#M10752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks. Any code samples anywhere for this please? I'm really struggling to get my head round flex at the moment (coming from a .net background)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 May 2010 13:19:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468325#M10752</guid>
      <dc:creator>grahamcooke</dc:creator>
      <dc:date>2010-05-04T13:19:23Z</dc:date>
    </item>
    <item>
      <title>Re: Putting a login screen onto sample flex viewer?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468326#M10753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yeah just use PopUpManager like so:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; LoginPop = new Panel();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LoginPop.title="Please Login";&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LoginPop.width=600;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LoginPop.height=500;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; LoginPop.addChild(LoginModule);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; LoginModule.loadModule("Login.swf");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PopUpManager.addPopUp(LoginPop,this,true);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; PopUpManager.centerPopUp(LoginPop);&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Dump it in the application from the function: creationComplete = "LoginVerify()" &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Whereby LoginVerify() is the code above.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Of course.. if you actually want it to use the token service or login screen that's a different step.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 May 2010 00:08:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468326#M10753</guid>
      <dc:creator>seanlo</dc:creator>
      <dc:date>2010-05-05T00:08:40Z</dc:date>
    </item>
    <item>
      <title>Re: Putting a login screen onto sample flex viewer?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468327#M10754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Depending on your audience you might want to just use IIS and Windows Authentication and protect the entire directory.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You will have to map all the files to go through C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll but that can easily be done using 'wild card application maps' in IIS.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;That's how I do it for a lot of &lt;/SPAN&gt;&lt;STRONG&gt;internal &lt;/STRONG&gt;&lt;SPAN&gt;applications.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Drew&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 May 2010 11:35:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468327#M10754</guid>
      <dc:creator>Drew</dc:creator>
      <dc:date>2010-05-05T11:35:20Z</dc:date>
    </item>
    <item>
      <title>Re: Putting a login screen onto sample flex viewer?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468328#M10755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Yeah just use PopUpManager like so:&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; LoginPop = new Panel();&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LoginPop.title="Please Login";&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LoginPop.width=600;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LoginPop.height=500;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp; LoginPop.addChild(LoginModule);&lt;BR /&gt;&amp;nbsp; LoginModule.loadModule("Login.swf");&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PopUpManager.addPopUp(LoginPop,this,true);&lt;BR /&gt;&amp;nbsp; PopUpManager.centerPopUp(LoginPop);&amp;nbsp; &lt;BR /&gt;&lt;BR /&gt;Dump it in the application from the function: creationComplete = "LoginVerify()" &lt;BR /&gt;Whereby LoginVerify() is the code above.&lt;BR /&gt;&lt;BR /&gt;Of course.. if you actually want it to use the token service or login screen that's a different step.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;so login.swf is a separate app that i create in flex?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 May 2010 11:46:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468328#M10755</guid>
      <dc:creator>grahamcooke</dc:creator>
      <dc:date>2010-05-05T11:46:35Z</dc:date>
    </item>
    <item>
      <title>Re: Putting a login screen onto sample flex viewer?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468329#M10756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Depending on your audience you might want to just use IIS and Windows Authentication and protect the entire directory.&lt;BR /&gt;&lt;BR /&gt;You will have to map all the files to go through C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll but that can easily be done using 'wild card application maps' in IIS.&lt;BR /&gt;&lt;BR /&gt;That's how I do it for a lot of &lt;STRONG&gt;internal &lt;/STRONG&gt;applications.&lt;BR /&gt;&lt;BR /&gt;Drew&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;this would have been ideal, but some of the users of our system will be people who are using pc's connected to our network but they will NOT have active directory accounts. We need to create separate dbtables to hold their login credentials and then depending what area of the UK they are "allocated" to, load a combo box with training areas to choose from to create their base map data.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 May 2010 12:00:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468329#M10756</guid>
      <dc:creator>grahamcooke</dc:creator>
      <dc:date>2010-05-05T12:00:37Z</dc:date>
    </item>
    <item>
      <title>Re: Putting a login screen onto sample flex viewer?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468330#M10757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;OK i've been thinking some more about this and was wondering if this might be the right way to go:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As the app is fairly complex and there would be an admin screen for our helpdesk people to do user related studd like unlock/change password/create new user etc... would it be a good idea to create a .NET website and use the membership provider to handle all the user related stuff. All validation could be done in ASP.NET and then on successful login i could redirect to an asp.net that "hosts" the flex app?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is this a horrible idea or something that is workable? .net is much more in my comfort zone to be honest. Obviously all the mapping functionality etc will HAVE to be done in flex and that's fine, I want to learn but it seems that with all the built in functionality .NET has for handling users / roles etc then this could be the way to go?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Would appreciate some expert advice on this please!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 May 2010 14:49:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468330#M10757</guid>
      <dc:creator>grahamcooke</dc:creator>
      <dc:date>2010-05-05T14:49:28Z</dc:date>
    </item>
    <item>
      <title>Re: Putting a login screen onto sample flex viewer?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468331#M10758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;That's the only secure way to go. Using Flex as your login screen / validation could be very dangerous from a security stand point.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I would still look at locking down the entire DIR some how to protect direct access to the .swf file through a URL.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Drew&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 May 2010 15:44:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468331#M10758</guid>
      <dc:creator>Drew</dc:creator>
      <dc:date>2010-05-05T15:44:37Z</dc:date>
    </item>
    <item>
      <title>Re: Putting a login screen onto sample flex viewer?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468332#M10759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;That's the only secure way to go. Using Flex as your login screen / validation could be very dangerous from a security stand point.&lt;BR /&gt;&lt;BR /&gt;I would still look at locking down the entire DIR some how to protect direct access to the .swf file through a URL.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Drew&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks, I think I'm decided on this approach! As for locking down the page that hosts the swf, I can do this with the role membership provider by placing the page that hosts the swf in a folder that is restricted only to people who have logged in successfully.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;cheers.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 May 2010 07:28:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468332#M10759</guid>
      <dc:creator>grahamcooke</dc:creator>
      <dc:date>2010-05-06T07:28:29Z</dc:date>
    </item>
    <item>
      <title>Re: Putting a login screen onto sample flex viewer?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468333#M10760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;This is exactly what we did with our Flex App - used .net "wrapper" with a login page and asp.net database for users and roles.&amp;nbsp; I copied what is normally in the index.html from FlexViewer into an .aspx that the login page redirects to.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Then to totally secure the entire directory (so a person couldn't access any .swfs directly), I applied the "Wild Card Mapping" as cgishack mentioned above.&amp;nbsp; We also use a mix of secured and non-secured Map Services.&amp;nbsp; Seems to work well.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Carmen&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 May 2010 12:42:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468333#M10760</guid>
      <dc:creator>CarmenDurham</dc:creator>
      <dc:date>2010-05-14T12:42:23Z</dc:date>
    </item>
    <item>
      <title>Re: Putting a login screen onto sample flex viewer?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468334#M10761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;ctalleygreenville,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When you say you use secured map services for the flex app.. do you mean the sample flex viewer or your own flex app?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have not been able to figure out how to use secured services for the SFV since i've been tackling it. I have already created my own flex app to handle secured services/multi-tiered users, but the SFV = no go for me when it comes to security.. please do share with us how you did it. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Sean&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 May 2010 23:26:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468334#M10761</guid>
      <dc:creator>seanlo</dc:creator>
      <dc:date>2010-05-20T23:26:16Z</dc:date>
    </item>
    <item>
      <title>Re: Putting a login screen onto sample flex viewer?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468335#M10762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yarrr. I finally got that secured service to work with the sample flex viewer. Too late to implement it for the current project though.. ah well, cest la vie.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;At least i'll be able to do it easily for the next few projects. =D&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jun 2010 01:40:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468335#M10762</guid>
      <dc:creator>seanlo</dc:creator>
      <dc:date>2010-06-15T01:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: Putting a login screen onto sample flex viewer?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468336#M10763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Sean,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Sorry for the delayed reply.&amp;nbsp; Since the forums don't seem to email me anymore when there are replies, I don't think to look all the time.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am using both secured and non-secured services within&amp;nbsp; the Sample Flex Viewer.&amp;nbsp; Although, we have customized the original download quite a bit.&amp;nbsp; But that SFV code was our base.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In the LiveLayerWidget.xml for that layer, here is a sample of what should be in the Layer tag (we are using https, you may not be):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;lt;layer&amp;gt;&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://yourserver/ArcGIS/rest/services/yourSecuredServicesFolderName/yourSecureServiceName/MapServer/0?token=copyandpasteyourtokenhere" rel="nofollow" target="_blank"&gt;https://yourserver/ArcGIS/rest/services/yourSecuredServicesFolderName/yourSecureServiceName/MapServer/0?token=copyandpasteyourtokenhere&lt;/A&gt;&lt;SPAN&gt;&amp;lt;/layer&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(where 0 is the layer ID we are using.&amp;nbsp; Substitute whatever the ID is for your secure layer)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you are editing the SFV in FlexBuilder on your PC and testing there, then you have to request a token using the IP address of your PC (vs. web app url).&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Once you copy the app to the actual server, then you must replace the token in the .xml with a new one.&amp;nbsp; You will have to request the token using the WebApplication URL which must be the server and app name. When I requested the token, I had to use:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="https://myservername/myAppName"&gt;https://myservername/myAppName&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I think getting the token right depending on where I was working was the most confusing at the time.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope this helps.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Carmen&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;ctalleygreenville,&lt;BR /&gt;&lt;BR /&gt;When you say you use secured map services for the flex app.. do you mean the sample flex viewer or your own flex app?&lt;BR /&gt;&lt;BR /&gt;I have not been able to figure out how to use secured services for the SFV since i've been tackling it. I have already created my own flex app to handle secured services/multi-tiered users, but the SFV = no go for me when it comes to security.. please do share with us how you did it. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Sean&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jun 2010 13:02:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468336#M10763</guid>
      <dc:creator>CarmenDurham</dc:creator>
      <dc:date>2010-06-15T13:02:46Z</dc:date>
    </item>
    <item>
      <title>Re: Putting a login screen onto sample flex viewer?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468337#M10764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hey Carmen,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When you say: "Once you copy the app to the actual server, then you must replace the token in the .xml with a new one."&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Are you doing a long lived token? Just out of curiosity. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have successfully tried the following methods in the SFV:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1) HTTPservice the token url, login, and obtain a short lived token. Use that token to access services.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Or&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2) Login to the rest admin via HTTPservice. This grants my application access to the rest services.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jun 2010 23:49:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468337#M10764</guid>
      <dc:creator>seanlo</dc:creator>
      <dc:date>2010-06-16T23:49:04Z</dc:date>
    </item>
    <item>
      <title>Re: Putting a login screen onto sample flex viewer?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468338#M10765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Sean,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You have succeeded in doing what I was TRYING to do a while back but never succeeded - which is your 1st scenario above.&amp;nbsp; I wanted to get a short lived token on the fly.&amp;nbsp; I was using HttpService within a LivelayerWidget's .mxml .&amp;nbsp; My url in the code for the request works fine when I copy and paste into IE. It returns a token.&amp;nbsp; I could then hard code the returned token in the .xml and it would work.&amp;nbsp; But running it through the code, would not work.&amp;nbsp; The url is of this format:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="https://myservername/arcgis/tokens?request=gettoken&amp;amp;username=myuname&amp;amp;password=mypwd&amp;amp;clientid=ip.999.99.99.99&amp;amp;expiration=1440"&gt;https://myservername/arcgis/tokens?request=gettoken&amp;amp;username=myuname&amp;amp;password=mypwd&amp;amp;clientid=ip.999.99.99.99&amp;amp;expiration=1440&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I keep getting this error or similar: [RPC Fault faultString="HTTP request error" faultCode="Server.Error.Request" faultDetail="Error: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032"].&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I had to put the "request token on fly" on hold in order to just get the project working and have not gotten back to it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So, I am just hardcoding a longlived token into the .xml for now.&amp;nbsp; Since we are using https for the application, I am *hoping* that is keeping the token from being transmitted as clear text. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you have any advice, pass it along.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jun 2010 17:40:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468338#M10765</guid>
      <dc:creator>CarmenDurham</dc:creator>
      <dc:date>2010-06-17T17:40:17Z</dc:date>
    </item>
    <item>
      <title>Re: Putting a login screen onto sample flex viewer?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468339#M10766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;When you say the short lived token doesn't work, are you referring to the SFV or your own application?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you are referring to the SFV, there are certain events which must only fire AFTER the http token is obtained. All my modifications are done in Mapmanager.mxml.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jun 2010 04:32:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468339#M10766</guid>
      <dc:creator>seanlo</dc:creator>
      <dc:date>2010-06-18T04:32:26Z</dc:date>
    </item>
    <item>
      <title>Re: Putting a login screen onto sample flex viewer?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468340#M10767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Ohhhh.&amp;nbsp; I will take a look at working with MapManager vs. the widget.&amp;nbsp; This app is using the SFV code.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the tip.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Carmen&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;When you say the short lived token doesn't work, are you referring to the SFV or your own application?&lt;BR /&gt;&lt;BR /&gt;If you are referring to the SFV, there are certain events which must only fire AFTER the http token is obtained. All my modifications are done in Mapmanager.mxml.&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jun 2010 20:07:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468340#M10767</guid>
      <dc:creator>CarmenDurham</dc:creator>
      <dc:date>2010-06-23T20:07:17Z</dc:date>
    </item>
    <item>
      <title>Re: Putting a login screen onto sample flex viewer?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468341#M10768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Well here's my code from mapmanager.mxml.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; //config&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; private function config(event:AppEvent):void&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; configData = event.data as ConfigData;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; //init&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; private function init():void&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SiteContainer.addEventListener(AppEvent.CONFIG_LOADED, config);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;//sean's mod&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var LoginInstance:LoginMainApp=new LoginMainApp(this.width,this.height,TokenUrl,ClientId,MapLayerLocation,RestLogin,ExpirationToken);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LoginInstance.addEventListener(Event.COMPLETE, SecurityInit);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //apparently PopUpManager can only be called through flex. =(&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PopUpManager.addPopUp(LoginInstance.LoginPop,this,true); &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PopUpManager.centerPopUp(LoginInstance.LoginPop);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //LoginInstance.SetLoginPositions(); &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Alert.show("Starting");&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;//sean's mod&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Where LoginInstance is my custom actionscript login file that i wrote. Once it completes verification with the rest service, it returns a custom event Event.COMPLETE back to SecurityInit.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is SecurityInit()&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; private function SecurityInit(e:Event):void&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; { &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; //sean try mod&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Alert.show("Starting"); &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SiteContainer.addEventListener(AppEvent.SET_MAP_NAVIGATION, changeNavigationbyMenu);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SiteContainer.addEventListener(AppEvent.BASEMAP_MENU_CLICKED, basemapMenuClicked);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //SiteContainer.addEventListener(AppEvent.SET_MAP_NAVIGATION, changeNavigationbyWidget);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SiteContainer.addEventListener(AppEvent.SET_MAP_ACTION, enableMapAction);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SiteContainer.addEventListener(AppEvent.SHOW_INFOWINDOW, widgetShowInfo);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; //sean try mod&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; map = new Map();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; map.id = "map";&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; map.zoomSliderVisible = false;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; map.addEventListener(MapEvent.LOAD, mapLoadComplete);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.addChild(map);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SiteContainer.dispatchEvent(new AppEvent(AppEvent.MAP_LOADED, false, false, map));&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;and so on.....&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The key changes for this code are the SiteContainer.addEventListener. They must be taken FROM the original init, and placed to fire AFTER verification has been done successfully.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Let me know if you need more code. ^_^&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jun 2010 00:57:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468341#M10768</guid>
      <dc:creator>seanlo</dc:creator>
      <dc:date>2010-06-24T00:57:09Z</dc:date>
    </item>
    <item>
      <title>Re: Putting a login screen onto sample flex viewer?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468342#M10769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Seanlo,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm trying to do what you have done. I've opened this thread &lt;/SPAN&gt;&lt;A href="http://forums.arcgis.com/threads/5378-Secured-service-with-token-and-dynamic-insert-in-map?p=16512#post16512"&gt;thread&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This works with Default user and role storage system in arcgis server (in my case is java version). &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I don't understand if you retrive the token on the fly and you insert the token in the services.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Now my problem is when I switch to Default storage to Active Directory storage, my token generation is ok but when I put the token in the services nothing returns...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What does the LoginMainApp class?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What's your arcgis server version? Java or .net?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thank for the answer,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jul 2010 08:22:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/putting-a-login-screen-onto-sample-flex-viewer/m-p/468342#M10769</guid>
      <dc:creator>GiosiaPoma</dc:creator>
      <dc:date>2010-07-07T08:22:12Z</dc:date>
    </item>
  </channel>
</rss>

