<?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: Enter the Application without username and password in ArcGIS Web AppBuilder Questions</title>
    <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/enter-the-application-without-username-and/m-p/240069#M6479</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert.&lt;/P&gt;&lt;P&gt;Just to close the post.&lt;BR /&gt;Do you think it would go faster if instead of publishing the entities in different services as I have it (there are 15 features) would go faster if I only publish a service with all features?&lt;BR /&gt;What if I use another proxy like .Net? Could I get better performance? Right now I have PHP proxy working.&lt;BR /&gt;Thank you.&amp;nbsp;&lt;BR /&gt;P.S. I don't know how to close the post, the answer you gave me is good for me and correct.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Nov 2019 08:34:11 GMT</pubDate>
    <dc:creator>AlbertoCañivano</dc:creator>
    <dc:date>2019-11-27T08:34:11Z</dc:date>
    <item>
      <title>Enter the Application without username and password</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/enter-the-application-without-username-and/m-p/240056#M6466</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good morning.&lt;BR /&gt;I am implementing a proxy to my application so that the user does not have to enter login/password every time he wants to enter the application.&lt;BR /&gt;I have the application downloaded and implemented on my local server.&lt;BR /&gt;I have checked that the webmap is shared with the Organization as well as the layers it has published.&lt;/P&gt;&lt;P&gt;I am using Xammp's Apache server and the proxy chosen was the PHP version offered by ESRI.&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://github.com/Esri/resource-proxy" title="https://github.com/Esri/resource-proxy" rel="nofollow noopener noreferrer" target="_blank"&gt;GitHub - Esri/resource-proxy: Proxy files for DotNet, Java and PHP.&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First I configured the proxy.config:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="php token"&gt;&lt;SPAN class="delimiter token"&gt;&amp;lt;?&lt;/SPAN&gt;xml version&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"1.0"&lt;/SPAN&gt; encoding&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"utf-8"&lt;/SPAN&gt; &lt;SPAN class="delimiter token"&gt;?&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;SPAN class="operator token"&gt;&amp;lt;&lt;/SPAN&gt;ProxyConfig allowedReferers&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"*"&lt;/SPAN&gt;
             logFile&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"proxy_log.log"&lt;/SPAN&gt;
             mustMatch&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"true"&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt;
    &lt;SPAN class="markup token"&gt;&lt;SPAN class="token tag"&gt;&lt;SPAN class="token tag"&gt;&lt;SPAN class="punctuation token"&gt;&amp;lt;&lt;/SPAN&gt;serverUrls&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;
    	&lt;SPAN class="operator token"&gt;&amp;lt;&lt;/SPAN&gt;serverUrl url&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;"https&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;&lt;SPAN class="comment token"&gt;//MY_ORGANIZATION.maps.arcgis.com/"  &lt;/SPAN&gt;
                   username&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"USER"&lt;/SPAN&gt;  
                   password&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"PASSWORD"&lt;/SPAN&gt;
                   matchAll&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"true"&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt;

        &lt;SPAN class="operator token"&gt;&amp;lt;&lt;/SPAN&gt;serverUrl url&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;"http&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;&lt;SPAN class="comment token"&gt;//services.arcgisonline.com"  &lt;/SPAN&gt;
                   matchAll&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"true"&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt;
	
    &lt;SPAN class="markup token"&gt;&lt;SPAN class="token tag"&gt;&lt;SPAN class="token tag"&gt;&lt;SPAN class="punctuation token"&gt;&amp;lt;/&lt;/SPAN&gt;serverUrls&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;SPAN class="markup token"&gt;&lt;SPAN class="token tag"&gt;&lt;SPAN class="token tag"&gt;&lt;SPAN class="punctuation token"&gt;&amp;lt;/&lt;/SPAN&gt;ProxyConfig&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Second&lt;SPAN&gt;&amp;nbsp;I configured the&amp;nbsp;config.json:&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="string token"&gt;"wabVersion"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"2.12"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
  &lt;SPAN class="string token"&gt;"isWebTier"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;false&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
  &lt;SPAN class="string token"&gt;"httpProxy"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
    &lt;SPAN class="string token"&gt;"useProxy"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;true&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
    &lt;SPAN class="string token"&gt;"alwaysUseProxy"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;false&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
    &lt;SPAN class="string token"&gt;"url"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"PHP/proxy.php?"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
    &lt;SPAN class="string token"&gt;"rules"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;  
        &lt;SPAN class="string token"&gt;"urlPrefix"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"http://MY_ORGANIZATION.maps.arcgis.com/"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;  
        &lt;SPAN class="string token"&gt;"proxyUrl"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"PHP/proxy.php?"&lt;/SPAN&gt;  
    &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;‍‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The application loads correctly without asking for username/password.&lt;BR /&gt;However it does not load the features.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;Access to XMLHttpRequest at &lt;SPAN class="string token"&gt;'https://static.arcgis.com/attribution/World_Imagery?f=json'&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;from&lt;/SPAN&gt; origin &lt;SPAN class="string token"&gt;'http://localhost'&lt;/SPAN&gt; has been blocked by CORS policy&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; The value &lt;SPAN class="keyword token"&gt;of&lt;/SPAN&gt; the &lt;SPAN class="string token"&gt;'Access-Control-Allow-Origin'&lt;/SPAN&gt; header &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; the response must not be the wildcard &lt;SPAN class="string token"&gt;'*'&lt;/SPAN&gt; when the request&lt;SPAN class="string token"&gt;'s credentials mode is '&lt;/SPAN&gt;include'&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt; The credentials mode &lt;SPAN class="keyword token"&gt;of&lt;/SPAN&gt; requests initiated by the XMLHttpRequest is controlled by the withCredentials attribute&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;Access to XMLHttpRequest at &lt;SPAN class="string token"&gt;'https://services9.arcgis.com/YJdM1D4Nb7rZFsXe/arcgis/rest/services/Viviendas/FeatureServer/0?f=json'&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;from&lt;/SPAN&gt; origin &lt;SPAN class="string token"&gt;'http://localhost'&lt;/SPAN&gt; has been blocked by CORS policy&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; The value &lt;SPAN class="keyword token"&gt;of&lt;/SPAN&gt; the &lt;SPAN class="string token"&gt;'Access-Control-Allow-Origin'&lt;/SPAN&gt; header &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; the response must not be the wildcard &lt;SPAN class="string token"&gt;'*'&lt;/SPAN&gt; when the request&lt;SPAN class="string token"&gt;'s credentials mode is '&lt;/SPAN&gt;include'&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt; The credentials mode &lt;SPAN class="keyword token"&gt;of&lt;/SPAN&gt; requests initiated by the XMLHttpRequest is controlled by the withCredentials attribute&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Services that are not displayed return an error of the type:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"error"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"code"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;499&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"message"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Token Required"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"messageCode"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"GWM_0003"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"details"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Token Required"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know if the mistake can come from: &lt;BR /&gt;1) I haven't introduced any service in the "proxy.config" so that it passes with the proxy and the features are displayed.&lt;BR /&gt;2) When entering username/password I have to change another parameter that I don't know what it can be.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Any idea? Thank you very much in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 12:04:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/enter-the-application-without-username-and/m-p/240056#M6466</guid>
      <dc:creator>AlbertoCañivano1</dc:creator>
      <dc:date>2021-12-11T12:04:53Z</dc:date>
    </item>
    <item>
      <title>Re: Enter the Application without username and password</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/enter-the-application-without-username-and/m-p/240057#M6467</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Alberto,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; The issue is that you are attempting to test the app using the localhost url. Once a proxy is involved and you are testing you need to no longer use the localhost url and instead use the actual machine name url.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Nov 2019 18:53:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/enter-the-application-without-username-and/m-p/240057#M6467</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2019-11-20T18:53:27Z</dc:date>
    </item>
    <item>
      <title>Re: Enter the Application without username and password</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/enter-the-application-without-username-and/m-p/240058#M6468</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good morning, Robert. Thank you for your reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried to call the application with the machine name and the IP of the equipment; it still gives the same message but instead of "http://localhost" appears the address I'm looking for, in addition to the token error required for each layer&lt;/P&gt;&lt;P&gt;according to the DevOps of Chrome&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;De: Robert Scheitlin, GISP &amp;lt;geonet@esri.com&amp;gt;&lt;/P&gt;&lt;P&gt;Enviado el: miércoles, 20 de noviembre de 2019 19:54&lt;/P&gt;&lt;P&gt;Para: Alberto Cañivano Moreno &amp;lt;acanivanom@boslan.com&amp;gt;&lt;/P&gt;&lt;P&gt;Asunto: Re:  - Re: Enter the Application without username and password&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GeoNet, The Esri Community | GIS and Geospatial Professional Community &amp;lt;https://community.esri.com/?et=watches.email.thread&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Re: Enter the Application without username and password&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reply from Robert Scheitlin, GISP&amp;lt;https://community.esri.com/people/rscheitlin?et=watches.email.thread&amp;gt; in Web AppBuilder for ArcGIS - View the full discussion&amp;lt;https://community.esri.com/message/892411-re-enter-the-application-without-username-and-password?commentID=892411&amp;amp;et=watches.email.thread#comment-892411&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Nov 2019 08:32:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/enter-the-application-without-username-and/m-p/240058#M6468</guid>
      <dc:creator>AlbertoCañivano1</dc:creator>
      <dc:date>2019-11-21T08:32:41Z</dc:date>
    </item>
    <item>
      <title>Re: Enter the Application without username and password</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/enter-the-application-without-username-and/m-p/240059#M6469</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Alberto,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Is your proxy and web app on the same server?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Nov 2019 13:23:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/enter-the-application-without-username-and/m-p/240059#M6469</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2019-11-21T13:23:37Z</dc:date>
    </item>
    <item>
      <title>Re: Enter the Application without username and password</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/enter-the-application-without-username-and/m-p/240060#M6470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah, it's in the same place.&lt;/P&gt;&lt;P&gt;I have managed to load the features; putting in the proxy.config the services that were giving me problems "https://static.arcgis.com" and "https://services9.arcgis.com".&lt;BR /&gt;Then I have configured them in config.json under "rules".&lt;BR /&gt;I know I'm doing something wrong because all the features are displayed (my webmap has 15) but it's very slow to refresh because it's doing the queries from the proxy to Arcgis online, instead of just to Arcgis online.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Nov 2019 14:11:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/enter-the-application-without-username-and/m-p/240060#M6470</guid>
      <dc:creator>AlbertoCañivano</dc:creator>
      <dc:date>2019-11-21T14:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: Enter the Application without username and password</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/enter-the-application-without-username-and/m-p/240061#M6471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Alberto,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; If all the services you are using on services9 are not secured then you need to be more specific with your proxy rule to only those that are secure. Also make sure that the config.json has&lt;/P&gt;&lt;P&gt;"alwaysUseProxy": false,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Nov 2019 14:44:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/enter-the-application-without-username-and/m-p/240061#M6471</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2019-11-21T14:44:45Z</dc:date>
    </item>
    <item>
      <title>Re: Enter the Application without username and password</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/enter-the-application-without-username-and/m-p/240062#M6472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert,&lt;/P&gt;&lt;P&gt;As a safe service you are referring to private entities, those that are not public? all the entities in my viewer are private, only shared with my organization, so, if I understand it well, all would have to go through the proxy so it would be very slow to work with the viewer.&lt;/P&gt;&lt;P&gt;My goal is that you can enter the viewer from another website (redirecting the user through a url), users who enter are authorized in their application and use my application as a viewer to consult data, would make many requests and is annoying for them to be entering user / password every time they make queries to my viewer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Nov 2019 08:13:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/enter-the-application-without-username-and/m-p/240062#M6472</guid>
      <dc:creator>DanielPérez_López</dc:creator>
      <dc:date>2019-11-22T08:13:46Z</dc:date>
    </item>
    <item>
      <title>Re: Enter the Application without username and password</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/enter-the-application-without-username-and/m-p/240063#M6473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Daniel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Yes by "secured" services I am taking about services that are not public. If all of the data is secured then they all will need to go through the proxy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Nov 2019 14:11:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/enter-the-application-without-username-and/m-p/240063#M6473</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2019-11-25T14:11:45Z</dc:date>
    </item>
    <item>
      <title>Re: Enter the Application without username and password</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/enter-the-application-without-username-and/m-p/240064#M6474</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your reply, Robert.&lt;BR /&gt;After setting the proxy to all features, the application is very slow, takes a long time to load and refresh when I move around the map. I see that what takes are the requests it makes for the proxy.&lt;/P&gt;&lt;P&gt;Do you know why this happens?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Nov 2019 15:18:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/enter-the-application-without-username-and/m-p/240064#M6474</guid>
      <dc:creator>DanielPérez_López</dc:creator>
      <dc:date>2019-11-25T15:18:05Z</dc:date>
    </item>
    <item>
      <title>Re: Enter the Application without username and password</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/enter-the-application-without-username-and/m-p/240065#M6475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Daniel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;I do not experience slow response when using a proxy so I am not sure what to tell you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Nov 2019 15:30:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/enter-the-application-without-username-and/m-p/240065#M6475</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2019-11-25T15:30:04Z</dc:date>
    </item>
    <item>
      <title>Re: Enter the Application without username and password</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/enter-the-application-without-username-and/m-p/240066#M6476</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert.&lt;/P&gt;&lt;P&gt;And do you know some way I could implement in my application in which: the user is signed in only once and that session lasts a certain time. The application I have is opened by a url in which the user makes filters and visualizes the chosen. Currently, each time you generate a new url, Arcgis Online asks for the username and password and that's what I want to avoid.&lt;BR /&gt;Thank you.&lt;/P&gt;&lt;P&gt;P.S. Sorry about the username (I am Alberto during this post), two Arcgis Online accounts have been linked and I have to configure it again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Nov 2019 07:17:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/enter-the-application-without-username-and/m-p/240066#M6476</guid>
      <dc:creator>AlbertoCañivano</dc:creator>
      <dc:date>2019-11-26T07:17:41Z</dc:date>
    </item>
    <item>
      <title>Re: Enter the Application without username and password</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/enter-the-application-without-username-and/m-p/240067#M6477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Alberto,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;The proxy is the only route I have used. You could search GeoNet for enabling WAB with oAuth.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Nov 2019 13:34:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/enter-the-application-without-username-and/m-p/240067#M6477</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2019-11-26T13:34:01Z</dc:date>
    </item>
    <item>
      <title>Re: Enter the Application without username and password</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/enter-the-application-without-username-and/m-p/240068#M6478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've been reading documentation and testing the oAuth protocol, but I don't think it's worth it. Thank you for your help Robert.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Nov 2019 14:54:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/enter-the-application-without-username-and/m-p/240068#M6478</guid>
      <dc:creator>AlbertoCañivano</dc:creator>
      <dc:date>2019-11-26T14:54:21Z</dc:date>
    </item>
    <item>
      <title>Re: Enter the Application without username and password</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/enter-the-application-without-username-and/m-p/240069#M6479</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert.&lt;/P&gt;&lt;P&gt;Just to close the post.&lt;BR /&gt;Do you think it would go faster if instead of publishing the entities in different services as I have it (there are 15 features) would go faster if I only publish a service with all features?&lt;BR /&gt;What if I use another proxy like .Net? Could I get better performance? Right now I have PHP proxy working.&lt;BR /&gt;Thank you.&amp;nbsp;&lt;BR /&gt;P.S. I don't know how to close the post, the answer you gave me is good for me and correct.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Nov 2019 08:34:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/enter-the-application-without-username-and/m-p/240069#M6479</guid>
      <dc:creator>AlbertoCañivano</dc:creator>
      <dc:date>2019-11-27T08:34:11Z</dc:date>
    </item>
    <item>
      <title>Re: Enter the Application without username and password</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/enter-the-application-without-username-and/m-p/240070#M6480</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Alberto,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;Do you think it would go faster if instead of publishing the entities in different services as I have it (there are 15 features) would go faster if I only publish a service with all features?&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;That could work. I have never used the php proxy so I am not sure about any speed difference.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Dec 2019 13:33:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/enter-the-application-without-username-and/m-p/240070#M6480</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2019-12-02T13:33:55Z</dc:date>
    </item>
  </channel>
</rss>

