Hi,
We need to use silent notifications in our app, even when the user kills the app.
We requested Apple to get a NSE Filtering Entitlement on December 02, 2022 with follow-up number: 814879299
But after nearly 2 months, we still haven't got a response.
So we also sent a TSI (Technical Support Incident) on January 09, 2023 with follow-up number: 817249684. DTS (Developer Technical Support) said that we need to use this specific entitlement and he has no involvement in the entitlement request process.
We need a quick response for the NSE Filtering Entitlement because our business depends on Apple's response.
@Apple, is it possible to get an estimation date for the response?
@iOS_developers, how long have you been waiting for that permission?
Post
Replies
Boosts
Views
Activity
Hi,
When I try to use my DNS Proxy app from App Store with a supervised device, I have these errors :
[NEDNSProxyManager saveToPreferencesWithCompletionHandler:]_block_invoke: failed to save the new configuration: Error Domain=NEConfigurationErrorDomain Code=10 "permission denied" UserInfo={NSLocalizedDescription=permission denied}
nehelper myApplication trying to create a DNS proxy configuration through an app. Creating a DNS proxy configuration is only allowed through profile in production version of myApplication.
My entitlements are :
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>com.apple.developer.networking.networkextension</key>
<array>
<string>dns-proxy</string>
</array>
<key>com.apple.security.application-groups</key>
<array>
<string>group.com.myApplication.app</string>
</array>
<key>keychain-access-groups</key>
<array>
<string>$(AppIdentifierPrefix)com.myApplication.app</string>
</array>
</dict>
</plist>
Why it says 'permission denied'?
Thanks.
Hi,
I'm writing DNS proxy extension for supervised device.
When
func handleNewFlow(_ flow: NEAppProxyFlow) -> Bool {
is called, I make a DNS request on my server (https://example.com/dns/)
But my DNS server is a domain not an IP, and iOS try to resolve example.com with my DNS proxy whereas it should resolve it with system dns.
Is it possible to ignore this domain name with NEDNSProxyProvider?
Regards.