Web Service as400 - Error Favicon

0

I am building a web service in as400, but it throws me the following errors:

  

The file /www/WebService/htdocs/favicon.ico does not exist
  The URI of the GET request /favicon.ico HTTP / 1.0 is not valid

The service is an RPG program. The program works well. In fact, it is running on another machine and the settings were made in the same way.

Any ideas?

    
asked by Mavina 08.03.2018 в 14:41
source

1 answer

0

http[s]://[midominio]/favicon.ico is a special URL. It is used to leave a small graphic file, which the browser can use to represent the website, for example next to the title of the website or in favorites.

What you see are logs of requests from that file that your server rejects because it does not have that resource. Probably the requests are some access via browser to the webservice (perhaps to check the WSDL).

It does not matter much

    
answered by 08.03.2018 / 14:54
source