Failed to execute com.apple.WebKit.Networking: 113: Could not find the specified service

When I use WKWebView , I get the following error Could not signal service com.apple.WebKit.WebContent: 113: Could not find specified service

I checked the cookies as suggested in The com.apple.WebKit.WebContent command failed , however this does not help

com.apple.WebKit.WebContent drop 113 error: Could not find the specified service , also does not help.

What should I do to resolve issues

+5
source share
1 answer

It seems that when the application starts, something is going on in debugging and it loses the connection in the middle of the connection, but then restores the connection, but it's too late. Thus, the application will simply burst, the connection will not work, because the application believes that it is doing it, so it is stuck in limbo, not knowing what to do.

Run the application outside of debugging and continue to do the same thing as when you received the error message, and see if you can recover this error.

If not, try disabling Wi-Fi / data as soon as you connect to the web service and see if you can recreate it, if so, then you know that this is due to the connection, not the code itself.

+1
source

Source: https://habr.com/ru/post/1269282/


All Articles