Web data repositories usually contain references to thousands of real-world entities from multiple sources. It is not uncommon that multiple entities share the same label (polysemes) and that distinct label variations are associated with the same entity (synonyms), which frequently leads to ambiguous interpretations. Further, spelling variants, acronyms, abbreviated forms, and misspellings compound to worsen the problem. Solving this problem requires identifying which labels correspond to the same real-world entity, a process known as entity resolution. One approach to solve the entity resolution problem is to associate an authority identifier and a list of variant forms with each entity-a data structure known as an authority file. In this work, we propose a generic framework for implementing a method for generating authority files. Our method uses information from the Web to improve the quality of the authority file and, because of that, is referred to as WER-Web-based Entity Resolution. Our contribution here is threefold: (a) we discuss how to implement the WER framework, which is flexible and easy to adapt to new domains; (b) we run extended experimentation with our WER framework to show that it outperforms selected baselines; and (c) we compare the results of a specialized solution for author name resolution with those produced by the generic WER framework, and show that the WER results remain competitive.1. for each record do: (a) select one or more attributes and use them to compose a query, (b) submit the query to a search engine, and (c) collect the top m documents in the answer set; 2. parse the documents in the answer set and extract (Webinferred) attributes B j such as URLs, titles, texts of the documents, names, and acronyms used to refer to the entities; 3. using the original attributes A i and the Web-inferred attributes B j , cluster the entity records relative to the primary entity e pr , such that each cluster corresponds to a single real-world entity; 4. in each cluster, select an attribute value to be the canonical entity name, and output the respective entry to the authority file.