Click here to Skip to main content
15,885,278 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
HI All,


I got below error when I click on button for download excel report file.this error occur in Google Chrome Browser above version 58 and safari browser. with FireFox(Mozilla) it is working properly.

What is the exact meaning of this error and how I can I solve this issue?

jquery-2.1.3.js?v6.300-A1:5216 [Deprecation] Subresource requests whose URLs contain embedded credentials (e.g. `https://user:pass@host/`) are blocked. See https://www.chromestatus.com/feature/5669008342777856 for more details.
(anonymous) @ jquery-2.1.3.js?v6.300-A1:5216



Error Log I got Below Error :
<step title="Startup Request" date="2017-08-02T04:35:56.725" instance="4fa702" url="/" method="GET" type="request" pid="80,2,6" ScmType="None" SCM_SKIP_SSL_VALIDATION="0" >
  <step title="Cleanup Xml Logs" date="2017-08-02T04:35:56.725" /><!-- duration: 31ms -->
</step><!-- duration: 31ms -->


it is break with following line:
target.appendChild( elem );



Give me proper solution of this?what changes I do for it is working with Google Chrome and Safari browser.

What I have tried:

HI All,


I got below error when I click on button for download excel report file.this error occur in Google Chrome Browser above version 58 and safari browser. with FireFox(Mozilla) it is working properly.

What is the exact meaning of this error and how I can I solve this issue?

jquery-2.1.3.js?v6.300-A1:5216 [Deprecation] Subresource requests whose URLs contain embedded credentials (e.g. `https://user:pass@host/`) are blocked. See https://www.chromestatus.com/feature/5669008342777856 for more details.
(anonymous)	@	jquery-2.1.3.js?v6.300-A1:5216



Error Log I got Below Error :
<pre><step title="Startup Request" date="2017-08-02T04:35:56.725" instance="4fa702" url="/" method="GET" type="request" pid="80,2,6" ScmType="None" SCM_SKIP_SSL_VALIDATION="0" >
  <step title="Cleanup Xml Logs" date="2017-08-02T04:35:56.725" /><!-- duration: 31ms -->
</step><!-- duration: 31ms -->


it is break with following line:
target.appendChild( elem );



Give me proper solution of this?what changes I do for it is working with Google Chrome and Safari browser.
Posted
Updated 3-Aug-17 19:39pm
v4

1 solution

It sort of means what it says, if your authentication mechanism is passing credentials as part of a URL, Chrome will block that idiocy so that your credentials are not sent in plain text over the wire to completely arbitrary servers (every queried DNS will see those credentials, as will anyone looking at traffic).

The server side needs to have a different authentication and session management system, such as web cookies. There are hundreds of examples of good authentication handling on the web.
 
Share this answer
 
Comments
piyushpiyush 4-Aug-17 1:56am    
There is no passing passing any credentials as part of a URL but our aplication is multi layer.
Nathan Minier 4-Aug-17 7:09am    
Obviously either the framework or platform that you're leveraging is. It might be as simple as changing a configuration.

Also, pretty much anything that isn't a single-purpose function is "multi-layer", so you'll need to be more specific.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900