Event ID 5178 — IIS Protocol Adapter Configuration
Applies To: Windows Server 2008 R2
The Windows Process Activation Service (WAS) reads the configuration for a protocol adapter upon startup. Changes to protocol adapter configuration take effect only when the adapter connects with WAS. If errors occur when WAS is using protocol adapter specific configuration, configuration information for the adapter may not be available.
Event Details
Product: | Internet Information Services |
ID: | 5178 |
Source: | Microsoft-Windows-WAS |
Version: | 7.5 |
Symbolic Name: | WAS_ATTEMPT_TO_REGISTER_EXISTING_PROTOCOL |
Message: | An attempt was made to register protocol '%1', however protocol '%1' is all ready being handled by another listener adapter. Therefore the registration was rejected. The data field contains the error number. |
Resolve
Delete a duplicate listener adapter protocol
The listenerAdapters section in the ApplicationHost.config file defines the protocols with which the Windows Process Activation Service (WAS) binds.
Each listener adapter has a name attribute that contains the name of the protocol that the listener adapter processes. Only one listener adapter can be defined for each protocol, or WAS will be unable to process requests for the protocol that has the duplicate definition.
To fix this issue, find the duplicate protocol in the ApplicationHost.config configuration file and remove it.
To perform this procedure, you must have membership in Administrators, or you must have been delegated the appropriate authority.
To remove the duplicate listener adapter protocol:
- Open an elevated Command Prompt window. Click Start, point to All Programs, click Accessories, right-click Command Prompt, and then click Run as administrator.
- Type cd %Windir%\system32\inetsrv\config
- Type notepad ApplicationHost.config
- In notepad, search for the listenerAdapters section under system.applicationHost.
- Remove the duplicate protocol.
- Save the applicationHost.config file, and exit notepad.
For more information about the configuration of the listenerAdapters section, see IIS 7.0: add Element for listenerAdapters (IIS Settings Schema).
Verify
You can use an Internet browser to verify that a protocol adapter is functional by following these steps:
- Select a Web site or application that is configured to respond to the protocol you want to verify.
- In the address bar of your browser, type a protocol-specific request to the Web site or applications that you chose in step 1. For example, https://servername/default.htm
- If the protocol adapter is working, your browser client should display the expected output page.
Note: If the protocol adapter is from a third party, refer to the documentation for the adapter. The documentation may have specific steps that explain how to verify the state of the service or process that hosts the protocol adapter.